@layer reset, base, components, sections, utilities, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 112px; }
  body, h1, h2, h3, p, blockquote, figure { margin: 0; }
  img { display: block; max-width: 100%; }
  button, input { font: inherit; }
  button { color: inherit; }
  a { color: inherit; text-decoration: none; }
  address { font-style: normal; }
  [hidden] { display: none !important; }
}

@layer base {
  :root {
    --cream: #fbf4e6;
    --ivory: #fffaf0;
    --paper: #f6ead4;
    --gold: #d89a38;
    --gold-light: #f3c977;
    --saffron: #c9781d;
    --pista: #778953;
    --rose: #bc7180;
    --chocolate: #2a140c;
    --brown: #5c3828;
    --muted: #78675d;
    --line: rgba(75, 45, 28, 0.14);
    --glass: rgba(255, 250, 240, 0.78);
    --serif: "Iowan Old Style", "Baskerville", Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow-sm: 0 12px 30px rgba(55, 31, 17, 0.09);
    --shadow-md: 0 30px 80px rgba(55, 31, 17, 0.15);
    --shadow-lg: 0 45px 110px rgba(55, 31, 17, 0.22);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 44px;
    --ease: cubic-bezier(.22, 1, .36, 1);
  }

  body {
    min-width: 320px;
    color: var(--chocolate);
    font-family: var(--sans);
    line-height: 1.6;
    background:
      radial-gradient(circle at 9% 8%, rgba(216, 154, 56, .13), transparent 28rem),
      radial-gradient(circle at 96% 24%, rgba(188, 113, 128, .1), transparent 30rem),
      var(--cream);
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: auto;
    text-rendering: optimizeLegibility;
  }

  body::before {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: .035;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  }

  body.menu-open { overflow: hidden; }
  h1, h2 { font-family: var(--serif); font-weight: 500; line-height: .94; letter-spacing: -.055em; text-wrap: balance; }
  h1 { font-size: clamp(4rem, 7.1vw, 7.9rem); }
  h2 { font-size: clamp(3rem, 5.6vw, 6.2rem); }
  h3 { font-family: var(--serif); font-size: 1.6rem; line-height: 1.05; }
  em { color: var(--saffron); font-weight: 500; }
  ::selection { color: var(--ivory); background: var(--brown); }
  :focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
}

@layer components {
  .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;
  }

  .icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
  .button-icon { width: 18px; height: 18px; flex: 0 0 auto; }

  .skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px;
    color: white; background: var(--chocolate); border-radius: 10px; transform: translateY(-160%);
  }
  .skip-link:focus { transform: none; }

  .cursor-glow {
    position: fixed; z-index: 1; width: 420px; height: 420px; pointer-events: none;
    border-radius: 50%; background: radial-gradient(circle, rgba(232, 174, 73, .12), transparent 67%);
    transform: translate(-50%, -50%); transition: opacity .25s; opacity: 0;
  }

  .section { width: min(calc(100% - 40px), 1240px); margin-inline: auto; padding-block: clamp(90px, 11vw, 160px); }
  .eyebrow { margin-bottom: 18px; color: var(--saffron); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
  .section-heading > div:first-child { max-width: 800px; }
  .section-heading > p { max-width: 410px; color: var(--muted); font-size: 1.05rem; }
  .section-heading.centered { display: block; max-width: 750px; margin-inline: auto; text-align: center; }
  .section-heading.centered p:last-child { max-width: 580px; margin: 22px auto 0; color: var(--muted); }
  .section-heading.compact { margin-bottom: 42px; }

  .button {
    position: relative; display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 18px;
    overflow: hidden; padding: 14px 24px; border: 1px solid transparent; border-radius: 999px;
    font-size: .86rem; font-weight: 800; letter-spacing: .02em; cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s, background .35s;
  }
  .button:hover { transform: translateY(-3px); }
  .button:disabled { cursor: not-allowed; opacity: .62; transform: none; }
  .button-primary { color: #fff; background: linear-gradient(135deg, #713812, var(--saffron)); box-shadow: 0 18px 36px rgba(137, 74, 23, .22), inset 0 1px rgba(255,255,255,.24); }
  .button-primary:hover { box-shadow: 0 24px 44px rgba(137, 74, 23, .3), inset 0 1px rgba(255,255,255,.3); }
  .button-call { color: #244b31; border-color: rgba(64, 109, 71, .2); background: linear-gradient(135deg, #e7f1dc, #c9dfbd); box-shadow: 0 16px 32px rgba(70, 111, 73, .15), inset 0 1px rgba(255,255,255,.72); }
  .button-call:hover { color: #173a25; box-shadow: 0 22px 38px rgba(70, 111, 73, .22), inset 0 1px rgba(255,255,255,.8); }
  .button-ghost { color: var(--chocolate); border-color: var(--line); background: rgba(255,255,255,.52); backdrop-filter: blur(12px); }
  .button .ripple-wave { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.35); transform: translate(-50%, -50%) scale(0); animation: ripple .65s ease-out; }
  @keyframes ripple { to { transform: translate(-50%, -50%) scale(18); opacity: 0; } }
  .text-link, .arrow-link { display: inline-flex; align-items: center; gap: 14px; font-size: .84rem; font-weight: 800; border-bottom: 1px solid currentColor; }
  .arrow-link { padding-bottom: 7px; }
  .arrow-link span { transition: transform .25s var(--ease); }
  .arrow-link:hover span { transform: translate(3px, -3px); }

  .reveal { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

@layer sections {
  .site-header { position: fixed; top: 0; right: 0; left: 0; z-index: 100; padding: 16px clamp(16px, 4vw, 58px); transition: transform .45s var(--ease); }
  .site-header.is-hidden { transform: translateY(-120%); }
  .nav-shell { display: flex; max-width: 1340px; height: 78px; align-items: center; justify-content: space-between; gap: 24px; margin: auto; padding: 10px 12px 10px 16px; border: 1px solid rgba(84,48,27,.12); border-radius: 24px; background: rgba(255,250,240,.8); box-shadow: 0 14px 40px rgba(65,37,20,.08); backdrop-filter: blur(22px) saturate(1.3); }
  .brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
  .brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 14px; background: #fffaf0; filter: drop-shadow(0 5px 8px rgba(52,29,15,.16)); }
  .brand strong, .brand small { display: block; line-height: 1.2; }
  .brand strong { font-family: var(--serif); font-size: 1.18rem; }
  .nav-links a[aria-current="page"] { color: var(--saffron); }
  .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
  .brand small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { position: relative; padding: 10px 12px; color: var(--brown); font-size: .78rem; font-weight: 750; }
  .nav-links .home-link { padding-inline: 16px; color: white; border-radius: 999px; background: var(--saffron); box-shadow: 0 7px 18px rgba(137,74,23,.18); }
  .nav-links .home-link:hover, .nav-links .home-link[aria-current="page"] { color: white; background: var(--chocolate); }
  .nav-links .home-link::after { display: none; }
  .nav-links a::after { position: absolute; right: 12px; bottom: 4px; left: 12px; height: 1px; content: ""; background: var(--saffron); transform: scaleX(0); transition: transform .25s; }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-order { display: inline-flex; min-height: 50px; align-items: center; gap: 16px; padding: 10px 19px; color: white; font-size: .78rem; font-weight: 800; border-radius: 16px; background: var(--chocolate); }
  .nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--chocolate); cursor: pointer; }
  .nav-toggle i { display: block; width: 19px; height: 1px; margin: 5px auto; background: white; transition: transform .25s; }

  .hero { position: relative; display: grid; width: min(calc(100% - 40px), 1340px); min-height: 820px; grid-template-columns: minmax(0, 1fr) minmax(470px, .86fr); align-items: center; gap: clamp(44px, 6vw, 100px); margin: 0 auto; padding: 150px 0 92px; overflow: clip; }
  .hero-copy { position: relative; z-index: 2; max-width: 760px; }
  .rating-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.5); box-shadow: var(--shadow-sm); }
  .rating-pill span { color: var(--gold); font-size: .7rem; letter-spacing: .08em; }
  .rating-pill strong { font-size: .82rem; }
  .rating-pill small { padding-left: 8px; color: var(--muted); border-left: 1px solid var(--line); font-size: .7rem; }
  .hero h1 { max-width: 760px; }
  .hero h1 em { display: block; }
  .hero-lede { max-width: 620px; margin: 30px 0 34px; color: var(--muted); font-family: var(--serif); font-size: clamp(1.14rem, 1.6vw, 1.4rem); line-height: 1.5; }
  .hero-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-primary-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .explore-button { min-height: 50px; }
  .trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
  .trust-row span { padding: 9px 14px; color: var(--muted); font-size: .72rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.34); }
  .trust-row b { color: var(--chocolate); }
  .hero-visual { position: relative; z-index: 2; min-width: 0; padding: 18px; transform-style: preserve-3d; transition: transform .25s ease-out; }
  .hero-image-wrap { position: relative; overflow: hidden; aspect-ratio: .78; border: 1px solid rgba(255,255,255,.72); border-radius: 46% 46% 34px 34px; background: var(--paper); box-shadow: var(--shadow-lg); }
  .hero-image-wrap::after { position: absolute; inset: 0; pointer-events: none; content: ""; background: linear-gradient(118deg, rgba(255,255,255,.28), transparent 27%, transparent 70%, rgba(82,40,18,.08)); }
  .hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
  .hero-visual:hover img { transform: scale(1.025); }
  .hero-glass-card, .happy-card { position: absolute; z-index: 4; padding: 17px 19px; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,250,240,.78); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); transform: translateZ(35px); }
  .hero-glass-card { right: -12px; bottom: 105px; }
  .hero-glass-card span, .hero-glass-card strong, .hero-glass-card small, .happy-card strong, .happy-card span { display: block; }
  .hero-glass-card span { color: var(--saffron); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .hero-glass-card strong { margin: 2px 0; font-family: var(--serif); font-size: 1.45rem; }
  .hero-glass-card small { color: var(--muted); font-size: .7rem; }
  .happy-card { top: 108px; left: -38px; }
  .happy-card strong { font-family: var(--serif); font-size: 1.5rem; }
  .happy-card span { color: var(--muted); font-size: .7rem; }
  .avatars { display: flex; margin-top: 9px; }
  .avatars i { display: grid; min-width: 29px; height: 29px; place-items: center; margin-left: -5px; padding-inline: 5px; color: white; font-size: .7rem; font-style: normal; font-weight: 800; border: 2px solid var(--ivory); border-radius: 50%; background: #526036; }
  .avatars i:first-child { margin-left: 0; background: #8f3d55; }
  .avatars i:nth-child(2) { background: #83500f; }
  .avatars i:last-child { background: var(--brown); }
  .ingredient { position: absolute; z-index: 3; display: grid; place-items: center; color: white; filter: drop-shadow(0 8px 10px rgba(50,28,15,.25)); animation: float 4s ease-in-out infinite; }
  .ingredient-pista { top: 17%; right: 12%; color: #708548; font-size: 2rem; }
  .ingredient-saffron { top: 47%; left: 6%; color: #b85a20; font-size: 2.3rem; animation-delay: -1s; }
  .ingredient-rose { right: 10%; bottom: 18%; color: #ba526d; font-size: 1.2rem; animation-delay: -2s; }
  @keyframes float { 50% { transform: translateY(-12px) rotate(8deg); } }
  .hero-orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(2px); pointer-events: none; }
  .orb-one { top: 105px; right: -150px; width: 470px; height: 470px; background: rgba(221,169,75,.12); }
  .orb-two { bottom: 40px; left: -250px; width: 500px; height: 500px; border: 1px solid rgba(129,83,45,.08); }
  .scroll-cue { position: absolute; bottom: 26px; left: 0; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
  .scroll-cue span { position: relative; width: 26px; height: 38px; border: 1px solid var(--line); border-radius: 999px; }
  .scroll-cue span::after { position: absolute; top: 8px; left: 50%; width: 3px; height: 7px; content: ""; border-radius: 99px; background: var(--saffron); animation: scroll-dot 1.7s infinite; }
  @keyframes scroll-dot { to { transform: translate(-50%, 14px); opacity: 0; } from { transform: translateX(-50%); } }

  .marquee { overflow: hidden; padding: 18px 0; color: var(--cream); background: var(--chocolate); transform: rotate(-1.2deg) scale(1.03); }
  .marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
  .marquee span { display: flex; align-items: center; gap: 30px; padding-right: 30px; font-family: var(--serif); font-size: 1.12rem; font-style: italic; white-space: nowrap; }
  .marquee i { color: var(--gold); font-size: .72rem; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  .bestsellers { padding-top: 150px; }
  .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .feature-product { min-width: 0; padding: 10px 10px 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,250,240,.62); box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .feature-product:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); }
  .product-photo { position: relative; overflow: hidden; aspect-ratio: .88; border-radius: 20px; background: var(--paper); }
  .product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
  .feature-product:hover .product-photo img { transform: scale(1.06); }
  .mango-focus img { object-position: 32% center; }
  .rose-focus img { object-position: 83% center; }
  .product-ribbon { position: absolute; top: 15px; left: 15px; padding: 7px 10px; color: white; font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; background: var(--saffron); box-shadow: var(--shadow-sm); }
  .product-ribbon.season-tag { background: var(--pista); }
  .product-ribbon.rose { background: var(--rose); }
  .favourite { position: absolute; top: 13px; right: 13px; display: grid; width: 38px; height: 38px; place-items: center; color: var(--brown); font-size: 1.3rem; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(255,250,240,.75); backdrop-filter: blur(10px); cursor: pointer; }
  .favourite.is-active { color: white; background: var(--rose); }
  .quick-view { position: absolute; right: 13px; bottom: 13px; left: 13px; display: flex; min-height: 46px; align-items: center; justify-content: space-between; padding: 10px 15px; color: white; font-size: .75rem; font-weight: 800; border: 0; border-radius: 14px; background: rgba(42,20,12,.84); backdrop-filter: blur(12px); cursor: pointer; opacity: 0; transform: translateY(10px); transition: .3s var(--ease); }
  .feature-product:hover .quick-view, .quick-view:focus-visible { opacity: 1; transform: none; }
  .product-info { display: flex; align-items: end; justify-content: space-between; gap: 15px; padding: 20px 8px 14px; }
  .product-info p { margin-bottom: 4px; color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
  .product-info h3 { font-size: 1.75rem; }
  .price { flex-shrink: 0; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; }
  .price small { color: var(--muted); font-family: var(--sans); font-size: .7rem; font-weight: 500; }
  .product-meta { display: flex; align-items: center; gap: 11px; padding: 0 8px; color: var(--muted); font-size: .7rem; }
  .available { color: var(--pista); font-weight: 800; }
  .available::before { display: inline-block; width: 6px; height: 6px; margin-right: 5px; content: ""; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(119,137,83,.12); }
  .popularity { overflow: hidden; width: 42px; height: 3px; margin-left: auto; border-radius: 9px; background: var(--line); }
  .popularity i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--rose)); }

  .story { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); align-items: center; gap: clamp(54px, 9vw, 130px); }
  .story-photo { position: relative; padding: 18px 0 0 18px; }
  .story-photo::before { position: absolute; inset: 0 28px 28px 0; z-index: -1; content: ""; border: 1px solid var(--gold); border-radius: 240px 240px 24px 24px; }
  .story-photo img { width: 100%; aspect-ratio: .78; object-fit: cover; border-radius: 230px 230px 20px 20px; box-shadow: var(--shadow-md); }
  .year-stamp { position: absolute; right: -22px; bottom: 46px; display: grid; width: 126px; height: 126px; place-content: center; color: var(--cream); text-align: center; border: 1px solid var(--gold); border-radius: 50%; background: var(--chocolate); box-shadow: var(--shadow-md); transform: rotate(7deg); }
  .year-stamp span, .year-stamp small { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
  .year-stamp strong { font-family: var(--serif); font-size: 2rem; line-height: 1; }
  .story-lede { margin: 30px 0 18px; color: var(--brown); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.45; }
  .story-copy > p:not(.eyebrow, .story-lede) { color: var(--muted); }
  .story-copy blockquote { margin: 32px 0; padding-left: 20px; color: var(--saffron); font-family: var(--serif); font-size: 1.35rem; font-style: italic; line-height: 1.4; border-left: 2px solid var(--gold); }

  .ingredients { position: relative; width: min(calc(100% - 40px), 1340px); padding: clamp(54px, 7vw, 90px); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,250,240,.88), rgba(240,220,182,.65)); box-shadow: var(--shadow-md); }
  .ingredient-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .ingredient-grid article { min-width: 0; padding: 20px 15px; border-right: 1px solid var(--line); }
  .ingredient-grid article:last-child { border: 0; }
  .ingredient-grid article > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 24px; color: var(--saffron); font-size: 1.35rem; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.45); }
  .ingredient-grid h3 { margin-bottom: 9px; font-size: 1.3rem; }
  .ingredient-grid p { color: var(--muted); font-size: .75rem; line-height: 1.6; }

  .full-menu { width: min(calc(100% - 40px), 1160px); }
  .filter-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
  .filter-btn { padding: 11px 16px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.4); cursor: pointer; transition: .25s; }
  .filter-btn:hover, .filter-btn.active { color: white; background: var(--chocolate); }
  .diabetic-note { display: flex; align-items: center; gap: 13px; margin: 0 0 24px; padding: 14px 17px; color: #244b31; border: 1px solid rgba(64,109,71,.18); border-radius: 16px; background: linear-gradient(135deg, #e7f1dc, #d5e6ca); }
  .diabetic-note > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; color: white; font-weight: 900; border-radius: 50%; background: var(--pista); }
  .diabetic-note strong, .diabetic-note small { display: block; }
  .diabetic-note strong { font-family: var(--serif); font-size: 1.08rem; }
  .diabetic-note small { color: #64705c; font-size: .7rem; }
  .menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .menu-card { display: grid; width: 100%; grid-template-columns: 70px 1fr auto; align-items: center; gap: 20px; min-height: 124px; padding: 16px 22px 16px 16px; color: inherit; font: inherit; text-align: left; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,250,240,.55); cursor: pointer; transition: transform .3s var(--ease), background .3s; }
  .menu-card:hover { background: var(--ivory); transform: translateX(5px); }
  .menu-card.is-hidden { display: none; }
  .menu-swatch { display: block; width: 68px; height: 86px; border-radius: 50% 50% 20px 20px; background: linear-gradient(135deg,#f0d598,#b77b2e); box-shadow: inset -12px -14px 20px rgba(65,34,16,.13), 0 12px 22px rgba(65,34,16,.12); }
  .menu-swatch.malai { background: linear-gradient(135deg,#fff4cf,#dec382); }
  .menu-swatch.kesar, .menu-swatch.kesar-pista { background: linear-gradient(135deg,#f8d24f,#cd7b1d); }
  .menu-swatch.mango { background: linear-gradient(135deg,#ffc82f,#e38d19); }
  .menu-swatch.strawberry { background: linear-gradient(135deg,#f2b0b6,#c94863); }
  .menu-swatch.sugarcane { background: linear-gradient(135deg,#d8e5a6,#7f9946); }
  .menu-swatch.chiku { background: linear-gradient(135deg,#d7a269,#84502e); }
  .menu-swatch.rose { background: linear-gradient(135deg,#efb0b8,#b85f74); }
  .menu-swatch.chocolate { background: linear-gradient(135deg,#8a4e31,#32170f); }
  .menu-swatch.falooda { background: linear-gradient(180deg,#f1c784 0 50%,#c46f83 50%); }
  .menu-swatch.matka { height: 68px; border-radius: 50% 50% 38% 38%; background: linear-gradient(135deg,#d9914f,#7b3e24); }
  .menu-swatch.pack { height: 58px; border-radius: 14px; background: linear-gradient(135deg,#9aa46b,#d19533); }
  .menu-thumb { display: block; width: 68px; height: 86px; object-fit: cover; border-radius: 18px; box-shadow: 0 12px 22px rgba(65,34,16,.12); }
  .menu-card > span { min-width: 0; }
  .menu-card small { display: block; color: var(--saffron); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .menu-card h3, .menu-card b { display: block; margin: 2px 0 5px; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; line-height: 1.05; }
  .menu-card p, .menu-card em { display: block; overflow: hidden; color: var(--muted); font-size: .73rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
  .menu-card > strong { font-family: var(--serif); font-size: 1.5rem; }

  .seasonal { display: grid; width: min(calc(100% - 40px), 1340px); grid-template-columns: 1.05fr .95fr; min-height: 650px; padding: 0; overflow: hidden; border-radius: var(--radius-lg); background: #efe0c7; box-shadow: var(--shadow-lg); }
  .seasonal-photo { min-height: 600px; }
  .seasonal-photo img { width: 100%; height: 100%; object-fit: cover; }
  .seasonal-copy { position: relative; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(45px, 6vw, 90px); background: radial-gradient(circle at 100% 0, rgba(193,112,125,.14), transparent 55%); }
  .seasonal-copy h2 { margin-bottom: 26px; }
  .seasonal-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 32px; color: var(--muted); }
  .limited-tag { position: absolute; top: 28px; right: 28px; padding: 8px 11px; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-radius: 99px; background: var(--rose); }
  .seasonal-price { display: flex; align-items: end; gap: 9px; margin-bottom: 32px; }
  .seasonal-price strong { color: var(--saffron); font-family: var(--serif); font-size: 3.2rem; line-height: .8; }
  .seasonal-price span { color: var(--muted); font-size: .7rem; }

  .process { width: min(calc(100% - 40px), 1340px); }
  .process-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .process-line { position: absolute; top: 65px; right: 10%; left: 10%; height: 1px; background: var(--line); }
  .process-line i { display: block; width: 0; height: 100%; background: var(--gold); transition: width 1.8s var(--ease); }
  .process-line.is-visible i { width: 100%; }
  .process-step { position: relative; z-index: 1; text-align: center; }
  .process-step > span { color: var(--saffron); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
  .process-icon { display: grid; width: 84px; height: 84px; place-items: center; margin: 20px auto; color: var(--saffron); font-size: 1.6rem; border: 1px solid var(--gold); border-radius: 50%; background: var(--cream); box-shadow: 0 0 0 10px var(--cream); }
  .process-step h3 { margin-bottom: 9px; font-size: 1.3rem; }
  .process-step p { color: var(--muted); font-size: .72rem; }

  .numbers { display: grid; grid-template-columns: repeat(4, 1fr); padding: clamp(60px, 8vw, 100px) max(20px, calc((100vw - 1240px) / 2)); color: var(--cream); background: var(--chocolate); }
  .numbers div { text-align: center; border-right: 1px solid rgba(255,255,255,.13); }
  .numbers div:last-child { border: 0; }
  .numbers strong, .numbers span { display: block; }
  .numbers strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.4rem); line-height: 1; }
  .numbers span { margin-top: 10px; color: rgba(255,255,255,.62); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

  .google-score { display: flex; flex-shrink: 0; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.5); }
  .google-score > span { display: grid; width: 34px; height: 34px; place-items: center; color: #4285f4; font-weight: 900; border-radius: 50%; background: white; }
  .google-score > strong { font-family: var(--serif); font-size: 1.8rem; }
  .google-score div > b, .google-score div > small { display: block; }
  .google-score b, .stars { color: var(--gold); font-size: .72rem; letter-spacing: .08em; }
  .google-score small { color: var(--muted); font-size: .7rem; }
  .review-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
  .review-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,250,240,.66); box-shadow: var(--shadow-sm); }
  .review-card:nth-child(3) { grid-column: 2; }
  .featured-review { grid-row: span 2; display: flex; justify-content: center; flex-direction: column; min-height: 480px; padding: clamp(40px, 6vw, 72px); background: linear-gradient(145deg, #efe0bf, #f7ecd8); }
  .quote { position: absolute; top: 20px; right: 38px; color: rgba(180,115,36,.15); font-family: var(--serif); font-size: 9rem; line-height: 1; }
  .review-card blockquote { margin: 20px 0 30px; font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; }
  .featured-review blockquote { max-width: 630px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer > span { display: grid; width: 42px; height: 42px; place-items: center; color: white; font-size: .7rem; font-weight: 800; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--brown)); }
  .reviewer strong, .reviewer small { display: block; }
  .reviewer strong { font-size: .78rem; }
  .reviewer small { color: var(--muted); font-size: .7rem; }
  .review-cta { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
  .review-cta h3 { margin-bottom: 12px; }
  .review-cta > p:not(.eyebrow) { margin-bottom: 22px; color: var(--muted); }
  .review-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 18px; }
  .review-actions .button { min-height: 48px; padding: 11px 18px; font-size: .76rem; }

  .gifting { width: min(calc(100% - 40px), 1340px); }
  .occasion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .occasion-card { position: relative; display: flex; min-height: 500px; align-items: flex-start; justify-content: flex-end; flex-direction: column; overflow: hidden; padding: clamp(35px,5vw,60px); color: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); isolation: isolate; }
  .occasion-card::before, .occasion-card::after { position: absolute; inset: 0; z-index: -2; content: ""; transition: transform .8s var(--ease); }
  .occasion-card::after { z-index: -1; background: linear-gradient(180deg, transparent 15%, rgba(42,20,12,.87) 100%); }
  .occasion-card.gift::before { background: linear-gradient(145deg, rgba(188,113,128,.55), rgba(90,44,28,.8)), url("assets/images/kulfi-strawberry-v2-800.avif") center / cover; }
  .occasion-card.catering::before { background: linear-gradient(145deg, rgba(161,112,35,.35), rgba(55,29,15,.78)), url("assets/images/kulfi-kesar-pista-v2-800.avif") center / cover; }
  .occasion-card:hover::before { transform: scale(1.04); }
  .occasion-card > span { margin-bottom: auto; padding: 8px 12px; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; backdrop-filter: blur(12px); }
  .occasion-card h3 { max-width: 430px; margin-bottom: 14px; color: white; font-size: clamp(2.1rem, 4vw, 4rem); }
  .occasion-card p { max-width: 450px; margin-bottom: 24px; color: rgba(255,255,255,.73); }
  .occasion-card a { padding-bottom: 5px; font-size: .78rem; font-weight: 800; border-bottom: 1px solid currentColor; }

  .gallery { width: min(calc(100% - 40px), 1340px); }
  .gallery-note { align-self: end; color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 14px; }
  .gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: var(--paper); cursor: zoom-in; }
  .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 var(--ease), filter .4s; }
  .gallery-item:nth-child(2) img { object-position: 60% center; }
  .gallery-item:nth-child(3) img { object-position: 75% center; }
  .gallery-item span { position: absolute; right: 14px; bottom: 14px; padding: 9px 12px; color: white; font-size: .7rem; font-weight: 800; border-radius: 99px; background: rgba(42,20,12,.72); backdrop-filter: blur(10px); opacity: 0; transform: translateY(8px); transition: .3s; }
  .gallery-item:hover img { transform: scale(1.05); filter: saturate(1.07); }
  .gallery-item:hover span { opacity: 1; transform: none; }

  .film { width: min(calc(100% - 40px), 1120px); padding-top: 20px; }
  .film-frame { position: relative; overflow: hidden; min-height: 630px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
  .film-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(42,20,12,.75), rgba(42,20,12,.12)); }
  .film-frame > img, .film-frame > video { display: block; width: 100%; height: 630px; object-fit: cover; }
  .film-frame > img { animation: cinematic 14s ease-in-out infinite alternate; }
  @keyframes cinematic { to { transform: scale(1.08) translateX(2%); } }
  .film-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(35px,7vw,90px); color: white; }
  .film-overlay h2 { max-width: 600px; color: white; }
  .play-button { display: inline-flex; align-items: center; gap: 13px; margin-top: 35px; font-size: .78rem; font-weight: 800; }
  .play-button span { display: grid; width: 58px; height: 58px; place-items: center; padding-left: 3px; color: var(--chocolate); border-radius: 50%; background: white; box-shadow: 0 0 0 9px rgba(255,255,255,.16); }

  .faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 10vw, 150px); }
  .faq-intro { position: sticky; top: 130px; align-self: start; }
  .faq-intro > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }
  .faq-list details { border-bottom: 1px solid var(--line); }
  .faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 25px 0; font-family: var(--serif); font-size: 1.4rem; cursor: pointer; list-style: none; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary span { font-family: var(--sans); font-weight: 300; transition: transform .3s; }
  .faq-list details[open] summary span { transform: rotate(45deg); }
  .faq-list details p { max-width: 720px; padding: 0 45px 25px 0; color: var(--muted); }

  .visit { display: grid; width: min(calc(100% - 40px), 1340px); grid-template-columns: .88fr 1.12fr; gap: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #eee0c7; box-shadow: var(--shadow-md); }
  .visit-details { padding: clamp(45px,6vw,86px); }
  .visit-details > .eyebrow { margin-bottom: 10px; }
  .store-status { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 25px; padding: 7px 11px; color: #355d3c; font-size: .7rem; font-weight: 800; border: 1px solid rgba(69,111,73,.2); border-radius: 999px; background: rgba(237,247,225,.72); }
  .store-status i { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #3d8a4a; box-shadow: 0 0 0 4px rgba(61,138,74,.12); }
  .store-status[data-open="unknown"] { color: var(--brown); border-color: var(--line); background: rgba(255,250,240,.58); }
  .store-status[data-open="unknown"] i { background: var(--gold); box-shadow: 0 0 0 4px rgba(216,154,56,.12); }
  .store-status[data-open="false"] { color: #7a4b2b; border-color: rgba(151,95,47,.2); background: rgba(249,231,204,.68); }
  .store-status[data-open="false"] i { background: #b66d30; box-shadow: 0 0 0 4px rgba(182,109,48,.12); }
  .visit-details address { margin: 30px 0; color: var(--brown); font-family: var(--serif); font-size: 1.22rem; line-height: 1.55; }
  .visit-details address b { display: block; margin-bottom: 5px; color: var(--saffron); font-family: var(--sans); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
  .address-list { display: grid; gap: 15px; margin: 30px 0; }
  .address-list address { margin: 0; padding: 17px 19px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,250,240,.5); }
  .visit-meta { display: grid; gap: 13px; margin-bottom: 35px; }
  .visit-meta div { padding-bottom: 13px; border-bottom: 1px solid var(--line); }
  .visit-meta small, .visit-meta strong, .visit-meta a { display: block; }
  .visit-meta small { margin-bottom: 2px; color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
  .visit-meta strong, .visit-meta a { font-size: .82rem; }
  .visit-actions { display: flex; flex-wrap: wrap; gap: 10px; }
  .visit-actions .button { min-height: 52px; padding-inline: 20px; font-size: .78rem; }
  .location-tip { display: flex; align-items: flex-start; gap: 9px; margin-top: 23px; color: var(--muted); font-size: .72rem; line-height: 1.55; }
  .location-tip span { color: var(--saffron); font-size: 1rem; line-height: 1.2; }
  .map-wrap { position: relative; min-height: 720px; background: #d8ccb7; }
  .map-wrap iframe { width: 100%; height: 100%; min-height: 720px; border: 0; filter: sepia(.12) saturate(.72) contrast(.96); }
  .map-pin { position: absolute; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 10px; padding: 10px 15px 10px 10px; border: 1px solid rgba(255,255,255,.65); border-radius: 16px; background: rgba(255,250,240,.88); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
  .map-pin img { width: 46px; height: 46px; object-fit: cover; border-radius: 11px; }
  .map-pin strong, .map-pin small { display: block; }
  .map-pin strong { font-family: var(--serif); }
  .map-pin small { color: var(--pista); font-size: .7rem; }
  .map-pin small[data-open="false"] { color: #9a6134; }

  .newsletter { display: grid; width: min(calc(100% - 40px), 1340px); grid-template-columns: 1fr .95fr; align-items: center; gap: clamp(50px,8vw,120px); margin-block: 140px; padding: clamp(45px,6vw,80px); color: var(--cream); border-radius: var(--radius-lg); background: var(--chocolate); box-shadow: var(--shadow-lg); }
  .newsletter h2 { font-size: clamp(2.8rem,4.5vw,5rem); }
  .contact-email-copy { margin-top: 24px; color: rgba(255,255,255,.62); }
  .contact-email-copy a { color: var(--gold-light); font-weight: 750; border-bottom: 1px solid currentColor; }
  .newsletter-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .newsletter-form label { display: block; }
  .newsletter-form .form-label { display: block; margin: 0 0 6px 4px; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 750; }
  .newsletter-form .form-label small { color: rgba(255,255,255,.55); font-size: inherit; font-weight: 500; }
  .newsletter-form input, .newsletter-form textarea { width: 100%; min-height: 56px; padding: 14px 17px; color: white; font: inherit; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(255,255,255,.07); outline: 0; resize: vertical; }
  .newsletter-form input:focus, .newsletter-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,154,56,.16); }
  .newsletter-form input::placeholder, .newsletter-form textarea::placeholder { color: rgba(255,255,255,.48); }
  .newsletter-form .wide-field { grid-column: span 2; }
  .newsletter-form .website-field { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
  .newsletter-form button, .newsletter-form small { grid-column: span 2; }
  .newsletter-form small { color: rgba(255,255,255,.68); font-size: .7rem; }
  .newsletter-form .form-response.is-success { color: #bdddac; }
  .newsletter-form .form-response.is-error { color: #ffb9b5; }
  .email-fallback { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.07); }
  .email-fallback h3 { margin-bottom: 12px; color: white; font-size: 1.8rem; }
  .email-fallback p { margin-bottom: 22px; color: rgba(255,255,255,.7); }
  .email-fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; }
  .email-fallback .button-ghost { color: white; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); }

  .footer { padding: 80px max(20px, calc((100vw - 1240px) / 2)) 28px; color: rgba(255,255,255,.72); background: #1c0e09; }
  .footer-top { display: grid; grid-template-columns: 1.6fr .7fr .7fr 1fr; gap: 60px; padding-bottom: 70px; }
  .footer .brand img { width: 64px; height: 64px; }
  .footer .brand strong { color: white; }
  .footer .brand small { color: rgba(255,255,255,.5); }
  .footer-brand > p { max-width: 310px; margin: 24px 0; color: rgba(255,255,255,.52); }
  .socials { display: flex; gap: 9px; }
  .socials a { display: grid; width: 38px; height: 38px; place-items: center; font-size: .7rem; font-weight: 800; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
  .socials a:hover { color: var(--chocolate); background: var(--gold-light); }
  .footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-column h3 { margin-bottom: 12px; color: white; font-size: 1.2rem; }
  .footer-column a, .footer-column p { color: rgba(255,255,255,.54); font-size: .75rem; }
  .footer-column a:hover { color: var(--gold-light); }
  .footer-contact p { margin-bottom: 10px; }
  .footer-contact strong { color: white; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: rgba(255,255,255,.58); font-size: .7rem; border-top: 1px solid rgba(255,255,255,.1); }

  .floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: grid; gap: 8px; }
  .floating-actions a { position: relative; display: grid; width: 48px; height: 48px; place-items: center; color: white; font-size: .7rem; font-weight: 900; border-radius: 50%; box-shadow: var(--shadow-md); transition: transform .3s var(--ease); }
  .floating-actions a:hover { transform: translateY(-4px); }
  .float-call { background: var(--chocolate); }
  .float-wa { background: #227d4b; animation: wa-pulse 2.5s infinite; }
  @keyframes wa-pulse { 50% { box-shadow: 0 0 0 9px rgba(34,125,75,0), var(--shadow-md); } 0% { box-shadow: 0 0 0 0 rgba(34,125,75,.25), var(--shadow-md); } }
  .unread { position: absolute; top: -3px; right: -2px; display: grid; width: 20px; height: 20px; place-items: center; font-size: .7rem; border: 2px solid var(--cream); border-radius: 50%; background: #d54b42; }
  .back-to-top { background: var(--saffron); opacity: 0; pointer-events: none; transform: translateY(10px); }
  .back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-order { display: none; }

  dialog { color: var(--chocolate); border: 0; }
  dialog::backdrop { background: rgba(28,14,9,.72); backdrop-filter: blur(8px); }
  .product-dialog { position: relative; width: min(900px, calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; overflow: hidden; border-radius: 28px; background: var(--cream); box-shadow: var(--shadow-lg); }
  .product-dialog[open] { display: grid; grid-template-columns: 1fr 1fr; animation: dialog-in .4s var(--ease); }
  @keyframes dialog-in { from { opacity: 0; transform: translateY(25px) scale(.98); } }
  .dialog-photo { min-height: 520px; }
  .dialog-photo img { width: 100%; height: 100%; object-fit: cover; }
  .dialog-copy { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: 55px; }
  .dialog-copy h2 { margin-bottom: 22px; font-size: 3.7rem; }
  .dialog-copy > p:not(.eyebrow) { margin-bottom: 25px; color: var(--muted); }
  .dialog-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .dialog-facts span { padding: 8px 10px; color: var(--muted); font-size: .7rem; border: 1px solid var(--line); border-radius: 99px; }
  .dialog-copy > strong { margin-bottom: 28px; color: var(--saffron); font-family: var(--serif); font-size: 2rem; }
  .dialog-close { position: absolute; top: 13px; right: 13px; z-index: 4; display: grid; width: 42px; height: 42px; place-items: center; color: var(--chocolate); font-size: 1.6rem; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,250,240,.86); backdrop-filter: blur(10px); cursor: pointer; }
  .lightbox { width: min(1040px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 10px; overflow: hidden; border-radius: 26px; background: var(--cream); }
  .lightbox img { width: 100%; max-height: calc(100vh - 48px); object-fit: contain; border-radius: 18px; }
  .toast { position: fixed; bottom: 26px; left: 50%; z-index: 300; padding: 12px 18px; color: white; font-size: .75rem; font-weight: 800; border-radius: 99px; background: var(--chocolate); box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .3s var(--ease); }
  .toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
}

@layer responsive {
  @media (max-width: 1100px) {
    .nav-toggle { display: block; margin-left: auto; }
    .nav-links { position: fixed; top: 100px; right: 16px; left: 16px; display: flex; align-items: stretch; flex-direction: column; padding: 15px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,240,.98); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s var(--ease); }
    .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-links a { padding: 13px; text-align: center; }
    .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
    .hero { grid-template-columns: 1fr .85fr; gap: 35px; }
    .hero h1 { font-size: clamp(4rem, 7.6vw, 6.5rem); }
    .happy-card { left: -15px; }
    .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
    .ingredient-grid article:nth-child(3) { border-right: 0; }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1.4fr repeat(3,1fr); gap: 32px; }
  }

  @media (max-width: 850px) {
    .section { width: min(calc(100% - 28px), 700px); padding-block: 90px; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 24px; }
    .site-header { padding: 11px; }
    .nav-shell { height: 70px; border-radius: 20px; }
    .nav-toggle { display: block; margin-left: auto; }
    .nav-order { display: none; }
    .nav-links { position: fixed; top: 90px; right: 11px; left: 11px; display: flex; align-items: stretch; flex-direction: column; padding: 15px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,240,.97); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s var(--ease); }
    .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-links a { padding: 13px; text-align: center; }
    .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
    .hero { display: block; width: min(calc(100% - 28px), 700px); padding: 130px 0 90px; }
    .hero-copy { margin-bottom: 52px; }
    .hero-visual { width: min(100%, 560px); margin-inline: auto; }
    .hero-image-wrap { aspect-ratio: .84; }
    .scroll-cue { display: none; }
    .marquee { transform: none; }
    .feature-grid { display: flex; width: 100%; gap: 16px; overflow-x: auto; padding: 0 0 24px; margin-inline: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .feature-product { min-width: min(78vw, 410px); scroll-snap-align: center; }
    .quick-view { opacity: 1; transform: none; }
    .story { grid-template-columns: 1fr; }
    .story-photo { width: min(88%, 500px); }
    .ingredients { width: min(calc(100% - 28px), 700px); padding: 36px; }
    .ingredient-grid { grid-template-columns: 1fr 1fr; }
    .ingredient-grid article:nth-child(3) { border-right: 1px solid var(--line); }
    .ingredient-grid article:nth-child(2n) { border-right: 0; }
    .menu-grid { grid-template-columns: 1fr; }
    .seasonal { width: min(calc(100% - 28px), 700px); grid-template-columns: 1fr; }
    .seasonal-photo { min-height: 440px; }
    .seasonal-copy { min-height: 530px; }
    .process-track { grid-template-columns: 1fr 1fr; }
    .process-line { display: none; }
    .process-step:last-child { width: 50%; grid-column: 1 / -1; justify-self: center; }
    .numbers { grid-template-columns: 1fr 1fr; gap: 50px 0; }
    .numbers div:nth-child(2) { border: 0; }
    .review-grid { grid-template-columns: 1fr; }
    .review-card:nth-child(3) { grid-column: auto; }
    .featured-review { grid-row: auto; min-height: 420px; }
    .occasion-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.wide { grid-column: span 1; }
    .film { width: min(calc(100% - 28px), 700px); }
    .film-frame, .film-frame > img, .film-frame > video { min-height: 520px; height: 520px; }
    .faq { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
    .visit { width: min(calc(100% - 28px), 700px); grid-template-columns: 1fr; }
    .map-wrap, .map-wrap iframe { min-height: 480px; }
    .newsletter { width: min(calc(100% - 28px), 700px); grid-template-columns: 1fr; margin-block: 90px; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
  }

  @media (max-width: 560px) {
    html { font-size: 17px; scroll-padding-top: 90px; }
    body { --muted: #66564e; padding-bottom: 66px; }
    body::before { display: none; }
    h1, h2 { line-height: .98; letter-spacing: -.035em; }
    h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
    h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .reveal { transform: none; transition: opacity .45s ease; }
    .section { padding-block: 74px; }
    .section-heading { margin-bottom: 35px; }
    .nav-shell, .mobile-order { backdrop-filter: none; }
    .nav-shell { background: rgba(255,250,240,.97); }
    .brand img { width: 42px; height: 42px; }
    .brand strong { font-size: 1.05rem; }
    .brand small { font-size: .75rem; letter-spacing: .055em; }
    .hero { padding-top: 115px; }
    .rating-pill { margin-bottom: 20px; }
    .hero-lede { margin: 23px 0 27px; }
    .hero-primary-actions { display: grid; width: 100%; grid-template-columns: 1.3fr .7fr; gap: 8px; }
    .hero-primary-actions .button { width: 100%; gap: 8px; padding-inline: 12px; font-size: .76rem; }
    .hero-actions > .explore-button { width: 100%; }
    .trust-row { gap: 7px; margin-top: 27px; }
    .trust-row span { flex: 1; min-width: 95px; padding-inline: 8px; text-align: center; }
    .hero-visual { padding-inline: 0; }
    .hero-image-wrap { border-radius: 170px 170px 24px 24px; }
    .happy-card { top: 30px; left: -5px; }
    .hero-glass-card { right: -5px; bottom: 24px; }
    .hero-glass-card, .happy-card { padding: 12px 14px; }
    .bestsellers { padding-top: 105px; }
    .feature-product { min-width: 86vw; }
    .product-meta { flex-wrap: wrap; }
    .story { gap: 55px; }
    .story-photo { width: 92%; }
    .year-stamp { right: -18px; width: 105px; height: 105px; }
    .ingredients { padding: 30px 20px; border-radius: 30px; }
    .ingredient-grid { gap: 0; }
    .ingredient-grid article { padding: 18px 12px; }
    .ingredient-grid article > span { margin-bottom: 15px; }
    .menu-card { grid-template-columns: 58px 1fr auto; gap: 13px; padding: 12px; }
    .menu-swatch, .menu-thumb { width: 54px; height: 72px; }
    .menu-card h3, .menu-card b { font-size: 1.3rem; }
    .menu-card p, .menu-card em { display: none; }
    .seasonal-photo { min-height: 360px; }
    .seasonal-copy { min-height: 540px; padding: 55px 25px 35px; }
    .limited-tag { top: 17px; right: 17px; }
    .process-track { gap: 40px 15px; }
    .process-icon { width: 68px; height: 68px; }
    .process-step p { font-size: .75rem; }
    .numbers { padding-block: 60px; }
    .numbers strong { font-size: 3rem; }
    .numbers span { font-size: .75rem; }
    .review-card, .featured-review { min-height: auto; padding: 28px; }
    .featured-review blockquote { font-size: 1.55rem; }
    .google-score { margin-top: 25px; }
    .occasion-card { min-height: 450px; padding: 28px; border-radius: 30px; }
    .gallery-grid { grid-auto-rows: 210px; gap: 9px; }
    .gallery-item { border-radius: 15px; }
    .gallery-item.tall { grid-row: span 1; }
    .film-frame, .film-frame > img, .film-frame > video { min-height: 490px; height: 490px; }
    .film-overlay { padding: 28px; }
    .faq-list summary { font-size: 1.2rem; }
    .visit-details { padding: 40px 25px; }
    .visit-actions { display: grid; }
    .visit-actions .button { width: 100%; }
    .map-wrap, .map-wrap iframe { min-height: 400px; }
    .newsletter { padding: 40px 24px; border-radius: 30px; }
    .newsletter-form { grid-template-columns: 1fr; }
    .newsletter-form .wide-field, .newsletter-form button, .newsletter-form small { grid-column: auto; }
    .footer { padding-top: 60px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
    .footer-brand { grid-column: span 2; }
    .footer-contact { grid-column: span 2; }
    .footer-bottom { flex-direction: column; }
    .floating-actions { display: none; }
    .mobile-order { position: fixed; right: 0; bottom: 0; left: 0; z-index: 110; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7px; padding: 8px 10px max(8px, env(safe-area-inset-bottom)); background: rgba(255,250,240,.92); box-shadow: 0 -12px 35px rgba(42,20,12,.12); backdrop-filter: blur(15px); }
    .mobile-order a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; font-size: .76rem; font-weight: 800; border: 1px solid var(--line); border-radius: 14px; }
    .mobile-order a:last-child { color: white; border-color: transparent; background: #227d4b; }
    .product-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
    .dialog-photo { min-height: 280px; max-height: 38vh; }
    .dialog-copy { padding: 32px 25px; }
    .dialog-copy h2 { font-size: 3rem; }
  }

  @media (hover: none) {
    .cursor-glow { display: none; }
    .gallery-item span { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
}

@layer sections {
  .inner-hero {
    display: grid;
    min-height: 720px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
    align-items: center;
    gap: clamp(48px, 9vw, 120px);
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .inner-hero h1 { max-width: 900px; font-size: clamp(4rem, 7vw, 7.4rem); }
  .inner-hero > div > p:not(.eyebrow) { max-width: 760px; margin-top: 30px; color: var(--muted); font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
  .truth-note { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,250,240,.7); box-shadow: var(--shadow-sm); }
  .truth-note span, .truth-note strong { display: block; }
  .truth-note span { margin-bottom: 12px; color: var(--saffron); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
  .truth-note strong { margin-bottom: 13px; font-family: var(--serif); font-size: 1.8rem; line-height: 1.1; }
  .truth-note p { color: var(--muted); font-size: .8rem; }
  .page-section { padding-top: 70px; }
  .section-link-row { display: flex; justify-content: center; margin-top: 44px; }
  .route-section { padding-top: 70px; }
  .route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .route-card { display: flex; min-height: 310px; align-items: flex-start; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,250,240,.64); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s; }
  a.route-card:hover { background: var(--ivory); box-shadow: var(--shadow-md); transform: translateY(-7px); }
  .route-card > span { margin-bottom: auto; color: var(--saffron); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
  .route-card h3 { margin: 35px 0 13px; font-size: 2rem; }
  .route-card p { margin-bottom: 25px; color: var(--muted); }
  .route-card b { margin-top: auto; font-size: .78rem; }
  .home-visit { padding-top: 80px; }
  .home-visit .visit-details > p:not(.eyebrow, .location-tip) { margin-bottom: 28px; color: rgba(255,255,255,.68); }
  .review-band, .info-band { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-block: 80px 140px; padding: clamp(45px, 6vw, 78px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,250,240,.86), rgba(240,220,182,.67)); box-shadow: var(--shadow-md); }
  .review-band > div, .info-band > div { max-width: 820px; }
  .review-band h2, .info-band h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
  .review-band p:not(.eyebrow), .info-band p:not(.eyebrow) { max-width: 690px; margin-top: 20px; color: var(--muted); }
  .review-band .button, .info-band .button { flex: 0 0 auto; }
  .verified-stamp { border-color: #174a96; background: #174a96; }
  .source-grid { padding-top: 80px; }
  .contact-choice { padding-top: 70px; }
  .visit-page { padding-top: 70px; }
  .filter-btn[aria-pressed="true"] { color: white; background: var(--chocolate); }
}

@layer responsive {
  @media (max-width: 850px) {
    .inner-hero { min-height: auto; grid-template-columns: 1fr; gap: 45px; padding-top: 150px; padding-bottom: 70px; }
    .inner-hero h1 { font-size: clamp(3.6rem, 13vw, 6rem); }
    .truth-note { max-width: 620px; }
    .route-grid { grid-template-columns: 1fr; }
    .route-card { min-height: 260px; }
    .review-band, .info-band { align-items: flex-start; flex-direction: column; margin-block: 55px 100px; }
  }
  @media (max-width: 560px) {
    .inner-hero { width: min(calc(100% - 28px), 700px); padding-top: 125px; }
    .inner-hero h1 { font-size: clamp(3.25rem, 15vw, 4.8rem); }
    .truth-note { padding: 27px; }
    .route-card { min-height: 235px; padding: 28px; }
    .route-card h3 { font-size: 1.7rem; }
    .review-band, .info-band { width: min(calc(100% - 28px), 700px); padding: 34px 25px; border-radius: 30px; }
    .section-link-row .button { width: 100%; }
  }
}
