/* ============================================================
   CakeUWish LLC — elevated artisan patisserie
   Fraunces (display) · Karla (body) · Parisienne (script)
   ============================================================ */

:root {
  --cream:   #FBF5EF;
  --cream-2: #F4E8DA;
  --blush:   #FBEEF0;
  --ink:     #2E1D18;
  --ink-2:   #6E574C;
  --berry:   #8E2C4E;
  --berry-d: #742240;
  --rose:    #D98BA0;
  --gold:    #BE9A5A;
  --gold-2:  #E4C892;
  --white:   #ffffff;

  --nav-h: 70px;
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --r: 16px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(46, 29, 24, 0.06);
  --shadow-md: 0 14px 40px -18px rgba(46, 29, 24, 0.30);
  --shadow-lg: 0 40px 90px -36px rgba(46, 29, 24, 0.45);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Karla", system-ui, sans-serif;
  --script: "Parisienne", cursive;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--berry); --btn-fg: var(--cream); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: 100px; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .3s ease, color .3s ease;
  will-change: transform;
}
.btn--primary { box-shadow: 0 10px 26px -12px rgba(142,44,78,.75); }
.btn--primary:hover { background: var(--berry-d); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(142,44,78,.7); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: rgba(142,44,78,.35); }
.btn--ghost:hover { --btn-bg: rgba(142,44,78,.07); --btn-bd: var(--berry); transform: translateY(-2px); }
.btn--cream { --btn-bg: var(--cream); --btn-fg: var(--berry); }
.btn--cream:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); background: #fff; }
.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--cream); --btn-bd: rgba(251,245,239,.5); }
.btn--outline-light:hover { --btn-bd: var(--cream); --btn-bg: rgba(251,245,239,.1); transform: translateY(-2px); }
.btn--sm { padding: .62rem 1.15rem; font-size: .88rem; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--script); color: var(--berry);
  font-size: clamp(1.35rem, 3.2vw, 1.8rem); line-height: 1; margin-bottom: .5rem;
}
.eyebrow--light { color: var(--gold-2); }
.section-eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .26em;
  font-size: .74rem; font-weight: 700; color: var(--berry); margin-bottom: 1rem;
}
.section-head { max-width: 40rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-title { font-size: clamp(2rem, 4.6vw, 3.15rem); }
.section-intro { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.08rem; max-width: 34rem; }
.stars { color: var(--gold); letter-spacing: .12em; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(251,245,239,.72); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(251,245,239,.92); border-bottom-color: rgba(190,154,90,.28); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__word { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.brand__word em { font-style: italic; color: var(--berry); font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a:not(.btn) { font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding: .2rem 0; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--berry); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; position: relative; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 82% 8%, rgba(217,139,160,.28), transparent 70%),
    radial-gradient(40% 46% at 6% 92%, rgba(190,154,90,.20), transparent 70%),
    radial-gradient(60% 50% at 50% 120%, rgba(142,44,78,.10), transparent 70%);
}
.hero__grain, .final__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: calc(100svh - var(--nav-h));
  display: grid; grid-template-columns: 1.06fr .94fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(1.5rem, 4vh, 3.25rem);
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.hero__title { font-size: clamp(2.35rem, 5.6vw, 4.35rem); font-weight: 600; letter-spacing: -.022em; color: var(--ink); overflow-wrap: break-word; max-width: 100%; }
.hero__sub { margin-top: 1.3rem; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-2); max-width: 33rem; overflow-wrap: break-word; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero__proof {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .7rem;
  font-size: .96rem; color: var(--ink-2);
}
.hero__proof .stars { font-size: 1.05rem; }
.hero__proof strong { color: var(--ink); font-weight: 700; }
.hero__proof a { color: var(--berry); font-weight: 700; border-bottom: 1px solid rgba(142,44,78,.3); }
.hero__proof a:hover { border-bottom-color: var(--berry); }
.hero__proof-sep { color: var(--gold); }

.hero__media { position: relative; justify-self: center; min-width: 0; }
.hero__card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(190,154,90,.4);
  transform: rotate(1.4deg);
}
.hero__card::after { content:""; position:absolute; inset:0; border-radius: inherit; box-shadow: inset 0 0 0 6px rgba(251,245,239,.6); pointer-events:none; }
.hero__card img { width: 100%; height: min(70svh, 600px); object-fit: cover; }
.hero__seal {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--berry); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--gold-2);
  transform: rotate(-9deg);
}
.hero__seal-top { font-family: var(--serif); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.hero__seal-mid { font-family: var(--serif); font-style: italic; font-size: 1.02rem; font-weight: 600; color: var(--gold-2); margin: 1px 0 3px; }
.hero__seal-bot { font-size: .54rem; text-transform: uppercase; letter-spacing: .16em; opacity: .85; padding: 0 .4rem; line-height: 1.3; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: .95rem 0; border-block: 1px solid rgba(190,154,90,.3); }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: marquee 42s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 1.16rem; letter-spacing: .01em; }
.marquee__dot { color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STORY
   ============================================================ */
.story { padding-block: clamp(4rem, 9vw, 7rem); }
.story__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.story__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.story__body p { color: var(--ink-2); font-size: 1.1rem; margin-bottom: 1.1rem; }
.story__body p:first-child { color: var(--ink); }
.story__sign { font-family: var(--script); color: var(--berry) !important; font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.3; margin-top: 1.4rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--cream-2); padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.menu-card {
  position: relative; background: var(--cream); border-radius: var(--r);
  padding: 2rem 1.6rem 1.7rem; border: 1px solid rgba(190,154,90,.28);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.menu-card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--berry), var(--gold)); transform: scaleX(0); transform-origin:left; transition: transform .45s ease; }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(190,154,90,.55); }
.menu-card:hover::before { transform: scaleX(1); }
.menu-card__num { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.menu-card h3 { font-size: 1.4rem; margin-bottom: .55rem; color: var(--ink); }
.menu-card p { color: var(--ink-2); font-size: .99rem; }
.menu-card__price { display: inline-block; margin-top: 1.1rem; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--berry); }
.menu__cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.menu__cta-note { color: var(--ink-2); font-size: .98rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--berry); color: var(--cream); padding-block: clamp(2.8rem, 5vw, 4rem); position: relative; }
.stats::before, .stats::after { content:""; position:absolute; left:0; right:0; height:4px; background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 22px); opacity:.5; }
.stats::before { top: 0; } .stats::after { bottom: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: .35rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 600; line-height: 1; }
.stat__star { color: var(--gold-2); font-size: .7em; }
.stat__label { font-size: .9rem; color: rgba(251,245,239,.82); letter-spacing: .02em; }
.stat + .stat { position: relative; }
.stat + .stat::before { content:""; position:absolute; left: -.75rem; top: 15%; height: 70%; width: 1px; background: rgba(251,245,239,.2); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-block: clamp(4rem, 9vw, 7rem); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r); cursor: zoom-in; box-shadow: var(--shadow-sm); background: var(--cream-2); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery__item::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(46,29,24,.6), transparent 46%); opacity:0; transition: opacity .4s ease; }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem;
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  transform: translateY(8px); opacity: 0; transition: transform .4s ease, opacity .4s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover figcaption { transform: none; opacity: 1; }
.gallery__more { margin-top: 2rem; text-align: center; color: var(--ink-2); }
.gallery__more a { color: var(--berry); font-weight: 700; border-bottom: 1px solid rgba(142,44,78,.35); }
.gallery__more a:hover { border-bottom-color: var(--berry); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--blush); padding-block: clamp(4rem, 9vw, 7rem); }
.reviews__grid { columns: 3; column-gap: 1.15rem; }
.review {
  break-inside: avoid; margin-bottom: 1.15rem; background: var(--cream);
  border-radius: var(--r); padding: 1.7rem 1.6rem 1.4rem; border: 1px solid rgba(190,154,90,.25);
  box-shadow: var(--shadow-sm); position: relative;
}
.review::before { content: "\201C"; font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--rose); position: absolute; top: .55rem; right: 1rem; opacity: .5; }
.review p { font-size: 1.03rem; color: var(--ink); position: relative; z-index: 1; }
.review footer { margin-top: 1.1rem; display: flex; flex-direction: column; }
.review__name { font-weight: 700; color: var(--berry); }
.review__meta { font-size: .82rem; color: var(--ink-2); text-transform: uppercase; letter-spacing: .12em; margin-top: .1rem; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { padding-block: clamp(4rem, 9vw, 7rem); }
.visit__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit__lead { color: var(--ink-2); margin-top: 1.1rem; font-size: 1.08rem; max-width: 32rem; }
.visit__facts { list-style: none; margin: 2rem 0; }
.visit__facts li { display: flex; flex-direction: column; padding: 1rem 0; border-bottom: 1px solid rgba(190,154,90,.28); }
.visit__facts li:first-child { padding-top: 0; }
.visit__fact-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--berry); font-weight: 700; margin-bottom: .3rem; }
.visit__facts a { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.visit__facts a:hover { color: var(--berry); }
.visit__facts li span:last-child { color: var(--ink); }
.visit__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.visit__social { margin-top: 1.3rem; display: flex; align-items: center; gap: .7rem; color: var(--gold); }
.visit__social a { font-weight: 700; color: var(--berry); }
.visit__social a:hover { text-decoration: underline; text-underline-offset: 3px; }
.seal { display: flex; align-items: center; gap: .7rem; margin-top: 1.7rem; padding: .9rem 1.1rem; background: var(--cream-2); border-radius: 12px; border: 1px dashed rgba(190,154,90,.6); color: var(--ink); font-size: .9rem; }
.seal__icon { width: 30px; height: 30px; flex: none; color: var(--berry); }
.visit__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(190,154,90,.4); min-height: 380px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.92) contrast(1.02); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; background: linear-gradient(135deg, #2E1D18 0%, #5a2038 55%, var(--berry) 100%); color: var(--cream); padding-block: clamp(4.5rem, 10vw, 7.5rem); text-align: center; }
.final__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final__title { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--cream); margin-top: .3rem; max-width: 18ch; }
.final__cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #241512; color: rgba(251,245,239,.8); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__word { color: var(--cream); font-size: 1.7rem; }
.footer__word em { color: var(--rose); font-style: italic; }
.footer__tag { margin-top: .7rem; max-width: 22rem; color: rgba(251,245,239,.7); }
.footer__script { font-family: var(--script); color: var(--gold-2); font-size: 1.35rem; margin-top: .8rem; line-height: 1.3; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; }
.footer__h { font-family: var(--serif); color: var(--cream); font-size: 1.05rem; margin-bottom: .35rem; }
.footer__col a { color: rgba(251,245,239,.75); transition: color .25s ease; width: fit-content; }
.footer__col a:hover { color: var(--gold-2); }
.footer__muted { color: rgba(251,245,239,.55); font-size: .92rem; }
.footer__base { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(251,245,239,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .84rem; color: rgba(251,245,239,.5); }
.footer__base-note { color: var(--gold-2); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(36,21,18,.92); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 4vw; opacity: 0; transition: opacity .3s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); border: 3px solid rgba(251,245,239,.9); }
.lightbox__close { position: absolute; top: 1.3rem; right: 1.5rem; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(251,245,239,.5); background: rgba(0,0,0,.2); color: var(--cream); font-size: 1.2rem; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.lightbox__close:hover { background: var(--berry); transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --nav-h: 62px; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; display: none; flex-direction: column; gap: 1.2rem;
    background: rgba(251,245,239,.98); backdrop-filter: blur(16px); padding: 1.8rem var(--pad) 2.2rem;
    border-bottom: 1px solid rgba(190,154,90,.3); box-shadow: var(--shadow-md); align-items: flex-start;
  }
  .nav__links.open { display: flex; animation: dropIn .32s ease; }
  @keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .nav__links a:not(.btn) { font-size: 1.15rem; }
  .nav__links .btn { margin-top: .3rem; }
  .nav__toggle { display: block; }

  .hero__inner { grid-template-columns: 1fr; align-content: center; gap: 2rem; text-align: left; }
  .hero__copy { align-items: flex-start; }
  .hero__media { order: 2; width: 100%; max-width: 460px; }
  .hero__card { transform: none; }
  .hero__card img { height: min(52svh, 440px); }

  .story__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .reviews__grid { columns: 2; }
  .visit__inner { grid-template-columns: 1fr; }
  .visit__map { min-height: 320px; order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: .99rem; }
  .hero__inner { min-height: calc(100svh - var(--nav-h)); padding-block: 1.25rem 1.75rem; }
  .hero__title { font-size: clamp(2.1rem, 8.8vw, 2.9rem); }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__proof-sep { display: none; }
  .hero__proof-call { flex-basis: 100%; }
  .hero__seal { width: 92px; height: 92px; left: auto; right: 12px; bottom: -14px; }
  .menu__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: .7rem; }
  .gallery__item--wide { grid-column: span 2; }
  .reviews__grid { columns: 1; }
  .footer__inner { grid-template-columns: 1fr; }
  .final__cta { width: 100%; }
  .final__cta .btn { flex: 1 1 auto; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track { animation: none; }
  .btn, .menu-card, .gallery__item img, .nav { transition: none; }
  * { scroll-behavior: auto !important; }
}
