/* ==========================================================================
   Los Amigos Barber Shop — site styles (mobile-first)
   ========================================================================== */

:root {
  --ink: #131418;
  --ink-2: #1b1d22;
  --ink-3: #24272e;
  --ink-line: #33373f;
  --smoke: #9aa0aa;
  --cream: #f7f3ec;
  --cream-2: #efe8dd;
  --white: #ffffff;
  --body: #3b4048;
  --muted: #6c727c;
  --line: #e4ddd2;
  --line-strong: #cfc5b6;

  --red: #cf3b32;
  --red-deep: #a92c25;
  --red-soft: #fbe7e5;
  --gold: #d9a441;
  --gold-soft: #f8edd7;
  --green: #3f9c6d;

  --font-display: "Anton", "Arial Black", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(19, 20, 24, .06), 0 16px 38px -18px rgba(19, 20, 24, .3);
  --shadow-lg: 0 2px 6px rgba(19, 20, 24, .06), 0 40px 90px -36px rgba(19, 20, 24, .5);
  --ease: cubic-bezier(.22, .8, .2, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --container: 1200px;
  --gutter: clamp(16px, 4.5vw, 36px);
  --section-y: clamp(64px, 10vw, 124px);
  --header-h: 66px;
  --bar-h: 0px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body { margin: 0; overflow-x: clip; font-family: var(--font-body); font-size: 16.5px; line-height: 1.65; color: var(--body); background: var(--cream); -webkit-font-smoothing: antialiased; padding-bottom: var(--bar-h); }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: .98; letter-spacing: .005em; text-transform: uppercase; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 300; background: var(--red); color: #fff; padding: 10px 14px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--ink); color: #e7e9ec; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* Animated barber pole divider */
.pole { height: 10px; background-image: repeating-linear-gradient(115deg, var(--red) 0 14px, #fff 14px 28px, var(--ink-3) 28px 42px, #fff 42px 56px); background-size: 112px 100%; animation: poleSlide 3.4s linear infinite; }
@keyframes poleSlide { to { background-position: 112px 0; } }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 12.5px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--red); }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: currentColor; }
.section--dark .eyebrow { color: var(--gold); }
.section-head { max-width: 700px; margin-bottom: clamp(32px, 5vw, 54px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 26px; height: 3px; border-radius: 2px; background: currentColor; }
.section-head h2 { font-size: clamp(38px, 6.4vw, 70px); }
.section-head p { margin-top: 14px; font-size: clamp(16.5px, 1.7vw, 18.5px); color: var(--muted); }
.section--dark .section-head p { color: var(--smoke); }
.hl { color: var(--red); }
.section--dark .hl { color: var(--gold); }
.hl-line { position: relative; white-space: nowrap; }
.hl-line::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.06em; height: .12em; border-radius: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .2s; }
.is-visible .hl-line::after, .reveal.is-visible .hl-line::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 26px; border-radius: 999px; border: 2px solid transparent; font-family: var(--font-display); font-size: 18px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease); }
.btn svg { width: 19px; height: 19px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:active { transform: scale(.98); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(207, 59, 50, .9); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); background: var(--white); transform: translateY(-2px); }
.btn--light { border-color: rgba(255, 255, 255, .45); color: #fff; background: rgba(19, 20, 24, .3); }
.btn--light:hover { border-color: #fff; background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Status pill ---------- */
.status { position: relative; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex: none; }
.status.is-open::before { background: var(--green); }
.status.is-open::after { content: ""; position: absolute; left: 0; top: 50%; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%; background: var(--green); opacity: .5; animation: ping 2.4s cubic-bezier(0, 0, .2, 1) infinite; }
.status.is-soon::before { background: var(--gold); }
@keyframes ping { 75%, 100% { transform: scale(2.6); opacity: 0; } }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: var(--smoke); font-size: 14px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 42px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; transition: color .25s; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 15px; height: 15px; color: var(--gold); }
.topbar__addr { display: none; }
/* the status line can get long ("Closed · opens tomorrow 9am") — keep the bar to one row */
.topbar .status, .topbar a { white-space: nowrap; }
@media (max-width: 560px) { .topbar { font-size: 12.5px; } .topbar .container { gap: 10px; } .topbar svg { width: 13px; height: 13px; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(247, 243, 236, .97); border-bottom: 1px solid transparent; transition: transform .5s var(--ease), border-color .3s, box-shadow .3s; }
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(19, 20, 24, .7); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 44px; height: 44px; flex: none; border-radius: 13px; object-fit: cover;
  box-shadow: 0 2px 10px -4px rgba(19, 20, 24, .5); transition: transform .5s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-3deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: .92; }
.logo__name { font-family: var(--font-display); font-size: 25px; letter-spacing: .01em; text-transform: uppercase; color: var(--ink); }
.logo__name span { color: var(--red); }
.logo__sub { margin-top: 4px; font-size: 10px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
@media (max-width: 560px) { .logo__sub { font-size: 9px; letter-spacing: .13em; } .logo__mark { width: 40px; height: 40px; border-radius: 12px; }
  .header__actions .icon-btn { display: none; } .header__actions { gap: 8px; } .lang button { padding: 5px 9px; font-size: 12px; } }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: var(--smoke); }
.nav { display: none; }
.nav a { position: relative; padding: 8px 2px; font-family: var(--font-display); font-size: 17px; letter-spacing: .05em; text-transform: uppercase; color: var(--body); transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px; border-radius: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.header__cta { display: none; }
/* the live status line is a sentence, so it reads better in the body face than the display one */
.strip__item .strip__value--status { display: flex; align-items: flex-start; font-family: var(--font-body); font-size: 14.5px; font-weight: 700; letter-spacing: 0; text-transform: none; line-height: 1.3; }
.strip__item .strip__value--status::before { margin-top: 5px; }

/* ---------- Language switch ---------- */
.lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--white); }
.lang button { padding: 5px 11px; border: 0; border-radius: 999px; background: transparent; font-family: var(--font-display); font-size: 13px; letter-spacing: .06em; color: var(--muted); transition: background-color .35s var(--ease), color .35s var(--ease); }
.lang button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.lang button:hover[aria-pressed="false"] { color: var(--ink); }

/* soft crossfade while the page swaps language */
main, .footer, .topbar, .drawer, .action-bar { transition: opacity .22s ease; }
body.is-swapping main, body.is-swapping .footer, body.is-swapping .topbar,
body.is-swapping .drawer, body.is-swapping .action-bar { opacity: .35; }

.icon-btn { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 0; background: var(--red-soft); color: var(--red-deep); transition: background-color .25s, color .25s; }
.icon-btn:hover { background: var(--red); color: #fff; }
.icon-btn svg { width: 20px; height: 20px; }
.menu-toggle { width: 46px; height: 46px; display: grid; place-items: center; border: 0; background: var(--ink); border-radius: 50%; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--cream); position: relative; transition: transform .35s var(--ease), background-color .2s; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.drawer { position: fixed; inset: var(--header-h) 0 0; z-index: 59; display: flex; flex-direction: column; padding: 10px var(--gutter) calc(22px + env(safe-area-inset-bottom)); background: var(--ink); color: #fff; overflow-y: auto; clip-path: inset(0 0 100% 0); visibility: hidden; transition: clip-path .55s var(--ease), visibility .55s; }
.drawer.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer__link { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--ink-line); font-family: var(--font-display); font-size: 32px; text-transform: uppercase; color: #fff; opacity: 0; transform: translateY(14px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.drawer__link svg { width: 22px; height: 22px; color: var(--gold); }
.drawer.is-open .drawer__link { opacity: 1; transform: none; }
.drawer.is-open .drawer__link:nth-child(2) { transition-delay: .05s; }
.drawer.is-open .drawer__link:nth-child(3) { transition-delay: .1s; }
.drawer.is-open .drawer__link:nth-child(4) { transition-delay: .15s; }
.drawer.is-open .drawer__link:nth-child(5) { transition-delay: .2s; }
.drawer.is-open .drawer__link:nth-child(6) { transition-delay: .25s; }
.drawer__info { margin-top: 20px; padding: 16px; border-radius: var(--radius); background: var(--ink-2); font-size: 15px; color: var(--smoke); }
.drawer__info strong { color: #fff; }
.drawer__foot { margin-top: auto; padding-top: 20px; display: grid; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: min(90svh, 820px); display: flex; align-items: flex-end; color: #fff; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: -10% 0; z-index: -2; overflow: hidden; will-change: transform; }
/* on narrow screens, trim the top of the frame so the fade sits in the lit part of the hero */
@media (max-width: 719px) { .hero__media img { height: 122%; margin-top: -22%; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; transform: scale(1.08) translateZ(0); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1) translateZ(0); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19, 20, 24, .45) 0%, rgba(19, 20, 24, .25) 30%, rgba(19, 20, 24, .85) 72%, var(--ink) 100%), linear-gradient(90deg, rgba(19, 20, 24, .75) 0%, rgba(19, 20, 24, 0) 70%); }
.hero__content { width: 100%; padding-block: 76px clamp(36px, 6vw, 84px); }
.hero__pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px; background: rgba(19, 20, 24, .55); border: 1px solid rgba(255, 255, 255, .2); font-size: 14px; font-weight: 600; opacity: 0; animation: fadeUp .7s .1s var(--ease) forwards; }
.hero h1 { margin-top: 20px; max-width: 14ch; font-size: clamp(52px, 11vw, 122px); line-height: .88; color: #fff; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .03em; }
.hero h1 .line > span { display: inline-block; transform: translateY(105%); animation: rise .95s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .1s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translate3d(0, 14px, 0); } to { opacity: 1; transform: none; } }
.hero__lede { margin-top: 20px; max-width: 520px; font-size: clamp(17px, 2vw, 20px); color: rgba(255, 255, 255, .88); opacity: 0; animation: fadeUp .8s .45s var(--ease) forwards; }
.hero__cta { display: grid; gap: 10px; margin-top: 28px; opacity: 0; animation: fadeUp .8s .6s var(--ease) forwards; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; opacity: 0; animation: fadeUp .8s .75s var(--ease) forwards; }
.hero__chips span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); font-size: 14px; font-weight: 600; }
.hero__chips svg { width: 15px; height: 15px; color: var(--gold); }

/* ---------- Info strip ---------- */
.strip { background: var(--ink-2); color: #fff; }
.strip__grid { display: grid; }
.strip__item { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--ink-line); transition: background-color .3s; }
.strip__item:last-child { border-bottom: 0; }
.strip__icon { width: 46px; height: 46px; border-radius: 14px; background: var(--ink-3); color: var(--gold); display: grid; place-items: center; flex: none; transition: background-color .3s var(--ease), color .3s, transform .4s var(--ease); }
a.strip__item:hover .strip__icon { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.strip__icon svg { width: 21px; height: 21px; }
.strip__label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.strip__value { font-family: var(--font-display); font-size: 21px; text-transform: uppercase; line-height: 1.1; }
a.strip__item:hover .strip__value { color: var(--gold); }

/* ---------- Services ---------- */
.services { display: grid; gap: 14px; }
.svc { position: relative; overflow: hidden; display: flex; flex-direction: column; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.svc__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
@media (hover: hover) { .svc:hover .svc__img img { transform: scale(1.07); } }
.svc__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.svc__icon { width: 48px; height: 48px; margin-top: -46px; position: relative; border-radius: 14px; background: var(--red); color: #fff; display: grid; place-items: center; border: 3px solid var(--white); transition: transform .5s var(--ease); }
.svc:hover .svc__icon { transform: rotate(-8deg); }
.svc__icon svg { width: 22px; height: 22px; }
.svc h3 { margin-top: 14px; font-size: 27px; }
.svc p { margin-top: 8px; font-size: 15.5px; color: var(--muted); }
.svc--plain .svc__body { padding-top: 26px; }
.svc--plain .svc__icon { margin-top: 0; border: 0; }
.svc--red { background: var(--red); border-color: var(--red); }
.svc--red h3 { color: #fff; }
.svc--red p { color: rgba(255, 255, 255, .88); }
.svc--red .svc__icon { background: #fff; color: var(--red); }
.svc--red .btn { margin-top: auto; }
.svc__spacer { height: 16px; }
.svc-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; padding: 16px 18px; border-radius: var(--radius); background: var(--gold-soft); font-size: 15.5px; color: #6b4f16; }
.svc-note svg { width: 20px; height: 20px; flex: none; color: #a9781f; margin-top: 2px; }

/* ---------- Shop band (parallax) ---------- */
.band { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(80px, 12vw, 150px); }
.band__media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19, 20, 24, .82) 0%, rgba(19, 20, 24, .7) 60%, rgba(19, 20, 24, .82) 100%); }
.band h2 { max-width: 16ch; font-size: clamp(38px, 6.4vw, 72px); color: #fff; }
.band p { margin-top: 16px; max-width: 520px; font-size: 17.5px; color: rgba(255, 255, 255, .85); }
.band__points { display: grid; gap: 12px; margin-top: 26px; }
.band__points li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; }
.band__points svg { width: 22px; height: 22px; flex: none; color: var(--gold); }
.band__cta { display: grid; gap: 10px; margin-top: 30px; }
.band__grid { display: grid; gap: clamp(34px, 5vw, 62px); align-items: center; }
.band__sign { margin: 0; }
.band__sign img { width: 100%; border-radius: 20px; border: 1px solid rgba(255, 255, 255, .16); box-shadow: 0 34px 80px -34px rgba(0, 0, 0, .9); }
.band__sign figcaption { margin-top: 15px; text-align: center; font-size: 13.5px; letter-spacing: .02em; color: rgba(255, 255, 255, .62); }

/* ---------- Reviews ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 28px; margin-bottom: clamp(28px, 4vw, 46px); }
.reviews { display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 10px; scroll-padding-inline: var(--gutter); }
.reviews::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; display: flex; flex-direction: column; padding: 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.review blockquote { margin: 14px 0 0; flex: 1; }
.review blockquote p { font-size: 17.5px; line-height: 1.55; color: var(--ink); }
.review__foot { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-size: 19px; flex: none; }
.review__name { font-weight: 800; color: var(--ink); }
.review__meta { display: block; font-size: 13.5px; color: var(--muted); }
.reviews-note { margin-top: 16px; font-size: 14px; color: var(--muted); }
.reviews-note a { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--gold); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: 74%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 8px; scroll-padding-inline: var(--gutter); }
.gallery::-webkit-scrollbar { display: none; }
.gallery figure { position: relative; margin: 0; scroll-snap-align: start; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; background: var(--ink-3); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
@media (hover: hover) { .gallery figure:hover img { transform: scale(1.06); } }
.gallery figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(19, 20, 24, .78); color: #fff; font-size: 13px; font-weight: 700; }
.swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.swipe-hint svg { width: 16px; height: 16px; }

/* ---------- Visit ---------- */
.visit { display: grid; gap: 16px; }
.visit__card { padding: clamp(22px, 4vw, 38px); border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.visit__card h2 { font-size: clamp(38px, 5.6vw, 58px); }
.visit__status { margin-top: 12px; font-size: 17px; }
.visit__rows { margin-top: 18px; border-top: 1px solid var(--line); }
.visit__row { display: flex; gap: 14px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.visit__row svg { width: 21px; height: 21px; flex: none; margin-top: 3px; color: var(--red); }
.visit__label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.visit__value { font-size: 18px; font-weight: 700; color: var(--ink); }
.visit__value a { border-bottom: 2px solid var(--gold); }
.visit__note { font-size: 14.5px; color: var(--muted); }
.hours { width: 100%; margin-top: 4px; border-collapse: collapse; font-size: 16px; }
.hours td { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.hours tr.is-today td { font-weight: 800; color: var(--red-deep); }
.visit__actions { display: grid; gap: 10px; margin-top: 20px; }
.map { position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__load { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 10px; padding: 20px; border: 0; text-align: center; color: #fff; background: linear-gradient(rgba(19, 20, 24, .68), rgba(19, 20, 24, .68)), url("../img/shop-interior.jpg") center / cover; transition: background-color .3s; }
.map__load strong { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; }
.map__load span { font-size: 14.5px; color: #d7dbe0; }

/* ---------- Social ---------- */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 2px; padding: 20px 18px; border-radius: var(--radius-lg); background: var(--ink-2); color: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.social-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: var(--accent, var(--gold)); opacity: .18; transition: transform .55s var(--ease), opacity .35s; }
.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.social-card:hover::after { transform: scale(1.35); opacity: .3; }
.social-card--google { --accent: #4285f4; }
.social-card--yelp { --accent: #ff1a1a; }
.social-card--fb { --accent: #1877f2; }
.social-card--nd { --accent: #8ed500; }
.social-card__icon { position: relative; z-index: 1; width: 46px; height: 46px; margin-bottom: 10px; border-radius: 14px; background: var(--gold); color: var(--ink); display: grid; place-items: center; }
.social-card--google .social-card__icon { background: #fff; }
.social-card__icon svg { width: 22px; height: 22px; }
.social-card__name { position: relative; z-index: 1; font-family: var(--font-display); font-size: 25px; text-transform: uppercase; line-height: 1; color: #fff; }
.social-card__sub { position: relative; z-index: 1; font-size: 14px; color: var(--smoke); }
.social-card__cta { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--font-display); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.social-card__cta svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.social-card:hover .social-card__cta svg { transform: translateX(4px); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 26px; }
.faq__list { display: grid; gap: 10px; }
.faq__item { border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: border-color .3s, box-shadow .4s var(--ease); }
.faq__item.is-open { border-color: var(--red); box-shadow: var(--shadow); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 0; background: none; text-align: left; font-family: var(--font-display); font-size: 21px; text-transform: uppercase; line-height: 1.15; color: var(--ink); }
.faq__icon { position: relative; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--red-soft); color: var(--red-deep); transition: background-color .3s, color .3s, transform .5s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 2.5px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform .5s var(--ease); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--red); color: #fff; transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 20px 20px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; display: grid; gap: 22px; padding: clamp(28px, 5vw, 58px); border-radius: var(--radius-lg); background: var(--ink); color: #fff; }
.cta::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(217, 164, 65, .35), transparent 65%); }
.cta h2 { position: relative; font-size: clamp(38px, 6.4vw, 72px); color: #fff; }
.cta p { position: relative; margin-top: 10px; font-size: 17px; color: var(--smoke); }
.cta__actions { position: relative; z-index: 1; display: grid; gap: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--smoke); padding-top: clamp(52px, 8vw, 84px); }
.footer__grid { display: grid; gap: 30px; }
.footer__brand p { margin-top: 14px; max-width: 320px; font-size: 15px; }
.footer h4 { margin-bottom: 12px; font-family: var(--font-display); font-size: 19px; text-transform: uppercase; color: #fff; }
.footer__links { display: grid; gap: 9px; font-size: 15px; }
.footer__links a { transition: color .25s, padding-left .35s var(--ease); }
.footer__links a:hover { color: var(--gold); padding-left: 5px; }
.footer__contact a, .footer__contact p { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #e7e9ec; }
.footer__contact a + a, .footer__contact a + p, .footer__contact p + a { margin-top: 10px; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold); }
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink-line); display: grid; place-items: center; color: #fff; transition: background-color .3s, border-color .3s, color .3s, transform .3s var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-direction: column; gap: 6px; margin-top: 42px; padding-block: 20px 28px; border-top: 1px solid var(--ink-line); font-size: 13.5px; }

/* ---------- Mobile action bar ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 8px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(19, 20, 24, .97); border-top: 1px solid var(--ink-line); transform: translate3d(0, 110%, 0); transition: transform .5s var(--ease); }
.action-bar.is-shown { transform: none; }
.action-bar .btn { min-height: 48px; padding: 0 10px; font-size: 15.5px; }
.action-bar .btn--light { background: transparent; border-color: var(--ink-line); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translate3d(0, 26px, 0); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 14% 0); transition: clip-path 1.1s var(--ease); }
.reveal-img.is-visible { clip-path: inset(0 0 0 0); }
.no-js .reveal { opacity: 1; transform: none; }
.no-js .reveal-img { clip-path: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .reveal, .hero__pill, .hero__lede, .hero__cta, .hero__chips { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .reveal-img { clip-path: none; }
}

/* ==========================================================================
   Larger screens
   ========================================================================== */
@media (max-width: 919px) { :root { --bar-h: calc(68px + env(safe-area-inset-bottom)); } }

@media (min-width: 600px) {
  .topbar__addr { display: inline-flex; }
  .hero__cta, .band__cta, .visit__actions, .cta__actions { display: flex; flex-wrap: wrap; }
  .services { grid-template-columns: 1fr 1fr; }
  .reviews { grid-auto-columns: 46%; }
  .gallery { grid-auto-columns: 38%; }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* sign left, copy right — starts earlier than the rest of the wide layout */
@media (min-width: 820px) {
  .band__grid { grid-template-columns: .98fr 1.02fr; }
  .band__sign { order: -1; }
}

@media (min-width: 920px) {
  :root { --header-h: 80px; }
  .hero__media img { object-position: 60% 45%; }
  .band::after { background: linear-gradient(90deg, rgba(19, 20, 24, .93) 0%, rgba(19, 20, 24, .78) 55%, rgba(19, 20, 24, .45) 100%); }
  .action-bar, .menu-toggle, .drawer, .icon-btn { display: none; }
  .nav { display: flex; gap: 26px; }
  .header__cta { display: inline-flex; }

  .strip__grid { grid-template-columns: repeat(4, 1fr); }
  .strip__item { padding: 22px 20px; border-bottom: 0; border-right: 1px solid var(--ink-line); }
  .strip__item:first-child { padding-left: 0; }
  .strip__item:last-child { border-right: 0; }
  .services { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .reviews { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .gallery { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .swipe-hint { display: none; }
  .visit { grid-template-columns: 1fr 1fr; }
  .map { min-height: 100%; }
  .faq { grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
  .cta { grid-template-columns: 1fr auto; align-items: center; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
}
