  :root {
    --emerald-950: #061F18;
    --emerald-900: #0A2A20;
    --emerald-800: #0F3A2C;
    --emerald-700: #155039;
    --emerald-600: #1C6B4C;
    --emerald-500: #278563;
    --emerald-glow: #2E9E74;
    --gold: #CBA45C;
    --gold-bright: #E4C67F;
    --gold-dim: #9C7F42;
    --cream: #F7F0DE;
    --ivory: #FFFCF4;
    --paper: #FBF6E9;
    --ink: #0E1F19;
    --ink-soft: rgba(14,31,25,0.62);
    --line: rgba(14,31,25,0.1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

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

  ::selection { background: var(--gold); color: var(--emerald-950); }

  h1, h2, h3, .font-display { font-family: 'Fraunces', serif; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(6,31,24,0.72);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(203,164,92,0.18);
    transition: all 0.35s;
  }

  .nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem; font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ivory);
    display: flex; align-items: baseline; gap: 2px;
  }
  .nav-logo span { color: var(--gold-bright); font-weight: 700; }

  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }

  .nav-links a {
    text-decoration: none; color: rgba(247,240,222,0.82);
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    position: relative; transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold-bright); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 1px; background: var(--gold-bright);
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--emerald-950) !important;
    padding: 11px 24px; border-radius: 2px;
    transition: transform 0.25s, box-shadow 0.25s !important;
    box-shadow: 0 4px 20px rgba(203,164,92,0.25);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(203,164,92,0.4); }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    padding-top: 0;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 120% 90% at 15% 0%, var(--emerald-800) 0%, var(--emerald-950) 55%, var(--emerald-950) 100%);
  }

  .hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none; opacity: 0.35;
  }
  .hero::before {
    width: 480px; height: 480px; background: var(--emerald-glow);
    top: -160px; left: 20%; animation: driftA 16s ease-in-out infinite alternate;
  }
  .hero::after {
    width: 380px; height: 380px; background: var(--gold-dim);
    bottom: -120px; right: 8%; opacity: 0.18;
    animation: driftB 20s ease-in-out infinite alternate;
  }
  @keyframes driftA { from { transform: translate(0,0); } to { transform: translate(60px, 40px); } }
  @keyframes driftB { from { transform: translate(0,0); } to { transform: translate(-40px, -30px); } }

  .hero-left {
    display: flex; flex-direction: column;
    justify-content: center; padding: 130px 60px 80px 80px;
    position: relative; z-index: 2;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-bright);
    margin-bottom: 26px; opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
  }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold-bright); }

  .hero-title {
    font-size: clamp(3.2rem, 5.6vw, 5.2rem);
    font-weight: 600; line-height: 1.02; letter-spacing: -0.01em;
    color: var(--ivory); margin-bottom: 10px;
    opacity: 0; animation: fadeUp 0.9s 0.22s forwards;
  }
  .hero-title em {
    font-style: italic; font-weight: 400;
    background: linear-gradient(100deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-style: italic; font-weight: 500;
    color: rgba(247,240,222,0.75); margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.9s 0.34s forwards;
  }

  .hero-desc {
    font-size: 1rem; line-height: 1.85; font-weight: 400;
    color: rgba(247,240,222,0.6); max-width: 430px;
    margin-bottom: 44px;
    opacity: 0; animation: fadeUp 0.9s 0.46s forwards;
  }

  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.58s forwards; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
    color: var(--emerald-950);
    padding: 15px 34px; border: none; cursor: pointer;
    font-family: 'Manrope', sans-serif; font-size: 0.85rem;
    font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
    box-shadow: 0 6px 24px rgba(203,164,92,0.28);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(203,164,92,0.42); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg); transition: left 0.6s ease;
  }
  .btn-primary:hover::before { left: 130%; }

  .btn-gold { position: relative; overflow: hidden; }
  .btn-gold::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg); transition: left 0.6s ease;
  }
  .btn-gold:hover::before { left: 130%; }

  .btn-outline {
    background: transparent; color: var(--ivory);
    padding: 15px 34px; border: 1.5px solid rgba(247,240,222,0.35);
    cursor: pointer; font-family: 'Manrope', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    display: inline-block; transition: all 0.3s;
  }
  .btn-outline:hover { background: rgba(247,240,222,0.08); border-color: var(--gold-bright); color: var(--gold-bright); }

  /* .btn-outline defaults to light text for use on the dark hero; on light
     backgrounds (item-hero, bestsellers, category cards) it needs dark text
     to stay readable (WCAG AA contrast). */
  .item-hero .btn-outline, .bestsellers .btn-outline, .why-right .btn-outline {
    color: var(--emerald-950); border-color: var(--emerald-950);
  }
  .item-hero .btn-outline:hover, .bestsellers .btn-outline:hover {
    background: var(--emerald-950); color: var(--ivory); border-color: var(--emerald-950);
  }

  .hero-stats {
    display: flex; gap: 44px; margin-top: 58px;
    padding-top: 36px; border-top: 1px solid rgba(203,164,92,0.2);
    opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
  }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.1rem; font-weight: 600; color: var(--gold-bright);
    display: block;
  }
  .stat-label {
    font-size: 0.72rem; text-transform: uppercase; font-weight: 600;
    letter-spacing: 0.12em; color: rgba(247,240,222,0.5);
  }

  .hero-right {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-right img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.9;
  }

  .hero-right::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--emerald-950) 0%, rgba(6,31,24,0.35) 30%, rgba(6,31,24,0.1) 60%, rgba(6,31,24,0.5) 100%);
  }

  .hero-badge {
    position: absolute; bottom: 56px; right: 56px; z-index: 3;
    width: 116px; height: 116px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--emerald-600), var(--emerald-900));
    border: 1px solid rgba(203,164,92,0.4);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  .hero-badge-inner {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--ivory); text-align: center;
    animation: rotateBadge 14s linear infinite;
  }
  .hero-badge .badge-text {
    font-size: 0.58rem; letter-spacing: 0.12em; font-weight: 700;
    text-transform: uppercase; line-height: 1.75; color: var(--gold-bright);
  }
  .hero-badge .badge-icon { font-size: 1.3rem; margin-bottom: 3px; }
  @keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* ── MARQUEE ── */
  .marquee-bar {
    background: var(--emerald-900); color: var(--ivory);
    padding: 15px 0; overflow: hidden;
    border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
    position: relative; z-index: 10;
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marqueeScroll 26s linear infinite;
    white-space: nowrap; width: max-content;
  }
  .marquee-item {
    font-size: 0.78rem; letter-spacing: 0.16em; font-weight: 600;
    text-transform: uppercase; padding: 0 32px;
    display: inline-flex; align-items: center; gap: 14px;
    color: rgba(247,240,222,0.85);
  }
  .marquee-dot { color: var(--gold-bright); font-size: 1rem; }
  @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTION SHARED ── */
  section { padding: 110px 80px; }

  .section-label {
    font-size: 0.72rem; letter-spacing: 0.22em; font-weight: 700;
    text-transform: uppercase; color: var(--emerald-600);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
  }
  .section-label::after { content: ''; flex: 1; max-width: 50px; height: 1px; background: var(--emerald-600); }

  .section-title {
    font-size: clamp(2.1rem, 3.8vw, 3.1rem);
    font-weight: 600; line-height: 1.08;
    color: var(--emerald-950); letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; font-weight: 400; color: var(--gold-dim); }

  /* ── BESTSELLERS ── */
  .bestsellers { background: var(--cream); }

  .bestsellers-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 60px;
    flex-wrap: wrap; gap: 20px;
  }

  .bestsellers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .best-card {
    background: var(--ivory);
    padding: 34px 28px; position: relative;
    cursor: pointer; transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
    border-radius: 4px;
    border-bottom: 3px solid transparent;
  }
  .best-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(14,31,25,0.14);
    border-bottom-color: var(--gold);
  }

  .best-card-emoji { font-size: 2.6rem; margin-bottom: 18px; display: block; }

  .best-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--emerald-900); color: var(--gold-bright);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 2px;
  }

  .best-name { font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 600; color: var(--emerald-950); margin-bottom: 6px; }
  .best-hindi { font-size: 0.78rem; color: var(--gold-dim); margin-bottom: 8px; }
  .best-desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
  .best-price { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--emerald-700); }

  /* ── MENU SECTION ── */
  .menu-section { background: var(--ivory); }

  .menu-tabs {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 8px; padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
  }

  .tab-btn {
    padding: 11px 22px; border: 1.5px solid var(--line);
    background: transparent; cursor: pointer; border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.03em; color: var(--ink);
    transition: all 0.25s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--emerald-900); color: var(--ivory);
    border-color: var(--emerald-900);
  }
  .tab-btn.active .icon-svg, .tab-btn:hover .icon-svg { filter: brightness(0) invert(1); }

  .menu-panel { display: none; padding-top: 40px; }
  .menu-panel.active { display: block; animation: fadeUp 0.5s; }

  .menu-subgroup { margin-bottom: 44px; }
  .menu-subgroup:last-child { margin-bottom: 0; }

  .menu-subtitle {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 1.3rem; font-weight: 500; color: var(--gold-dim);
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 1px dashed rgba(203,164,92,0.35);
  }

  .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }

  .menu-item {
    display: flex; justify-content: space-between;
    align-items: center; padding: 18px 22px;
    background: var(--paper);
    transition: background 0.2s;
  }
  .menu-item:hover { background: var(--cream); }

  .menu-item-left { flex: 1; min-width: 0; }

  .menu-item-name { font-size: 0.93rem; font-weight: 600; color: var(--emerald-950); margin-bottom: 3px; }
  .menu-item-hindi { font-size: 0.74rem; color: var(--ink-soft); }

  .menu-item-tag {
    display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
    font-size: 0.65rem; color: var(--emerald-700); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .menu-item-tag .icon-svg { width: 13px; height: 13px; }

  .menu-item-price {
    font-family: 'Fraunces', serif;
    font-size: 1.02rem; font-weight: 600;
    color: var(--gold-dim); white-space: nowrap;
    margin-left: 16px;
  }

  /* ── WHY US ── */
  .why-section { background: var(--emerald-950); color: var(--ivory); position: relative; overflow: hidden; }

  .why-section::before {
    content: 'KAAFII';
    position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
    font-family: 'Fraunces', serif; font-size: 17vw; font-weight: 700;
    opacity: 0.035; color: var(--gold-bright);
    white-space: nowrap; line-height: 1; pointer-events: none;
    z-index: 0;
  }

  /* Slow ambient glow, same drift language as the hero's background blobs.
     Purely atmospheric (no interaction to serve), so it stays slow and low
     contrast rather than fast/attention-grabbing. */
  .why-section::after {
    content: ''; position: absolute; z-index: 0; pointer-events: none;
    width: 420px; height: 420px; border-radius: 50%; filter: blur(100px);
    background: var(--emerald-glow); opacity: 0.16;
    top: -140px; left: 55%;
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-section::after { animation: driftA 18s ease-in-out infinite alternate; }
  }

  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }

  .why-left .section-label { color: var(--gold-bright); }
  .why-left .section-label::after { background: var(--gold-bright); }
  .why-left .section-title { color: var(--ivory); }

  .why-left p { margin-top: 22px; font-size: 1rem; line-height: 1.9; color: rgba(247,240,222,0.65); max-width: 460px; }

  .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }

  .why-feat {
    padding: 26px; border: 1px solid rgba(247,240,222,0.1);
    background: rgba(247,240,222,0.03); border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .why-feat:hover { border-color: var(--gold); transform: translateY(-4px); }

  .why-feat-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
  .why-feat-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--ivory); margin-bottom: 6px; }
  .why-feat-desc { font-size: 0.8rem; line-height: 1.6; color: rgba(247,240,222,0.5); }

  .why-right { display: flex; flex-direction: column; gap: 18px; }

  .combo-card {
    background: rgba(247,240,222,0.04);
    border: 1px solid rgba(203,164,92,0.22);
    padding: 24px 28px; border-radius: 4px;
    display: flex; justify-content: space-between;
    align-items: center; transition: all 0.3s; cursor: pointer;
  }
  .combo-card:hover { background: rgba(203,164,92,0.08); border-color: var(--gold); transform: translateX(8px); }

  .combo-name { font-family: 'Fraunces', serif; font-size: 1.08rem; font-weight: 600; color: var(--ivory); }
  .combo-items { font-size: 0.8rem; color: rgba(247,240,222,0.5); margin-top: 4px; }
  .combo-price { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold-bright); }
  .combo-save { font-size: 0.7rem; color: var(--emerald-500); text-align: right; margin-top: 3px; }

  /* ── GALLERY ── */
  .gallery-section { padding: 90px 80px 70px; background: var(--cream); }
  .gallery-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 42px; flex-wrap: wrap; gap: 16px;
  }
  .gallery-link {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--gold-dim); text-decoration: none;
    border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .gallery-link:hover { color: var(--emerald-700); border-color: var(--emerald-700); }

  .gallery-grid {
    display: grid; grid-template-columns: repeat(12,1fr);
    grid-template-rows: 260px 260px; gap: 8px;
  }
  .gallery-grid img, .gallery-strip img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.6s;
  }
  .gallery-grid > div, .gallery-strip { overflow: hidden; border-radius: 2px; }
  .gallery-grid img:hover, .gallery-strip img:hover { transform: scale(1.05); }
  .gallery-strip { margin-top: 8px; height: 220px; }
  .gallery-strip img { object-position: center 60%; }
  .gallery-caption { text-align: center; margin-top: 22px; font-size: 0.85rem; color: var(--ink-soft); font-style: italic; font-family: 'Cormorant Garamond', serif; }

  /* ── LOCATION ── */
  .location-section { background: var(--ivory); }
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
  .info-block { margin-bottom: 38px; }
  .info-label { font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 700; text-transform: uppercase; color: var(--emerald-600); margin-bottom: 8px; }
  .info-value { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--emerald-950); line-height: 1.5; }
  .info-sub { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

  .map-placeholder {
    background: var(--emerald-950); height: 360px; border-radius: 4px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; position: relative; overflow: hidden;
  }
  .map-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(203,164,92,0.08) 39px, rgba(203,164,92,0.08) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(203,164,92,0.08) 39px, rgba(203,164,92,0.08) 40px);
  }
  .map-pin { font-size: 3rem; position: relative; z-index: 1; }
  .map-text { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ivory); position: relative; z-index: 1; text-align: center; }
  .map-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: var(--emerald-950);
    padding: 12px 26px; text-decoration: none; border-radius: 2px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    position: relative; z-index: 1; transition: transform 0.25s;
  }
  .map-cta:hover { transform: translateY(-2px); }

  .map-embed {
    border-radius: 4px; overflow: hidden; height: 380px;
    border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(14,31,25,0.1);
  }
  .map-embed iframe { display: block; width: 100%; height: 100%; filter: saturate(0.9) contrast(1.02); }

  /* ── FAQ ── */
  .faq-section { background: var(--cream); }
  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
  .faq-item { background: var(--ivory); border-radius: 4px; border: 1px solid var(--line); overflow: hidden; }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 20px 24px; font-family: 'Fraunces', serif; font-size: 1.02rem; font-weight: 600;
    color: var(--emerald-950); display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
  }
  .faq-icon { font-size: 1.2rem; color: var(--gold-dim); transition: transform 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-item.open .faq-a { max-height: 220px; }
  .faq-a p { padding: 0 24px 20px; font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); }

  /* ── BLOG TEASER ── */
  .blog-teaser { background: var(--ivory); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card {
    background: var(--cream); border-radius: 4px; padding: 30px 26px;
    text-decoration: none; display: flex; flex-direction: column; gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s; border-bottom: 3px solid transparent;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(14,31,25,0.12); border-bottom-color: var(--gold); }
  .blog-card-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald-600); }
  .blog-card-title { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--emerald-950); line-height: 1.35; }
  .blog-card-desc { font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft); flex: 1; }
  .blog-card-link { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-dim); }

  /* ── FOOTER ── */
  footer { background: var(--emerald-950); padding: 64px 80px 40px; color: var(--ivory); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
  .footer-brand-name { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; margin-bottom: 12px; }
  .footer-brand-name span { font-weight: 700; color: var(--gold-bright); }
  .footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(247,240,222,0.5); margin-bottom: 20px; }
  .footer-veg {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid var(--emerald-500); padding: 7px 13px; border-radius: 2px;
    font-size: 0.75rem; font-weight: 600; color: var(--emerald-500); letter-spacing: 0.08em;
  }
  .footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
  .footer-contact p { font-size: 0.83rem; line-height: 1.6; color: rgba(247,240,222,0.55); }
  .footer-contact a { color: rgba(247,240,222,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-contact a:hover { color: var(--gold-bright); }

  .footer-col-title { font-size: 0.72rem; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-links a { color: rgba(247,240,222,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--ivory); }
  .footer-bottom {
    border-top: 1px solid rgba(247,240,222,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: rgba(247,240,222,0.35);
  }
  .social-links { display: flex; gap: 16px; }
  .social-link {
    width: 38px; height: 38px; border: 1px solid rgba(247,240,222,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(247,240,222,0.5); text-decoration: none; font-size: 0.95rem; transition: all 0.25s;
  }
  .social-link:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(203,164,92,0.1); }

  /* ── PROMO BANNER ── */
  .promo-banner {
    background: linear-gradient(120deg, var(--emerald-700), var(--emerald-600) 55%, var(--emerald-800));
    padding: 30px 80px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px; flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .promo-banner::after {
    content: ''; position: absolute; inset: -20%;
    background: radial-gradient(circle at 85% 20%, rgba(203,164,92,0.25), transparent 60%);
  }
  @media (prefers-reduced-motion: no-preference) {
    .promo-banner::after { animation: driftB 14s ease-in-out infinite alternate; }
  }
  .promo-text { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--ivory); position: relative; z-index: 1; }
  .promo-text em { font-style: italic; font-weight: 400; color: var(--gold-bright); }
  .promo-sub { font-size: 0.85rem; color: rgba(247,240,222,0.75); margin-top: 4px; position: relative; z-index: 1; }
  .btn-white {
    background: var(--ivory); color: var(--emerald-900);
    padding: 13px 28px; border: none; cursor: pointer; border-radius: 2px;
    font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
    white-space: nowrap; transition: all 0.25s; position: relative; z-index: 1;
  }
  .btn-white:hover { background: var(--gold-bright); transform: translateY(-2px); }

  /* ── SCROLL ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
  .stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
  .stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
  .stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
  .stagger.visible > * { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 900px) {
    section { padding: 70px 28px; }
    nav { padding: 16px 22px; }
    .nav-links { gap: 18px; }
    .nav-links li:not(:last-child) { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 110px 26px 50px; }
    .hero-right { height: 320px; }
    .why-grid, .location-grid { grid-template-columns: 1fr; gap: 44px; }
    .why-features { grid-template-columns: 1fr; }
    .promo-banner { padding: 26px 28px; }
    footer { padding: 50px 28px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .gallery-section { padding: 70px 24px 50px; }
    .gallery-grid { grid-template-rows: 180px 180px; }
  }

  @media (max-width: 600px) {
    .bestsellers-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; }
    .menu-tabs { gap: 8px; }
    .tab-btn { padding: 9px 16px; font-size: 0.74rem; }
  }

  /* ══════════════════════════════════════════════
     SITE-WIDE ADDITIONS — logo, nav toggle, order CTA,
     and category/item landing page system (shared
     across coffee/, chinese/, momos/, pizza/, sandwiches/,
     snacks/, waffles/, burgers/, pasta/)
     ══════════════════════════════════════════════ */

  /* ── ANIMATED ICONS (replaces emoji) ── */
  /* SVGs from Iconify's free public API (api.iconify.design), tinted via
     the ?color= param to match the palette. Motion is added here in CSS
     rather than relying on a pre-rendered "animated icon" format. */
  .icon-svg {
    display: inline-block; vertical-align: middle;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  }
  .icon-svg:hover { transform: scale(1.18) rotate(-8deg); }

  @keyframes iconBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  .icon-bob { animation: iconBob 2.4s ease-in-out infinite; }
  .icon-bob:hover { animation-play-state: paused; }

  @keyframes iconPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: 0.85; } }
  .icon-pulse { animation: iconPulse 1.8s ease-in-out infinite; }

  @keyframes iconSpinIn {
    from { transform: rotate(-90deg) scale(0.4); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
  }
  .icon-spin-in { animation: iconSpinIn 0.6s cubic-bezier(.2,.8,.2,1) both; }

  /* ── LOGO ── */
  /* At rest, the logo straddles the header edge: its vertical center sits
     on the nav's bottom border, so exactly half shows inside the header
     and half overflows into the page below. On scroll (nav.scrolled),
     it shrinks and pulls fully back inside the header. */
  a.nav-logo {
    display: inline-flex; align-items: center; text-decoration: none;
    position: relative; width: auto; height: 42px;
  }
  /* Wordmark stays hidden while the logo is large; once nav.scrolled
     shrinks the logo down, it fades and slides in next to it. */
  .nav-logo-text {
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem;
    letter-spacing: 0.01em; color: var(--ivory); white-space: nowrap;
    overflow: hidden; max-width: 0; opacity: 0; margin-left: 0; transform: translateX(-8px);
    transition: max-width 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease,
                margin-left 0.45s cubic-bezier(.2,.8,.2,1), transform 0.45s cubic-bezier(.2,.8,.2,1);
  }
  nav.scrolled .nav-logo-text {
    max-width: 160px; opacity: 1; margin-left: 54px; transform: translateX(0);
    transition-delay: 0.08s;
  }
  .nav-logo-img {
    position: absolute; left: 0; bottom: 0;
    width: 116px; height: 116px; border-radius: 50%;
    object-fit: cover; display: block;
    border: 2px solid rgba(203,164,92,0.5);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    transform: translateY(50%) scale(1);
    transition: width 0.4s cubic-bezier(.2,.8,.2,1), height 0.4s cubic-bezier(.2,.8,.2,1),
                transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
    z-index: 5;
  }
  .nav-logo-img:hover { transform: translateY(50%) scale(1.06); border-color: var(--gold-bright); }
  nav.scrolled .nav-logo-img { width: 42px; height: 42px; transform: translateY(0) scale(1); }
  nav.scrolled .nav-logo-img:hover { transform: translateY(0) scale(1.06); }
  .footer-logo-img {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
    border: 1.5px solid rgba(203,164,92,0.35); margin-bottom: 14px; display: block;
  }

  /* ── NAV: mobile hamburger + Order Online CTA ── */
  .nav-order-cta {
    background: transparent !important; color: var(--gold-bright) !important;
    border: 1.5px solid var(--gold-bright) !important; padding: 9px 20px !important;
    border-radius: 2px; transition: all 0.25s !important;
  }
  .nav-order-cta:hover { background: rgba(203,164,92,0.12) !important; }
  .nav-order-cta::after { display: none !important; }

  .nav-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 26px; height: 20px; background: none; border: none; cursor: pointer;
    z-index: 210;
  }
  .nav-burger span { width: 100%; height: 2px; background: var(--ivory); transition: all 0.3s; display: block; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    .nav-burger { display: flex; }
    .nav-logo-img { width: 84px; height: 84px; }
    nav.scrolled .nav-logo-img { width: 38px; height: 38px; }
    .nav-links {
      position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height: 100vh;
      background: var(--emerald-950); flex-direction: column; align-items: flex-start;
      justify-content: center; gap: 26px; padding: 40px;
      transform: translateX(100%); transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
      border-left: 1px solid rgba(203,164,92,0.2);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { display: block !important; width: 100%; }
    .nav-links a { font-size: 0.95rem; }
    .nav-cta, .nav-order-cta { display: inline-block !important; width: 100%; text-align: center; }
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    margin-top: 78px; padding: 14px 48px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    font-size: 0.78rem; color: var(--ink-soft);
  }
  .breadcrumb a { color: var(--gold-dim); text-decoration: none; font-weight: 600; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb span { margin: 0 8px; }

  /* ── ITEM HERO ── */
  .item-hero {
    background: var(--cream);
    padding: 60px 48px 50px;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }
  .item-category-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--emerald-600); margin-bottom: 16px;
  }
  .item-category-tag::before { content: ''; width: 24px; height: 1px; background: var(--emerald-600); }
  .item-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 600; line-height: 1.1; color: var(--emerald-950);
    margin-bottom: 12px;
  }
  .item-hero h1 em { font-style: italic; color: var(--gold-dim); font-weight: 400; }
  .item-hero-desc { font-size: 1rem; line-height: 1.85; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
  .item-price-badge {
    display: inline-flex; flex-direction: column;
    background: var(--emerald-950); color: var(--ivory);
    padding: 16px 28px; margin-bottom: 28px; border-radius: 4px;
  }
  .item-price-badge .price-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.65; margin-bottom: 4px; }
  .item-price-badge .price-value { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--gold-bright); }
  .item-price-badge .price-note { font-size: 0.72rem; opacity: 0.55; margin-top: 2px; }

  .item-hero-photo { position: relative; overflow: hidden; max-width: 420px; border-radius: 4px; }
  .item-hero-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .photo-badges { display: flex; gap: 8px; position: absolute; top: 14px; left: 14px; z-index: 2; }
  .badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
  .badge-veg { background: var(--emerald-600); color: white; }
  .badge-hot { background: var(--gold-dim); color: white; }
  .photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px;
    background: linear-gradient(transparent, rgba(6,31,24,0.75));
    color: white; font-size: 0.78rem; letter-spacing: 0.06em;
  }

  /* ── DETAILS STRIP ── */
  .details-strip { background: var(--emerald-950); padding: 24px 48px; display: flex; gap: 0; align-items: stretch; flex-wrap: wrap; }
  .detail-item { flex: 1; padding: 0 32px; text-align: center; border-right: 1px solid rgba(247,240,222,0.08); min-width: 130px; }
  .detail-item:last-child { border-right: none; }
  .detail-item:first-child { padding-left: 0; }
  .detail-icon { font-size: 1.3rem; margin-bottom: 6px; display: block; }
  .detail-label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,240,222,0.45); margin-bottom: 4px; }
  .detail-value { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--ivory); }

  /* ── CONTENT SECTIONS (item/category pages) ── */
  .content-section { padding: 64px 48px; }
  .content-section.alt { background: var(--cream); }
  .section-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 700; text-transform: uppercase;
    color: var(--emerald-600); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
  }
  .section-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--emerald-600); }
  .content-section .section-title { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--emerald-950); margin-bottom: 20px; }
  .section-body { font-size: 0.97rem; line-height: 1.9; color: var(--ink-soft); max-width: 680px; }
  .section-body p { margin-bottom: 16px; }
  .section-body p:last-child { margin-bottom: 0; }

  /* ── WHY GRID (item pages) ── */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
  .why-card { background: var(--ivory); padding: 28px 24px; border-left: 3px solid var(--gold); border-radius: 2px; }
  .why-card-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
  .why-card-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--emerald-950); margin-bottom: 8px; }
  .why-card-desc { font-size: 0.83rem; line-height: 1.65; color: var(--ink-soft); }

  /* ── FAQ (item pages, matches homepage .faq-item pattern but compact) ── */
  .faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
  .faq-list .faq-item { background: var(--paper); border-radius: 0; border: none; }
  .faq-list .faq-q {
    padding: 18px 24px; font-weight: 600; font-size: 0.95rem; font-family: 'Manrope', sans-serif;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    color: var(--emerald-950); user-select: none;
  }
  .faq-list .faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold-dim); font-weight: 300; transition: transform 0.25s; }
  .faq-list .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-list .faq-a { display: none; padding: 0 24px 18px; font-size: 0.9rem; line-height: 1.75; color: var(--ink-soft); }
  .faq-list .faq-item.open .faq-a { display: block; }

  /* ── RELATED / CATEGORY GRID ── */
  .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
  .related-card {
    background: var(--paper); text-decoration: none; color: inherit;
    border-bottom: 3px solid transparent; transition: all 0.3s;
    display: block; padding: 0; overflow: hidden; border-radius: 4px;
  }
  .related-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(14,31,25,0.1); }
  .related-card-img { overflow: hidden; aspect-ratio: 4/3; }
  .related-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .related-card:hover .related-card-img img { transform: scale(1.06); }
  .related-card-body { padding: 14px 16px; }
  .related-name { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 600; color: var(--emerald-950); margin-bottom: 4px; }
  .related-price { font-size: 0.88rem; color: var(--gold-dim); font-weight: 600; }
  .related-tag { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald-600); margin-bottom: 4px; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, var(--emerald-950), var(--emerald-800));
    padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; z-index: 0; pointer-events: none;
    width: 320px; height: 320px; border-radius: 50%; filter: blur(90px);
    background: var(--gold-dim); opacity: 0.16; top: -120px; left: -60px;
  }
  @media (prefers-reduced-motion: no-preference) {
    .cta-band::before { animation: driftA 15s ease-in-out infinite alternate; }
  }
  .cta-band h2, .cta-band p, .cta-band .cta-btns { position: relative; z-index: 1; }
  .cta-band h2 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--ivory); margin-bottom: 10px; }
  .cta-band p { font-size: 0.95rem; color: rgba(247,240,222,0.62); margin-bottom: 28px; }
  .cta-band .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: var(--emerald-950);
    padding: 14px 32px; text-decoration: none; font-family: 'Manrope', sans-serif; font-size: 0.88rem;
    font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; display: inline-block;
    border-radius: 2px; transition: transform 0.25s;
  }
  .btn-gold:hover { transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: var(--ivory); border: 1.5px solid rgba(247,240,222,0.3);
    padding: 14px 32px; text-decoration: none; font-family: 'Manrope', sans-serif; font-size: 0.88rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: inline-block;
    border-radius: 2px; transition: all 0.25s;
  }
  .btn-ghost:hover { border-color: var(--ivory); background: rgba(247,240,222,0.08); }

  /* ── CATEGORY INDEX GRID ── */
  .category-hero {
    background: radial-gradient(ellipse 120% 100% at 20% 0%, var(--emerald-800) 0%, var(--emerald-950) 60%);
    padding: 130px 48px 70px; color: var(--ivory); text-align: left;
    position: relative; overflow: hidden;
  }
  .category-hero::before, .category-hero::after {
    content: ''; position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; filter: blur(90px);
  }
  .category-hero::before { width: 360px; height: 360px; background: var(--emerald-glow); opacity: 0.16; top: -120px; left: 10%; }
  .category-hero::after { width: 260px; height: 260px; background: var(--gold-dim); opacity: 0.14; bottom: -100px; right: 6%; }
  @media (prefers-reduced-motion: no-preference) {
    .category-hero::before { animation: driftA 17s ease-in-out infinite alternate; }
    .category-hero::after { animation: driftB 13s ease-in-out infinite alternate; }
  }
  .category-hero p.item-category-tag, .category-hero h1, .category-hero p.lede { position: relative; z-index: 1; }
  .category-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--ivory); margin: 14px 0 16px; max-width: 700px; }
  .category-hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
  .category-hero p.lede { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: rgba(247,240,222,0.68); max-width: 600px; }

  .category-grid { max-width: 1200px; margin: 0 auto; padding: 70px 48px 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .category-card {
    background: var(--paper); border-radius: 4px; overflow: hidden; text-decoration: none; color: inherit;
    display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; border-bottom: 3px solid transparent;
  }
  .category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(14,31,25,0.14); border-bottom-color: var(--gold); }
  .category-card-img { overflow: hidden; aspect-ratio: 4/3; position: relative; }
  .category-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
  .category-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6,31,24,0.45) 100%);
    opacity: 0; transition: opacity 0.35s;
  }
  .category-card:hover .category-card-img img { transform: scale(1.06); }
  .category-card:hover .category-card-img::after { opacity: 1; }
  .category-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .category-card-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--emerald-950); }
  .category-card-desc { font-size: 0.83rem; line-height: 1.55; color: var(--ink-soft); flex: 1; }
  .category-card-price { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--gold-dim); }

  /* ── item/category FOOTER (shares homepage footer classes; aliases for old markup) ── */
  .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
  .footer-brand { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: var(--ivory); }
  .footer-brand span { font-weight: 700; color: var(--gold-bright); }
  .footer-links-col h4 { font-size: 0.68rem; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
  .footer-links-col a { display: block; color: rgba(247,240,222,0.55); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--ivory); }

  /* ── RESPONSIVE: item/category pages ── */
  @media (max-width: 900px) {
    .breadcrumb { padding: 12px 20px; margin-top: 70px; }
    .item-hero { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
    .item-hero-photo { max-width: 100%; }
    .details-strip { padding: 20px; }
    .detail-item { flex: calc(50% - 8px); border-right: none; border-bottom: 1px solid rgba(247,240,222,0.08); padding: 12px 0; min-width: 0; }
    .content-section { padding: 44px 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .category-hero { padding: 100px 22px 50px; }
    .category-grid { grid-template-columns: 1fr; padding: 50px 22px 70px; }
    .cta-band { padding: 44px 20px; }
    .footer-inner { flex-direction: column; gap: 28px; }
  }
  @media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
  }
