  /* ============================================================
     La Mie à Mamie — Homepage
     Built on the brand design system tokens (ds/styles.css).
     Plain, directly-editable HTML; components recreated to match
     the kit's component specs exactly.
     ============================================================ */

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

  /* Soften pure-white card surfaces to a warm off-white — easier on the eyes */
  body {
    --surface-card: #FCF8F0;
  }

  html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

  body {
    margin: 0;
    background: var(--surface-page);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  ::selection { background: var(--honey-300); color: var(--brown-700); }

  a { color: var(--accent-strong); }

  .wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }

  /* ---------- Eyebrow ---------- */
  .eyebrow {
    margin: 0;
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-caption);
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--caramel-500);
  }
  .eyebrow--center { text-align: center; }
  .eyebrow--honey { color: var(--honey-400); }

  /* ---------- Script accent ---------- */
  .script {
    font-family: var(--font-script);
    font-weight: 600;
    line-height: 1;
    color: var(--caramel-500);
    display: inline-block;
    transform: rotate(-3deg);
  }
  .script--sm { font-size: 1.5rem; }
  .script--md { font-size: 2rem; }
  .script--lg { font-size: 2.75rem; }
  .script--honey { color: var(--honey-400); }

  /* ---------- Badge ---------- */
  .badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--honey-300);
    color: var(--brown-700);
    line-height: 1;
    white-space: nowrap;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.01em;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    color: var(--btn-primary-fg);
    background: var(--btn-primary-bg);
    box-shadow: var(--shadow-sm);
    transition: background var(--dur-fast) var(--ease-soft),
                transform var(--dur-fast) var(--ease-soft),
                box-shadow var(--dur-fast) var(--ease-soft);
  }
  .btn:hover { background: var(--btn-primary-bg-hover); transform: translateY(var(--hover-lift)); box-shadow: var(--shadow-md); }
  .btn:active { transform: translateY(0) scale(0.98); box-shadow: var(--shadow-press); }
  .btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(166,97,47,.18); }

  .btn--sm { padding: 8px 16px; font-size: 0.875rem; gap: 6px; }
  .btn--lg { padding: 16px 32px; font-size: 1.0625rem; gap: 10px; }

  .btn--secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-fg);
    border-color: var(--border-soft);
  }
  .btn--secondary:hover { background: var(--btn-secondary-bg-hover); }

  .btn--honey {
    background: var(--honey-400);
    color: var(--text-on-honey);
  }
  .btn--honey:hover { background: var(--honey-500); }

  .btn--ghost {
    background: transparent;
    color: var(--text-body);
    box-shadow: none;
  }
  .btn--ghost:hover { background: var(--cream-200); box-shadow: none; }

  .btn svg { display: block; }

  /* ---------- Icon button ---------- */
  .icon-btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border: none; border-radius: var(--radius-pill);
    cursor: pointer;
    background: var(--tan-200);
    color: var(--brown-600);
    transition: background var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
  }
  .icon-btn:hover { background: var(--tan-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
  .icon-btn--ghost { background: transparent; }
  .icon-btn--ghost:hover { background: var(--cream-200); box-shadow: none; }
  .icon-btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(166,97,47,.18); }

  /* ============================================================
     NAVBAR
     ============================================================ */
  .nav {
    position: sticky; top: 0; z-index: 20;
    background: rgba(251,246,236,0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav__inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 24px;
    padding-top: 14px; padding-bottom: 14px;
  }
  .logo { text-decoration: none; line-height: 1; display: inline-block; }
  .logo__name {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 27px;
    letter-spacing: -0.01em;
    color: var(--brown-600);
    white-space: nowrap;
  }
  .logo__tag {
    font-family: var(--font-script);
    font-size: 17px;
    color: var(--caramel-500);
    margin-top: 1px;
    white-space: nowrap;
  }
  .logo--dark .logo__name { color: var(--cream-100); }
  .logo--dark .logo__tag { color: var(--honey-400); }

  .nav__links {
    position: relative;
    display: flex; gap: 4px; margin-left: 18px;
    background: var(--surface-card);
    padding: 5px; border-radius: var(--radius-pill);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-xs);
  }
  /* sliding highlight that glides between items left↔right */
  .nav__pill {
    position: absolute; top: 5px; left: 0; z-index: 0;
    height: calc(100% - 10px);
    border-radius: var(--radius-pill);
    background: var(--caramel-500);
    box-shadow: var(--shadow-xs);
    opacity: 0; /* until JS measures and places it */
    transform: translateX(0);
    will-change: transform, width;
  }
  /* glide only once positioned, so it never streaks in from the corner on load */
  .nav__links.pill-ready .nav__pill {
    opacity: 1;
    transition: transform var(--dur-base) var(--ease-rise),
                width var(--dur-base) var(--ease-rise);
  }
  .nav__link {
    position: relative; z-index: 1;
    border: none; cursor: pointer; white-space: nowrap; text-decoration: none;
    display: inline-flex; align-items: center;
    font-family: var(--font-body); font-weight: var(--fw-bold);
    font-size: 0.9375rem;
    padding: 8px 16px; border-radius: var(--radius-pill);
    color: var(--brown-500); background: transparent;
    transition: color var(--dur-base) var(--ease-soft);
  }
  .nav__link:hover { color: var(--brown-700); }
  .nav__link.is-active { color: var(--text-on-caramel); }

  .nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

  .nav__menu-btn { display: none; }

  /* animated hamburger → X (three bars morph) */
  .burger {
    position: relative;
    width: 22px; height: 16px;
    display: block;
  }
  .burger span {
    position: absolute; left: 0;
    width: 100%; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: top var(--dur-base) var(--ease-rise),
                transform var(--dur-base) var(--ease-rise),
                opacity var(--dur-fast) var(--ease-soft);
  }
  .burger span:nth-child(1) { top: 0; }
  .burger span:nth-child(2) { top: 7px; }
  .burger span:nth-child(3) { top: 14px; }
  /* open state: top+bottom converge & cross, middle collapses */
  .nav.is-open .burger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
  .nav.is-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
  .nav.is-open .burger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }
  @media (prefers-reduced-motion: reduce) {
    .burger span { transition: none; }
  }
  .nav__mobile { display: none; }
  .nav__mobile-inner {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; width: 100%; height: 100%;
    margin: 0; padding: 0;
  }
  .nav__mobile a {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(1.75rem, 7vw, 2.5rem); color: var(--brown-600);
    text-decoration: none; padding: 12px 24px; text-align: center;
    border-radius: var(--radius-pill);
    transition: color var(--dur-fast) var(--ease-soft),
                background-color var(--dur-fast) var(--ease-soft),
                transform var(--dur-base) var(--ease-rise);
  }
  .nav__mobile a:hover,
  .nav__mobile a:focus-visible,
  .nav__mobile a.is-active { color: var(--caramel-500); }
  .nav__mobile a:hover,
  .nav__mobile a:focus-visible { transform: scale(1.05); }
  /* On-brand tap feedback — replaces the browser's default blue highlight box
     with a warm tan pill + caramel text + a gentle press. */
  .nav__mobile a:active {
    color: var(--caramel-600);
    background-color: var(--surface-section);
    transform: scale(0.98);
  }
  @media (prefers-reduced-motion: reduce) {
    .nav__mobile a {
      transition: color var(--dur-fast) var(--ease-soft),
                  background-color var(--dur-fast) var(--ease-soft);
    }
    .nav__mobile a:hover,
    .nav__mobile a:focus-visible,
    .nav__mobile a:active { transform: none; }
  }
  /* (open/close handled by a full-screen overlay in the ≤940px block below) */

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 56px; align-items: center;
    padding-top: 64px; padding-bottom: 48px;
  }
  .hero__title {
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: clamp(2.5rem, 4.4vw, 3.7rem);
    line-height: 1.06; letter-spacing: -0.02em;
    color: var(--text-strong); text-wrap: balance;
  }
  .hero__title .nowrap { white-space: nowrap; }
  .hero__script { margin-top: 18px; margin-left: 4px; }
  .hero__lead {
    margin: 24px 0 0; max-width: 46ch;
    font-size: var(--fs-body-lg); line-height: 1.6;
    color: var(--text-muted);
  }
  .hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
  .hero__hours {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 28px; color: var(--brown-500);
    font-weight: var(--fw-semibold); font-size: 0.95rem;
  }

  /* hero photo collage */
  .hero__media { position: relative; }
  .photo {
    display: block; width: 100%;
    box-shadow: var(--shadow-inner-glow);
  }
  .hero__main {
    width: 100%; height: auto; aspect-ratio: 4 / 5; display: block;
    box-shadow: var(--shadow-lg);
  }
  .hero__small-wrap {
    position: absolute; bottom: -28px; left: -36px; width: 46%;
  }
  .hero__small {
    width: 100%; height: auto; aspect-ratio: 1 / 1; display: block;
    border: 6px solid var(--surface-page);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-xl);
  }
  .hero__chip {
    position: absolute; top: 22px; right: -18px;
    background: var(--surface-card); border-radius: var(--radius-pill);
    padding: 10px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-body); font-weight: var(--fw-bold);
    color: var(--brown-600);
  }
  .hero__chip svg { color: var(--caramel-500); display: block; }
  .hero__chip span { white-space: nowrap; }

  /* ---------- Hero variant: full-bleed background image ---------- */
  .hero-full { position: relative; display: none; overflow: hidden; min-height: 700px; }
  /* fade the photo's bottom into the cream the products section begins with */
  .hero-full::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 300px;
    z-index: 1; pointer-events: none;
    background: linear-gradient(to bottom,
      rgba(251,246,236,0) 0%,
      rgba(251,246,236,0.06) 14%,
      rgba(251,246,236,0.20) 30%,
      rgba(251,246,236,0.44) 50%,
      rgba(251,246,236,0.70) 68%,
      rgba(251,246,236,0.88) 82%,
      rgba(251,246,236,0.97) 92%,
      var(--cream-100) 100%);
  }
  body.hero-bg .hero { display: none; }
  body.hero-bg .hero-full { display: flex; align-items: center; }
  .hero-full__bg {
    position: absolute !important; inset: 0;
    width: 100% !important; height: 100% !important;
    border-radius: 0 !important; z-index: 0;
    object-fit: cover;
  }
  /* two stacked copies crossfade at the loop point for a seamless loop */
  video.hv { transition: opacity 700ms linear; will-change: opacity; }
  .hero-full__scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      linear-gradient(90deg, rgba(253,250,243,0.94) 0%, rgba(253,250,243,0.86) 26%, rgba(253,250,243,0.55) 46%, rgba(253,250,243,0.12) 66%, rgba(253,250,243,0) 80%);
  }
  .hero-full__inner {
    position: relative; z-index: 2; width: 100%;
    padding-top: 104px; padding-bottom: 104px;
  }
  .hero-full__title { color: var(--text-strong); }
  .hero-full__lead { color: var(--text-body); max-width: 40ch; }
  .hero-full__hours { color: var(--brown-500); }
  .hero-full__chip {
    position: absolute; z-index: 2; top: 28px;
    right: max(var(--container-pad), calc((100% - var(--container-max)) / 2 + var(--container-pad)));
    background: var(--surface-card); border-radius: var(--radius-pill);
    padding: 10px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-body); font-weight: var(--fw-bold); color: var(--brown-600);
  }
  .hero-full__chip svg { color: var(--caramel-500); display: block; }
  .hero-full__chip span { white-space: nowrap; }

  /* live open/closed status pill */
  .status-chip[hidden] { display: none; }
  .status-chip .status-chip__dot {
    width: 9px; height: 9px; border-radius: 50%; flex: none;
    background: var(--brown-400, #b89a78);
  }
  .status-chip.is-open .status-chip__dot {
    background: #3f9b54;
    box-shadow: 0 0 0 0 rgba(63,155,84,0.5);
    animation: status-pulse 2.4s var(--ease-soft, ease-out) infinite;
  }
  .status-chip.is-open .status-chip__text { color: #2f7a40; }
  .status-chip.is-closed .status-chip__dot { background: var(--caramel-500); }

  /* nav variant: pill button that replaces the old "Nous trouver" CTA */
  .status-chip--nav {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: var(--radius-pill);
    border: 1px solid var(--border-soft);
    background: var(--surface-card);
    font-family: var(--font-body); font-weight: var(--fw-bold);
    font-size: 0.92rem; line-height: 1; white-space: nowrap;
    text-decoration: none; color: var(--brown-600);
    transition: transform var(--dur-fast) var(--ease-rise), border-color var(--dur-fast) var(--ease-soft);
  }
  .status-chip--nav:hover { transform: translateY(-1px); border-color: var(--caramel-500); }
  .status-chip--nav .status-chip__dot { width: 8px; height: 8px; }
  @keyframes status-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(63,155,84,0.45); }
    70%  { box-shadow: 0 0 0 7px rgba(63,155,84,0); }
    100% { box-shadow: 0 0 0 0 rgba(63,155,84,0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .status-chip.is-open .status-chip__dot { animation: none; }
  }

  /* ============================================================
     PRODUCT GRID
     ============================================================ */
  .products {
    background: linear-gradient(to bottom,
      var(--cream-100) 0,
      rgb(248,241,228) 34px,
      var(--surface-section) 96px,
      var(--surface-section) calc(100% - 230px),
      rgb(228,213,187) calc(100% - 202px),
      rgb(210,194,169) calc(100% - 172px),
      rgb(178,160,137) calc(100% - 138px),
      rgb(154,135,113) calc(100% - 115px),
      rgb(131,110,89)  calc(100% - 92px),
      rgb(99,77,57)    calc(100% - 57px),
      rgb(80,57,38)    calc(100% - 28px),
      var(--surface-section-deep) 100%);
  }
  .products__inner { padding-top: 88px; padding-bottom: 230px; }
  /* overlap section boundaries by 1px to hide sub-pixel anti-alias hairlines
     (seam colors match exactly, so the overlap is invisible) */
  .products, .hours, .footer { margin-top: -1px; }
  .section-head { text-align: center; margin-bottom: 48px; }
  .section-head h2 {
    margin: 12px 0 0;
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--text-strong); letter-spacing: -0.01em;
  }
  .section-head .script { margin-top: 8px; }

  .product-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .product-card {
    display: flex; flex-direction: column;
    background: var(--surface-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-onCard);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--dur-base) var(--ease-rise),
                box-shadow var(--dur-base) var(--ease-soft);
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .product-card__media { padding: 0; position: relative; }
  .product-card__photo { width: 100%; height: auto; aspect-ratio: 5 / 4; display: block; border-radius: 0; }
  .product-card__badge { position: absolute; top: 14px; left: 14px; }
  .product-card__body {
    padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1;
  }
  .product-card__title {
    margin: 0; font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 1.5rem; color: var(--text-strong); letter-spacing: -0.01em;
  }
  .product-card__desc {
    margin: 0; font-size: 1rem; line-height: 1.55; color: var(--text-muted); flex: 1;
  }
  .product-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-top: 10px;
  }
  .product-card__price {
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 1.25rem; color: var(--caramel-500);
  }

  /* ---------- In-store menu / price list ---------- */
  .menu { margin-top: 84px; scroll-margin-top: 92px; }
  .menu__intro { text-align: center; margin-bottom: 36px; }
  .menu__intro h2 {
    margin: 12px 0 0; font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text-strong); letter-spacing: -0.01em;
  }
  .menu__intro .script { margin-top: 8px; }
  .menu__panel {
    background: var(--surface-card);
    border: 1px solid var(--border-onCard);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    padding: 44px 48px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px 56px;
  }
  .menu__col h3 {
    display: flex; align-items: center; gap: 10px; margin: 0 0 18px; padding-bottom: 14px;
    border-bottom: 1.5px solid var(--divider);
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 1.375rem; color: var(--text-strong); letter-spacing: -0.01em;
  }
  .menu__col h3 svg { color: var(--caramel-500); flex: none; }
  .menu__list { display: flex; flex-direction: column; gap: 15px; }
  .menu__item { display: flex; align-items: baseline; gap: 10px; }
  .menu__item .nm { font-family: var(--font-body); font-weight: var(--fw-semibold); color: var(--text-body); flex: none; white-space: nowrap; }
  .menu__item .lead { flex: 1 1 auto; min-width: 16px; border-bottom: 2px dotted var(--tan-300); transform: translateY(-5px); }
  .menu__item .pr { font-family: var(--font-display); font-weight: var(--fw-semibold); color: var(--caramel-500); white-space: nowrap; }
  .menu__note {
    margin: 22px 0 0; text-align: center;
    font-family: var(--font-body); font-size: var(--fs-body-sm); color: var(--text-muted);
  }

  /* ---------- Coup de cœur — featured best-seller ---------- */
  .feature {
    margin-top: 84px;
    display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
    background: var(--surface-card);
    border: 1px solid var(--border-onCard);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }
  .feature__media { position: relative; min-height: 400px; }
  .feature__photo {
    position: absolute !important; inset: 0;
    width: 100% !important; height: 100% !important; border-radius: 0 !important;
  }
  .feature__badge { position: absolute; top: 18px; left: 18px; z-index: 1; }
  .feature__body { padding: 44px 48px; display: flex; flex-direction: column; gap: 12px; align-self: center; }
  .feature__title { margin: 6px 0 0; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(1.8rem, 2.6vw, 2.4rem); color: var(--text-strong); letter-spacing: -0.01em; }
  .feature__desc { margin: 4px 0 0; font-size: var(--fs-body-lg); line-height: 1.6; color: var(--text-muted); max-width: 44ch; }
  .feature__foot { display: flex; align-items: baseline; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
  .feature__price { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1.6rem; color: var(--caramel-500); }
  .feature__meta { font-family: var(--font-body); font-size: var(--fs-body-sm); color: var(--text-muted); }

  /* ============================================================
     HOURS BAND
     ============================================================ */
  .hours {
    scroll-margin-top: 80px;
    background: linear-gradient(to bottom,
      var(--surface-section-deep) 0,
      var(--surface-section-deep) calc(100% - 230px),
      rgb(81,59,40)    calc(100% - 202px),
      rgb(102,81,64)   calc(100% - 172px),
      rgb(136,120,104) calc(100% - 138px),
      rgb(162,148,134) calc(100% - 115px),
      rgb(189,177,164) calc(100% - 92px),
      rgb(223,216,204) calc(100% - 57px),
      rgb(244,238,228) calc(100% - 28px),
      var(--surface-page) 100%);
    color: var(--text-on-dark);
  }
  .hours__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; padding-top: 88px; padding-bottom: 230px;
  }
  .hours__title {
    margin: 14px 0 0; font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(2rem, 3.4vw, 2.75rem); line-height: 1.12; color: var(--cream-100);
  }
  .hours__meta { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
  .hours__meta-item { display: flex; align-items: center; gap: 10px; color: var(--cream-200); }
  .hours__meta-item span { font-weight: var(--fw-semibold); }
  .hours__btn { margin-top: 30px; }

  .hours__card {
    background: rgba(251,246,236,0.06);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(224,184,119,0.28);
    padding: 34px 38px;
  }
  .hours__card-head {
    display: flex; align-items: center; gap: 10px; color: var(--honey-400); margin-bottom: 20px;
  }
  .hours__card-head span {
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 1.35rem; color: var(--cream-100); white-space: nowrap;
  }
  .hours__row {
    display: flex; justify-content: space-between; gap: 16px; padding: 14px 0;
    border-top: 1px solid rgba(224,184,119,0.18);
  }
  .hours__row:first-of-type { border-top: none; }
  .hours__row .day { font-weight: var(--fw-bold); color: var(--cream-100); white-space: nowrap; }
  .hours__row .time { color: var(--cream-200); font-weight: var(--fw-semibold); white-space: nowrap; }
  .hours__row .time.closed { color: var(--honey-400); }

  .hours__map {
    grid-column: 1 / -1;
    margin-top: 12px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(224,184,119,0.28);
    box-shadow: var(--shadow-lg);
    background: rgba(251,246,236,0.06);
  }
  .hours__map iframe {
    display: block; width: 100%; height: 340px; border: 0;
    filter: saturate(0.9);
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .footer { background: var(--surface-page); scroll-margin-top: 80px; }

  .footer__links {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
    padding-top: 72px; margin-top: 0;
  }
  .footer__about p { margin: 16px 0 0; max-width: 34ch; color: var(--text-muted); line-height: 1.6; }
  .footer__col h4 {
    margin: 0 0 14px; font-family: var(--font-body); font-weight: var(--fw-extrabold);
    font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--caramel-500);
  }
  .footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer__col a { text-decoration: none; color: var(--text-body); font-size: 1rem; }
  .footer__col a:hover { color: var(--caramel-500); }
  .footer__plain { color: var(--text-muted); font-size: 1rem; }
  .footer__signoff {
    margin-top: 14px;
    font-family: var(--font-script);
    font-size: 1.5rem; line-height: 1.1;
    color: var(--caramel-500);
  }
  .footer__bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 20px; padding-bottom: 36px; margin-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    color: var(--text-muted); font-size: 0.875rem;
  }

  /* ---------- image-slot warm placeholder skin ---------- */
  image-slot {
    --slot-bg: linear-gradient(140deg, var(--cream-200), var(--tan-200) 60%, var(--honey-300));
    background: var(--slot-bg);
    color: var(--brown-400);
    font-family: var(--font-body);
  }

  /* ============================================================
     ENTRANCE — intentionally none: content is always visible.
     (Hover/press transitions below are additive and safe.)
     ============================================================ */

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 940px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
    .hero__media { margin-top: 24px; max-width: 460px; }
    .hero-full { min-height: 540px; }
    .hero-full__inner { padding-top: 76px; padding-bottom: 76px; }
    .hero-full__chip { display: none; }
    .hours__inner { grid-template-columns: 1fr; gap: 36px; }
    .product-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .feature { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .feature__media { min-height: 300px; }
    .footer__links { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 940px) {
    .nav__links { display: none; }
    .nav__menu-btn { display: inline-flex; }
    .hero__small-wrap { left: -8px; }
    /* full-screen overlay menu: full width & height, centered links, fade + gentle rise */
    .nav__mobile {
      display: flex;
      position: fixed; inset: 0; z-index: 15;
      background: var(--surface-page);
      opacity: 0; visibility: hidden;
      transform: translateY(-8px);
      transition: opacity var(--dur-base) var(--ease-soft),
                  transform var(--dur-base) var(--ease-rise),
                  visibility 0s linear var(--dur-base);
    }
    .nav__mobile.is-open {
      opacity: 1; visibility: visible; transform: none;
      transition: opacity var(--dur-base) var(--ease-soft),
                  transform var(--dur-base) var(--ease-rise),
                  visibility 0s;
    }
  }
  @media (max-width: 940px) and (prefers-reduced-motion: reduce) {
    .nav__mobile { transform: none;
      transition: opacity var(--dur-fast) var(--ease-soft), visibility 0s linear var(--dur-fast); }
    .nav__mobile.is-open { transition: opacity var(--dur-fast) var(--ease-soft), visibility 0s; }
  }
  @media (max-width: 520px) {
    body { --container-pad: 1.25rem; }
    .logo__name { font-size: 22px; }
    .logo__tag { font-size: 14px; }
    .footer__links { grid-template-columns: 1fr; }
    .hero__cta .btn { flex: 1; }
  }

  /* ============================================================
     Entrance & scroll-reveal motion
     Honors the kit's motion philosophy: gentle, like dough
     settling. Hidden states apply ONLY when JS adds .has-reveal,
     so no-JS and reduced-motion always render fully visible.
     ============================================================ */
  body { --dur-reveal: 640ms; }

  /* generic scroll-reveal: fade + rise */
  .has-reveal .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-reveal) var(--ease-soft),
                transform var(--dur-reveal) var(--ease-rise);
    will-change: opacity, transform;
  }
  .has-reveal .reveal.is-in { opacity: 1; transform: none; }

  /* product cards rise in sequence, left to right */
  .has-reveal .product-grid .product-card:nth-child(1) { transition-delay: 0ms; }
  .has-reveal .product-grid .product-card:nth-child(2) { transition-delay: 90ms; }
  .has-reveal .product-grid .product-card:nth-child(3) { transition-delay: 180ms; }

  /* footer columns settle in sequence */
  .has-reveal .footer__links .reveal:nth-child(1) { transition-delay: 0ms; }
  .has-reveal .footer__links .reveal:nth-child(2) { transition-delay: 80ms; }
  .has-reveal .footer__links .reveal:nth-child(3) { transition-delay: 160ms; }

  /* hero: staggered entrance on load (it sits above the fold) */
  .has-reveal .hero--enter .hero__copy > *,
  .has-reveal .hero--enter .hero__media {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--dur-reveal) var(--ease-soft),
                transform var(--dur-reveal) var(--ease-rise);
    will-change: opacity, transform;
  }
  .has-reveal .hero--enter .hero__media { transform: translateY(20px) scale(0.985); }
  .hero--enter.is-in .hero__copy > *,
  .hero--enter.is-in .hero__media { opacity: 1; transform: none; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(1) { transition-delay: 80ms; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(2) { transition-delay: 150ms; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(3) { transition-delay: 220ms; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(4) { transition-delay: 290ms; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(5) { transition-delay: 360ms; }
  .has-reveal .hero--enter .hero__copy > *:nth-child(6) { transition-delay: 430ms; }
  .has-reveal .hero--enter .hero__media { transition-delay: 240ms; }

  /* nav eases down on first load */
  .has-reveal .nav { animation: nav-drop var(--dur-slow) var(--ease-rise) both; }
  @keyframes nav-drop {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: none; }
  }

  /* product photo: slow, gentle push-in on hover (clipped by the card) */
  .product-card__photo { transition: transform var(--dur-slow) var(--ease-soft); }
  .product-card:hover .product-card__photo,
  .product-card:focus-within .product-card__photo { transform: scale(1.05); }

  /* coup de cœur: same lift + slow photo push-in as the product cards */
  .feature {
    transition: transform var(--dur-base) var(--ease-rise),
                box-shadow var(--dur-base) var(--ease-soft);
  }
  .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .feature__photo { transition: transform var(--dur-slow) var(--ease-soft); }
  .feature:hover .feature__photo,
  .feature:focus-within .feature__photo { transform: scale(1.05); }

  @media (prefers-reduced-motion: reduce) {
    .has-reveal .reveal,
    .has-reveal .hero--enter .hero__copy > *,
    .has-reveal .hero--enter .hero__media {
      opacity: 1 !important; transform: none !important; transition: none !important;
    }
    .has-reveal .nav { animation: none; }
    .nav__links.pill-ready .nav__pill { transition: none; }
    .product-card:hover .product-card__photo,
    .product-card:focus-within .product-card__photo { transform: none; }
    .feature:hover .feature__photo,
    .feature:focus-within .feature__photo { transform: none; }
  }

  /* ============================================================
     SKELETON LOADING — slow-connection fallback
     A warm shimmer fills each media area until its real asset
     arrives. It is painted as the element BACKGROUND: the hero
     <video>s are transparent until they hold a frame, and the
     <image-slot> frame is translucent while its photo loads — so
     the sheen shows through, then the opaque media covers it.
     home.js adds .media-ready to each area when it finishes,
     which stops the shimmer (a JS failsafe guarantees it never
     shimmers forever).
     ============================================================ */
  @keyframes skeleton-sheen {
    from { background-position: 180% 0; }
    to   { background-position: -60% 0; }
  }
  .hero-full,
  .product-card__media,
  .feature__media {
    background-color: var(--tan-200);
    background-image: linear-gradient(100deg,
      rgba(253, 250, 243, 0) 28%,
      rgba(253, 250, 243, 0.55) 50%,
      rgba(253, 250, 243, 0) 72%);
    background-repeat: no-repeat;
    background-size: 180% 100%;
    animation: skeleton-sheen 1.7s ease-in-out infinite;
  }
  .hero-full.media-ready,
  .product-card__media.media-ready,
  .feature__media.media-ready {
    animation: none;
    background-image: none;
    background-color: transparent;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-full,
    .product-card__media,
    .feature__media { animation: none; }
  }
