/* =====================================================================
   Al Nawa Barber Shop — brass on slate, taken from the logo and the
   shop's ring chandeliers.
   ===================================================================== */

:root {
  --slate-950: #17191C;
  --slate-900: #1F2226;
  --slate-800: #282B30;
  --slate-700: #33373D;
  --brass: #C9A45C;
  --brass-lt: #EAD49B;
  --brass-dk: #8C6D35;
  --marble: #ECE8E1;
  --muted: #A9A49B;
  --open: #86C98A;
  --line: rgba(201, 164, 92, .26);

  --font-body: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Reem Kufi", "IBM Plex Sans Arabic", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --header-h: 68px;
}

html[lang="en"] { --font-display: "Cormorant Garamond", Georgia, serif; }

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--marble);
  background-color: var(--slate-900);
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(234, 212, 155, .10), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--brass-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 100;
  padding: .6rem 1rem;
  background: var(--brass);
  color: var(--slate-900);
  border-radius: 6px;
}
.skip:focus { top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .8em 1.35em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s, background-color .2s, border-color .2s, transform .2s;
}
.btn svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--brass {
  color: #22201B;
  background: linear-gradient(180deg, #EBD39A 0%, #C9A45C 55%, #A9853F 100%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 225, .55), 0 10px 24px -12px rgba(201, 164, 92, .8);
}
.btn--brass:hover { filter: brightness(1.07); }

.btn--line { color: var(--brass-lt); border-color: rgba(201, 164, 92, .55); background: rgba(201, 164, 92, .06); }
.btn--line:hover { background: rgba(201, 164, 92, .14); border-color: var(--brass); }

.btn--text { background: none; color: var(--marble); padding-inline: .6em; }
.btn--text:hover { color: var(--brass-lt); }
.btn--text[aria-busy="true"] { opacity: .7; cursor: progress; }

.btn--sm { padding: .6em 1.05em; font-size: .9375rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(31, 34, 38, .78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(23, 25, 28, .9); }

.site-header__row { display: flex; align-items: center; gap: 1.5rem; height: 100%; }

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brass-lt);
  white-space: nowrap;
}
.brand img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); object-fit: cover; }

.site-nav { display: flex; gap: 1.75rem; margin-inline-start: auto; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 500; transition: color .2s; }
.site-nav a:hover { color: var(--brass-lt); }

.site-header__actions { display: flex; align-items: center; gap: .9rem; }
.lang-switch {
  text-decoration: none;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--marble);
  padding: .35em .2em;
  border-bottom: 1px solid var(--line);
}
.lang-switch:hover { color: var(--brass-lt); border-color: var(--brass); }
html[lang="ar"] .lang-switch { font-family: var(--font-serif); font-size: 1.05rem; }
html[lang="en"] .lang-switch { font-family: "Reem Kufi", sans-serif; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(1.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: min(680px, calc(100svh - var(--header-h) - 3rem));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .9rem .35rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9375rem;
  color: var(--marble);
  background: rgba(40, 43, 48, .6);
}
.status__dot {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--open);
  box-shadow: 0 0 0 4px rgba(134, 201, 138, .18);
}
.status.is-closed .status__dot { background: var(--brass); box-shadow: 0 0 0 4px rgba(201, 164, 92, .18); }

.hero__title {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 8.5vw, 6.4rem);
  line-height: 1.02;
  color: #F4E4B8;
  /* the lit storefront sign at night */
  text-shadow:
    0 0 1px rgba(255, 240, 200, .9),
    0 0 18px rgba(234, 212, 155, .35),
    0 0 44px rgba(201, 164, 92, .18),
    0 3px 0 #6F5530;
}
html[lang="en"] .hero__title { font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; }

.hero__alt {
  margin-top: .5rem;
  font-size: 1.35rem;
  color: var(--brass);
  letter-spacing: .02em;
}
html[lang="ar"] .hero__alt { font-family: var(--font-serif); font-weight: 600; font-size: 1.55rem; }
html[lang="en"] .hero__alt { font-family: "Reem Kufi", sans-serif; font-size: 1.7rem; }

.hero__tagline {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  color: var(--marble);
}
.hero__text { margin-top: .6rem; max-width: 34rem; color: var(--muted); }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 2rem; }

.hero__phone { margin-top: 1.1rem; }
.hero__phone a {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .03em;
  color: var(--brass-lt);
  text-decoration: none;
  font-variant-numeric: lining-nums;
}
.hero__phone a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- 3D medallion ---------- */
.stage {
  --coin: min(64vw, 360px);
  --rx: 0deg;
  --ry: 0deg;
  --sx: 32%;
  --sy: 24%;
  position: relative;
  height: calc(var(--coin) * 1.55);
  perspective: 1300px;
  perspective-origin: 50% 45%;
}

.rig, .rig__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.rig { transform: rotateX(var(--rx)) rotateY(var(--ry)); }
.rig__inner { animation: rig-enter 1.6s cubic-bezier(.2, .8, .2, 1) both; }

@keyframes rig-enter {
  from { transform: translateY(40px) rotateY(-70deg) scale(.86); }
  to   { transform: none; }
}
/* fade lives on .stage: opacity inside a preserve-3d tree would flatten it */
.stage { animation: stage-fade 1s ease-out both; }
@keyframes stage-fade { from { opacity: 0; } to { opacity: 1; } }

.coin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--coin);
  height: var(--coin);
  margin: calc(var(--coin) / -2) 0 0 calc(var(--coin) / -2);
  transform-style: preserve-3d;
  animation: coin-float 7s ease-in-out 1.6s infinite;
}
@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50%      { transform: translateY(-12px) rotateY(6deg); }
}

.coin__edge {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0DBA3 0%, #A9853F 45%, #6A5028 70%, #C9A45C 100%);
  transform: translateZ(calc(var(--i) * -1.6px));
}
.coin__edge:last-child { box-shadow: 0 40px 70px -20px rgba(0, 0, 0, .75); }

.coin__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  transform: translateZ(1px);
  background: #26292E;
}
.coin__face::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 calc(var(--coin) * .018) #C9A45C,
    inset 0 0 0 calc(var(--coin) * .026) #6A5028,
    inset 0 0 calc(var(--coin) * .08) rgba(0, 0, 0, .6);
  pointer-events: none;
}
.coin__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.coin__shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--sx) var(--sy), rgba(255, 244, 214, .30), transparent 42%),
    linear-gradient(115deg, transparent 40%, rgba(255, 240, 200, .10) 50%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ring chandeliers: real 3D planes that pass through the coin */
.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--coin) * 1.5);
  height: calc(var(--coin) * 1.5);
  margin: calc(var(--coin) * -.75) 0 0 calc(var(--coin) * -.75);
  transform-style: preserve-3d;
}
.ring--upper { transform: translateY(calc(var(--coin) * -.42)) rotateX(72deg); }
.ring--lower { transform: translateY(calc(var(--coin) * .34)) rotateX(72deg) scale(.86); }

.ring__band {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #6A5028, #F4E0A8 12%, #C9A45C 25%, #7A5E2E 40%, #EAD49B 58%, #A9853F 72%, #FFF1C8 86%, #6A5028);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px), #000 calc(100% - 1px), transparent);
          mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px), #000 calc(100% - 1px), transparent);
  animation: ring-spin 22s linear infinite;
}
.ring--lower .ring__band { animation-duration: 30s; animation-direction: reverse; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* floating framed photos */
.float {
  position: absolute;
  margin: 0;
  transform-style: preserve-3d;
}
.float span {
  display: block;
  padding: 5px;
  background: var(--slate-800);
  border: 1px solid rgba(201, 164, 92, .45);
  border-radius: 6px;
  box-shadow: 0 30px 50px -22px rgba(0, 0, 0, .8);
  animation: photo-float 8s ease-in-out infinite;
}
.float img { border-radius: 3px; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.float--a { width: calc(var(--coin) * .42); left: 2%;  top: 4%;  transform: translateZ(-140px) rotateY(14deg) rotateZ(-4deg); }
.float--b { width: calc(var(--coin) * .46); right: 0; top: 46%; transform: translateZ(110px) rotateY(-12deg) rotateZ(3deg); }
.float--b img { aspect-ratio: 4 / 3.4; }
.float--c { width: calc(var(--coin) * .34); left: 8%;  bottom: 2%; transform: translateZ(70px) rotateY(10deg) rotateZ(5deg); }
.float--b span { animation-delay: -3s; animation-duration: 9s; }
.float--c span { animation-delay: -5.5s; animation-duration: 7s; }

@keyframes photo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.stage__floor {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: calc(var(--coin) * 1.2);
  height: calc(var(--coin) * .16);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 164, 92, .22), rgba(0, 0, 0, .35) 55%, transparent);
  filter: blur(6px);
}

/* ---------- sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--tint {
  background: linear-gradient(180deg, rgba(23, 25, 28, .0), rgba(23, 25, 28, .75) 12%, rgba(23, 25, 28, .75) 88%, rgba(23, 25, 28, 0));
}

.section__head { margin-bottom: clamp(2rem, 5vw, 3rem); max-width: 40rem; }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.15;
  color: var(--brass-lt);
}
.section__head p { margin-top: .5rem; color: var(--muted); }

/* ---------- price menu ---------- */
.menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 4.5vw, 3.25rem);
  background: linear-gradient(180deg, rgba(51, 55, 61, .55), rgba(40, 43, 48, .75));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 0 0 7px rgba(31, 34, 38, .6), inset 0 0 0 8px rgba(201, 164, 92, .14);
}

.menu__group h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--brass);
}
.menu__group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.menu ul { list-style: none; margin: 0; padding: 0; }

.menu__item {
  display: grid;
  grid-template-columns: auto minmax(1.5rem, 1fr) auto;
  align-items: baseline;
  gap: .75rem;
  padding-block: .7rem;
  border-bottom: 1px solid rgba(236, 232, 225, .06);
}
.menu__item:last-child { border-bottom: 0; }

.menu__name { display: flex; flex-direction: column; min-width: 0; }
.menu__main { font-weight: 500; font-size: 1.0625rem; line-height: 1.45; }
.menu__sub { font-size: .875rem; line-height: 1.4; color: var(--muted); }
.menu__note { margin-top: .15rem; font-size: .8125rem; line-height: 1.45; color: #C8B78F; max-width: 36ch; }

.menu__leader { align-self: baseline; height: .5em; border-bottom: 2px dotted rgba(201, 164, 92, .35); }

.menu__price { display: inline-flex; align-items: baseline; gap: .3rem; white-space: nowrap; }
.menu__price strong {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--brass-lt);
  font-variant-numeric: lining-nums tabular-nums;
}
.menu__price small { font-size: .8125rem; color: var(--muted); }

.menu__cta { margin-top: 2rem; display: flex; justify-content: center; }

/* ---------- gallery ---------- */
.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 3 16rem;
  column-gap: 1rem;
}
.gallery li { break-inside: avoid; margin-bottom: 1rem; }

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--slate-800);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.2rem 1rem .8rem;
  font-size: .9375rem;
  text-align: start;
  background: linear-gradient(transparent, rgba(23, 25, 28, .88));
}

/* ---------- lightbox ---------- */
.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(23, 25, 28, .96);
  color: var(--marble);
}
.lightbox[open] { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
.lightbox::backdrop { background: rgba(0, 0, 0, .6); }
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: .8rem; padding: 3.5rem .5rem 1.5rem; min-width: 0; }
.lightbox img { max-height: calc(100dvh - 8rem); width: auto; border-radius: 6px; }
.lightbox figcaption { color: var(--muted); }

.lightbox__btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: .75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(40, 43, 48, .8);
  cursor: pointer;
}
.lightbox__btn svg { width: 22px; height: 22px; fill: var(--brass-lt); }
.lightbox__btn:hover { border-color: var(--brass); }
.lightbox__close { position: absolute; top: 0; inset-inline-end: 0; }
html[dir="ltr"] .lightbox__prev svg,
html[dir="rtl"] .lightbox__next svg { transform: scaleX(-1); }

/* ---------- branches ---------- */
.branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }

.branch {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--slate-800);
}

.branch__map {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  /* quiet street-grid placeholder while the map loads */
  background:
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(236, 232, 225, .05) 46px 48px),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(236, 232, 225, .05) 62px 64px),
    #2E3238;
}
.branch__map iframe {
  position: absolute;
  inset: -60px 0 0;
  width: 100%;
  height: calc(100% + 120px);
  border: 0;
  pointer-events: none;
  filter: grayscale(1) invert(.9) contrast(.9) brightness(.95);
}
.branch__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(31, 34, 38, .55)), rgba(201, 164, 92, .18);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.branch__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -88%);
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .6));
}
.branch__pin svg { width: 100%; height: 100%; fill: var(--brass); }
.branch__chip {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: #22201B;
  background: var(--brass-lt);
  transition: background-color .2s;
}
.branch__map:hover .branch__chip { background: #F6E6BC; }

.branch__body { display: grid; gap: .5rem; padding: 1.4rem 1.5rem 1.6rem; }
.branch__body h3 { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.3; color: var(--brass-lt); }
.branch__addr { color: var(--muted); }
.branch__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .6rem; }

.hours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hours h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--brass); }
.hours dl { display: flex; flex-wrap: wrap; gap: .5rem 3rem; margin: 0; }
.hours dl div { display: flex; gap: .75rem; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { padding-block: 3.5rem 1.5rem; border-top: 1px solid var(--line); background: var(--slate-950); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__brand img { width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--line); }
.site-footer__name { font-family: var(--font-display); font-size: 1.45rem; color: var(--brass-lt); }
.site-footer__brand p:last-child { color: var(--muted); }
.site-footer__h { margin-bottom: .5rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--brass); }
.site-footer a { color: var(--marble); text-decoration: none; }
.site-footer a:hover { color: var(--brass-lt); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(236, 232, 225, .06); font-size: .875rem; color: var(--muted); }

/* ---------- floating contact ---------- */
.fab {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #22201B;
  background: linear-gradient(180deg, #EBD39A, #B8914A);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 248, 225, .6);
  transition: transform .2s;
}
.fab svg { width: 28px; height: 28px; fill: currentColor; }
.fab:hover { transform: scale(1.06); }

.action-bar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__actions { margin-inline-start: auto; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .hero__copy { order: 2; }
  .stage { order: 1; --coin: min(58vw, 320px); }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }

  .menu { grid-template-columns: 1fr; }
  .branches { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .brand { font-size: 1.1rem; }
  .brand img { width: 34px; height: 34px; }
  .header-call span { display: none; }
  .header-call { padding: .6em; }

  .stage { --coin: 62vw; }
  .float--a { left: -2%; }
  .float--b { right: -4%; }

  .menu__item { grid-template-columns: minmax(0, 1fr) auto; }
  .menu__leader { display: none; }
  .menu__price strong { font-size: 1.6rem; }

  .gallery { columns: 2; column-gap: .6rem; }
  .gallery li { margin-bottom: .6rem; }
  .gallery__cap { font-size: .8125rem; padding: 1.6rem .6rem .5rem; }

  .hours { flex-direction: column; align-items: flex-start; }

  .fab { display: none; }
  .action-bar {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(23, 25, 28, .96);
    border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .action-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .6rem 0 .55rem;
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--marble);
  }
  .action-bar svg { width: 22px; height: 22px; fill: var(--brass-lt); }
  .action-bar__wa { background: linear-gradient(180deg, #EBD39A, #B8914A); color: #22201B !important; }
  .action-bar__wa svg { fill: #22201B; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
