

    :root{
      --bg:#f6efe4;
      --cream:#fbf5ea;
      --cream-2:#efe3d0;
      --ink:#2d1b17;
      --wine:#651008;
      --wine-2:#7c100d;
      --red:#b3161c;
      --gold:#c79a4a;
      --gold-2:#e8c27d;
      --line:rgba(115,76,51,.18);
      --muted:#6b5a51;
      --shadow:0 18px 44px rgba(42,17,10,.12);
      --radius:16px;
      --container:1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--bg);
      font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    img{display:block;width:100%}
    a{color:inherit;text-decoration:none}
    button,input,select{font:inherit}
    .container{width:min(calc(100% - 48px),var(--container));margin-inline:auto}

    /* ---------- HEADER ---------- */
    .site-header{
      position:absolute; inset:0 0 auto 0; z-index:40;
      height:82px;
      border-bottom:1px solid rgba(236,202,146,.2);
      background:linear-gradient(180deg,rgba(28,11,8,.85),rgba(28,11,8,.56),transparent);
    }
    .header-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:32px}
    .brand{display:flex;align-items:center;gap:12px;min-width:255px}
    .brand img{width:36px;height:36px;object-fit:contain}
    .brand-copy{line-height:1}
    .brand-name{font:600 23px/1 "Cormorant Garamond",serif;color:#fff;letter-spacing:.01em}
    .brand-tag{margin-top:5px;color:#d9b666;font-size:8px;letter-spacing:.22em;text-transform:uppercase;font-weight:700}
    .nav{display:flex;align-items:center;gap:31px;margin-left:auto;margin-right:12px}
    .nav a{position:relative;color:rgba(255,255,255,.86);font-size:13px;font-weight:500;padding:31px 0 26px}
    .nav a.active::after{content:"";position:absolute;left:0;right:0;bottom:17px;height:2px;background:var(--red)}
    .menu-toggle{display:none;background:none;border:0;color:#e8c27d;font-size:28px;cursor:pointer}

    /* ---------- HERO ---------- */
    .hero{
      position:relative;
      min-height:558px;
      display:flex;
      align-items:flex-end;
      overflow:hidden;
      color:white;
      background-image:
        linear-gradient(90deg,rgba(22,9,6,.78) 0%,rgba(28,10,6,.60) 34%,rgba(24,8,5,.18) 68%,rgba(24,8,5,.18) 100%),
        linear-gradient(180deg,rgba(18,7,5,.12) 0%,rgba(18,7,5,.02) 68%,rgba(18,7,5,.45) 100%),
        url('hero.jpg');
      background-size:cover;
      background-position:center 52%;
    }
    .hero::after{
      content:"";position:absolute;inset:auto 0 0;height:34px;
      background:linear-gradient(180deg,transparent,rgba(25,9,6,.22));
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:2;padding:118px 0 55px;max-width:735px}
    .hero-inner{min-height:558px;display:flex;align-items:flex-end}
    .hero-card{max-width:735px;padding:0 0 55px}
    .hero-badge{display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;color:#f0cf88;font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:700}
    .welcome{font:400 31px/1 "Great Vibes",cursive;color:var(--gold-2);margin-bottom:-5px}
    .hero h1{margin:0;font:600 clamp(66px,6vw,92px)/.92 "Cormorant Garamond",serif;letter-spacing:-.035em;color:#fff;text-shadow:0 2px 12px rgba(0,0,0,.18)}
    .hero-kicker{display:inline-block;margin-top:10px;padding:6px 0 7px;border-top:1px solid rgba(219,184,117,.42);border-bottom:1px solid rgba(219,184,117,.42);font-size:17px;letter-spacing:.24em;text-transform:uppercase;color:#f4e7d1}
    .hero-copy{max-width:570px;margin:23px 0 0;color:rgba(255,255,255,.86);font-size:15px;line-height:1.55}
    .hero-actions{display:flex;gap:15px;margin-top:24px}
    .btn{display:inline-flex;align-items:center;justify-content:center;height:47px;padding:0 28px;border:1px solid transparent;font-size:13px;font-weight:600;transition:.2s ease}
    .btn:hover{transform:translateY(-1px)}
    .btn-primary{background:var(--red);color:#fff}
    .btn-outline{border-color:#cfa955;color:#fff;background:rgba(22,8,5,.22)}

    /* ---------- MENU ---------- */
    .menu-section{background:
      radial-gradient(circle at 35% 0,rgba(255,255,255,.85),transparent 30%),
      linear-gradient(180deg,#fbf6ed 0%,#f6eee2 100%);
      padding:29px 0 30px;
      border-bottom:1px solid #c7a867;
    }
    .section-label{display:flex;align-items:center;justify-content:center;gap:9px;color:#963024;text-transform:uppercase;font-size:10px;letter-spacing:.24em;font-weight:700}
    .section-label::before,.section-label::after{content:"◆";font-size:7px;color:#b99150}
    .section-title{margin:4px 0 8px;text-align:center;font:600 38px/1 "Cormorant Garamond",serif;color:#3a221b}
    .ornament{text-align:center;color:#a97447;font-size:12px;line-height:1}
    .tabs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;max-width:720px;margin:14px auto 18px}
    .tab{height:38px;border:1px solid rgba(130,87,55,.14);background:rgba(255,255,255,.42);color:#38241c;border-radius:7px;font-size:12px;font-weight:600;cursor:pointer}
    .tab.active{background:var(--red);color:white;border-color:var(--red);box-shadow:0 5px 10px rgba(160,26,26,.15)}
    .menu-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
    .food-card{overflow:hidden;background:#fffaf2;border:1px solid #dfcda9;border-radius:8px;box-shadow:0 4px 12px rgba(74,42,25,.07)}
    .food-image{height:122px;object-fit:cover}
    .food-body{padding:11px 14px 13px;min-height:116px}
    .food-title{margin:0 0 4px;font:700 19px/1.05 "Cormorant Garamond",serif;color:#362019}
    .food-desc{margin:0;color:#4c3a32;font-size:11.5px;line-height:1.38;min-height:47px}
    .food-price{margin-top:8px;color:var(--red);font-size:12px;font-weight:800}

    /* ---------- EXPERIENCE ---------- */
    .experience{
      color:white;
      background:
        radial-gradient(circle at 11% 50%,rgba(187,19,25,.13),transparent 24%),
        repeating-linear-gradient(45deg,rgba(255,255,255,.012) 0 2px,transparent 2px 9px),
        linear-gradient(90deg,#4e0808 0%,#66100c 62%,#5a0a08 100%);
      padding:26px 0 24px;
      border-top:1px solid rgba(201,154,74,.4);
    }
    .experience-grid{display:grid;grid-template-columns:.92fr 1.38fr;gap:34px;align-items:center}
    .experience-copy .section-label{justify-content:flex-start;color:#d6a652}
    .experience-copy .section-label::before,.experience-copy .section-label::after{color:#d6a652}
    .experience-copy h2{margin:6px 0 8px;font:600 34px/1.03 "Cormorant Garamond",serif;color:#fff4e7;max-width:400px}
    .experience-copy p{max-width:470px;margin:0;color:rgba(255,255,255,.79);font-size:12px;line-height:1.55}
    .experience-media{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
    .experience-media figure{margin:0;position:relative;overflow:hidden;height:164px;border-radius:13px;border:2px solid #c69a4e;box-shadow:0 6px 18px rgba(0,0,0,.22)}
    .experience-media img{height:100%;object-fit:cover}
    .exp-caption{position:absolute;inset:auto 0 0 0;background:linear-gradient(transparent, rgba(0,0,0,.72));color:#fff6e0;font-size:9px;font-weight:600;letter-spacing:.04em;padding:22px 8px 7px;text-align:center;line-height:1.2}

    /* ---------- RESERVATION ---------- */
    .booking{background:linear-gradient(90deg,#b3161c,#9d0e13);color:white;border-top:1px solid rgba(255,255,255,.12);padding:15px 0}
    .booking-inner{display:grid;grid-template-columns:1.1fr .95fr;gap:30px;align-items:center}
    .booking .section-label{justify-content:flex-start;color:#e9bd65;font-size:9px}
    .booking h3{margin:3px 0 0;font:600 27px/1 "Cormorant Garamond",serif;color:#fff7ec}
    .booking p{margin:4px 0 0;color:rgba(255,255,255,.78);font-size:10px}
    .booking-form{display:grid;grid-template-columns:1fr 1fr 1.12fr;gap:10px}
    .control{height:39px;padding:0 12px;border:0;background:#fff8ee;color:#3b251e;font-size:11px;border-radius:4px;outline:none}

    /* ---------- FOOTER ---------- */
    footer{background:#f5ede0;color:#4f3e35;padding:24px 0 8px;border-top:1px solid #ddcaa6}
    .footer-grid{display:grid;grid-template-columns:1.5fr .75fr 1fr 1fr;gap:52px}
    .footer-brand{display:flex;gap:11px;align-items:flex-start}
    .footer-brand img{width:36px;margin-top:2px}
    .footer-brand .brand-name{color:#3a241d;font-size:21px}
    .footer-brand .brand-tag{color:#9a6b31}
    .footer-copy{margin:11px 0 12px;color:#5d4b41;font-size:10.5px;line-height:1.52;max-width:330px}
    .footer-col h4{margin:3px 0 10px;font-size:11px;color:#4f3229}
    .footer-col a,.footer-col p{display:block;margin:4px 0;color:#5f4c42;font-size:9.5px;line-height:1.35}
    .hours{display:grid;grid-template-columns:auto auto;gap:6px 16px}
    .hours span{font-size:9.5px;color:#5f4c42}
    .footer-bottom{margin-top:19px;padding-top:8px;border-top:1px solid rgba(128,87,50,.16);display:flex;justify-content:space-between;gap:20px;color:#8c7569;font-size:8.5px}

    /* ---------- MOBILE CTA ---------- */
    .mobile-sticky{display:none}

    /* ---------- INFO STRIP / MOBILE DRAWER ---------- */
    .info-strip{background:#fffaf2;border-bottom:1px solid #e4d2b0;color:var(--ink)}
    .info-strip-inner{display:flex;align-items:center;justify-content:center;gap:34px;min-height:54px;font-size:12px}
    .info-item{display:flex;align-items:center;gap:8px}
    .info-item strong{font-weight:700;color:var(--wine)}
    .drawer-backdrop{display:none}
    .mobile-drawer{display:none}

    /* ---------- MOBILE ---------- */
    @media (max-width: 800px){
      .container{width:min(calc(100% - 28px),680px)}
      .site-header{height:72px;background:rgba(29,10,7,.86);backdrop-filter:blur(8px)}
      .header-inner{gap:12px}
      .brand{min-width:0}
      .brand img{width:32px;height:32px}
      .brand-name{font-size:20px}
      .brand-tag{display:none}
      .nav,.reserve-top{display:none}
      .menu-toggle{display:flex}

      .hero{min-height:540px;background-position:58% center;align-items:flex-end}
      .hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(24,8,5,.10),rgba(24,8,5,.35) 45%,rgba(24,8,5,.72) 100%)}
      .hero-content{padding:128px 0 32px;margin-inline:auto;text-align:center;max-width:100%}
      .hero-inner{min-height:540px;align-items:flex-end}
      .hero-card{padding:0 0 32px;max-width:100%;width:100%}
      .hero-badge{justify-content:center;font-size:9px;letter-spacing:.1em;margin-bottom:10px}
      .welcome{font-size:26px}
      .hero h1{font-size:48px;line-height:.95;letter-spacing:-.025em}
      .hero-kicker{font-size:10px;letter-spacing:.18em;margin-top:11px}
      .hero-copy{font-size:12.5px;line-height:1.5;max-width:330px;margin:17px auto 0}
      .hero-actions{justify-content:center;gap:10px;margin-top:22px}
      .btn{height:42px;padding:0 18px;font-size:10.5px}

      .menu-section{padding:24px 0 26px}
      .section-label{font-size:9px}
      .section-title{font-size:31px;margin-top:5px}
      .tabs{grid-template-columns:repeat(4,1fr);gap:6px;margin:13px 0 15px}
      .tab{height:58px;font-size:8.5px;padding:30px 2px 5px;position:relative;border-radius:8px}
      .tab::before{position:absolute;top:7px;left:50%;transform:translateX(-50%);width:21px;height:21px;border:1px solid rgba(89,52,34,.25);border-radius:6px;display:grid;place-items:center;font-size:11px;content:"◇"}
      .tab.active::before{border-color:rgba(255,255,255,.35);content:"✦"}
      .menu-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
      .food-image{height:101px}
      .food-body{padding:9px 10px 11px;min-height:126px}
      .food-title{font-size:17px}
      .food-desc{font-size:9.7px;min-height:55px}
      .food-price{font-size:10.5px}

      .experience{padding:24px 0 29px}
      .experience-grid{display:block}
      .experience-copy{text-align:center}
      .experience-copy .section-label{justify-content:center}
      .experience-copy h2{font-size:31px;margin:7px auto 8px;max-width:340px}
      .experience-copy p{display:none}
      .experience-media{display:grid;grid-template-columns:1fr;height:220px;margin-top:24px}
      .experience-media figure{display:none}
      .experience-media figure:nth-child(3){display:block;height:220px}
      .experience-copy p{display:block;font-size:12px;max-width:330px;margin-inline:auto}
      .experience-copy ul{text-align:left;max-width:330px;margin-inline:auto!important;font-size:11px!important}

      .info-strip-inner{justify-content:flex-start;gap:18px;overflow-x:auto;min-height:58px;white-space:nowrap;font-size:10px}
      .info-item{flex:0 0 auto}
      .booking{padding:28px 0 32px}
      .booking-inner{display:block}
      .booking h3{font-size:31px}
      .booking-form{grid-template-columns:minmax(0,1fr) minmax(0,1fr);margin-top:18px;min-width:0}
      .booking-form .control{min-width:0;width:100%}
      footer{padding:32px 0 80px}
      .footer-grid{grid-template-columns:1fr 1fr;gap:28px 20px}
      .footer-brand{grid-column:1/-1}
      .footer-bottom{display:block;line-height:1.5;min-width:0;overflow-wrap:anywhere}
      .footer-bottom span{display:block;margin-top:8px}
      .mobile-sticky{display:block;position:fixed;left:0;right:0;bottom:0;z-index:60;background:#5e0908;padding:10px 14px calc(12px + env(safe-area-inset-bottom));border-top:1px solid rgba(238,190,104,.23)}
      .mobile-sticky a{height:48px;border:1px solid rgba(230,177,85,.22);border-radius:10px;background:#a9151a;color:#fff;display:flex;align-items:center;justify-content:center;font:600 18px/1 "Cormorant Garamond",serif;box-shadow:0 8px 24px rgba(0,0,0,.28)}
      .mobile-drawer{display:flex;position:fixed;inset:0 0 0 auto;width:min(88vw,360px);z-index:90;transform:translateX(105%);transition:transform .25s ease;background:#fbf5ea;color:var(--ink);padding:26px 22px calc(26px + env(safe-area-inset-bottom));flex-direction:column;box-shadow:-18px 0 40px rgba(42,17,10,.22)}
      .mobile-drawer.open{transform:translateX(0)}
      .mobile-drawer nav{display:grid;gap:4px;margin-top:24px}
      .mobile-drawer nav a{padding:14px 10px;font:600 22px/1.1 "Cormorant Garamond",serif;color:var(--ink);border-bottom:1px solid rgba(115,76,51,.12)}
      .mobile-drawer nav a:hover,.mobile-drawer nav a:focus-visible{color:var(--wine);background:#fffaf2}
      .drawer-meta{margin-top:auto;padding-top:20px;border-top:1px solid #dfcda9;font-size:11px;line-height:1.6;color:var(--muted)}
      .drawer-backdrop.open{display:block;position:fixed;inset:0;z-index:85;background:rgba(20,8,5,.55)}
    }

    @media (max-width: 430px){
      .container{width:calc(100% - 24px)}
      .hero{min-height:545px}
      .hero h1{font-size:45px}
      .hero-actions{width:100%}
      .hero-actions .btn{flex:1;padding:0 10px}
      .menu-grid{gap:8px}
      .food-image{height:96px}
      .footer-grid{grid-template-columns:1fr}
      .footer-col{grid-column:1/-1}
      .footer-brand{display:grid;grid-template-columns:minmax(0,1fr) 44px;grid-template-areas:"identity social" "tagline social";align-items:center;gap:6px 12px}
      .footer-brand > div:first-child{grid-area:identity;min-width:0}
      .footer-brand > p{grid-area:tagline;margin:0;max-width:none}
      .footer-brand > .social{grid-area:social;align-self:center}
    }
  
    /* ===== Enhancements senior UI/UX ===== */
    .skip-link{position:absolute;left:-9999px;top:8px;background:#fff;color:var(--wine);padding:8px 12px;border-radius:8px;z-index:999}
    .skip-link:focus{left:12px}
    .tabs{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;padding-bottom:4px;max-width:100%;justify-content:flex-start}
    .tabs::-webkit-scrollbar{display:none}
    .tab{white-space:nowrap;flex:0 0 auto;min-width:92px;display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:0 14px;height:38px}
    .tab .count{font-size:11px;opacity:.75;background:rgba(255,255,255,.22);padding:1px 6px;border-radius:999px}
    .tab.active .count{background:rgba(255,255,255,.9);color:var(--red)}
    .tab:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
    .menu-grid{transition:opacity .18s}
    .menu-grid.is-filtering{opacity:.55}
    .food-card{display:flex;flex-direction:column;transition:transform .18s, box-shadow .18s;position:relative}
    .food-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(74,42,25,.14)}
    .food-card:focus-within{outline:2px solid var(--gold);outline-offset:2px}
    .food-image{width:100%;height:138px;object-fit:cover;display:block;background:#efe3d0}
    .food-body{flex:1;display:flex;flex-direction:column}
    .food-title{font-size:17px;line-height:1.08;min-height:auto;margin-bottom:6px}
    .food-desc{flex:1;min-height:42px}
    .food-price{margin-top:10px;display:flex;align-items:center;justify-content:space-between;gap:8px}
    .price-tag{color:var(--red);font-weight:800;font-size:13.5px}
    .price-tag small{font-weight:600;opacity:.7;font-size:11px}
    .btn-add{font-size:11px;background:var(--wine);color:white;border:0;padding:6px 10px;border-radius:6px;cursor:pointer;font-weight:600}
    .btn-add:hover{background:var(--red)}
    .empty-state{grid-column:1/-1;text-align:center;padding:28px 12px;color:var(--muted);background:#fffaf2;border:1px dashed #dfcda9;border-radius:8px;display:none}
    .menu-head{display:flex;flex-wrap:wrap;align-items:end;justify-content:space-between;gap:12px;margin:10px 0 6px}
    .menu-head p{margin:0;color:var(--muted);font-size:13px;max-width:560px;line-height:1.45}
    .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}
    /* lightbox */
    .lightbox{position:fixed;inset:0;background:rgba(17,10,8,.72);display:none;align-items:center;justify-content:center;padding:20px;z-index:80}
    .lightbox.open{display:flex}
    .lightbox img{max-width:min(92vw,840px);max-height:82vh;border-radius:12px;box-shadow:0 18px 44px rgba(0,0,0,.45)}
    .lightbox .close{position:absolute;top:16px;right:16px;background:white;border:0;width:36px;height:36px;border-radius:999px;font-size:18px;cursor:pointer}
    .hero-actions .btn:focus-visible,.btn-add:focus-visible,.mobile-sticky a:focus-visible{outline:3px solid var(--gold-2);outline-offset:3px}
    .mobile-drawer nav a:focus-visible{outline:3px solid var(--gold);outline-offset:-3px}
    body.drawer-open{overflow:hidden}
    @media (min-width: 801px){.mobile-drawer,.drawer-backdrop{display:none!important}}
    @media (max-width: 760px){
      .tabs{gap:6px}
      .tab{min-width:78px;height:34px;font-size:11.5px;padding:0 10px}
      .food-image{height:118px}
    }

    /* ---------- STITCH FINAL HANDOFF ---------- */
    :root{--stitch-surface:#fcf9f8;--stitch-cream:#f5f0e5;--stitch-ink:#1c1b1b;--stitch-primary:#722f37;--stitch-brass:#d4af37}
    body{background:var(--stitch-surface);font-family:"Hanken Grotesk",system-ui,sans-serif;color:var(--stitch-ink)}
    .site-header{position:fixed;inset:0 0 auto;height:76px;background:rgba(252,249,248,.94);backdrop-filter:blur(14px);border-bottom:1px solid rgba(114,47,55,.10);box-shadow:0 2px 12px rgba(28,27,27,.06)}
    .brand-name{font-family:"Libre Caslon Text",serif;color:var(--stitch-primary)}
    .brand-tag{color:var(--stitch-primary)}
    .nav a{color:#5b5553;font-size:14px;padding:27px 0 23px}
    .nav a.active::after{background:var(--stitch-primary)}
    .reserve-top{background:var(--stitch-primary);border-radius:4px;height:40px;min-width:122px;font-size:12px;text-transform:uppercase;letter-spacing:.06em}
    .menu-toggle{color:var(--stitch-primary);width:44px;height:44px;padding:9px;display:none;flex-direction:column;justify-content:center;gap:5px}
    .menu-toggle span{display:block;width:26px;height:2px;background:currentColor;border-radius:2px;transform-origin:center;transition:transform .24s ease,opacity .18s ease}
    .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.open span:nth-child(2){opacity:0;transform:scaleX(.25)}
    .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .hero{margin-top:76px;min-height:650px;align-items:center;background-position:center 52%}
    .hero::before{content:"";position:absolute;inset:0;background:rgba(28,15,12,.56);z-index:1}
    .hero-inner{min-height:650px;align-items:center;justify-content:center}
    .hero-card{max-width:780px;padding:0;text-align:center}
    .hero-badge{display:none}
    .welcome{display:none}
    .hero h1{font-family:"Libre Caslon Text",serif;font-size:clamp(45px,5vw,76px);line-height:1.08;letter-spacing:-.02em}
    .hero-kicker{display:none}
    .hero-copy{max-width:670px;margin:22px auto 0;font-size:18px;line-height:1.55;color:#f7f0e9}
    .hero-actions{justify-content:center;margin-top:30px;gap:12px}
    .btn{height:46px;border-radius:4px;text-transform:uppercase;letter-spacing:.06em;font-size:12px}
    .btn-primary{background:var(--stitch-primary)}
    .btn-outline{border-color:#f5eee9;background:transparent}
    .info-strip{background:var(--stitch-cream);border-bottom:1px solid #e5e2e1}
    .info-strip-inner{min-height:70px;justify-content:space-between;font-size:14px}
    .info-item strong{color:var(--stitch-primary)}
    .menu-section{background:var(--stitch-surface);border-bottom:0;padding:72px 0 78px}
    .section-label,.ornament{display:none}
    .section-title{font-family:"Libre Caslon Text",serif;color:var(--stitch-primary);font-size:48px;margin:0 0 12px}
    .menu-head{display:block;text-align:center;margin:0 auto 28px}
    .menu-head p:first-child{font-size:18px;color:#5b5553;max-width:650px;margin:0 auto 14px}
    .menu-head p:nth-child(2){font-size:13px}
    .menu-section,.experience,.booking,footer{scroll-margin-top:92px}
    .booking-inner a{color:var(--stitch-primary)!important;text-decoration:underline;text-underline-offset:3px}
    .booking-location{color:#625b58!important}
    .tabs{max-width:820px;margin:0 auto 32px}
    .tab{border-color:rgba(114,47,55,.16);background:var(--stitch-cream);border-radius:4px;color:#4d4745}
    .tab.active{background:var(--stitch-primary);border-color:var(--stitch-primary)}
    .menu-grid{gap:24px}
    .food-card{background:var(--stitch-cream);border:1px solid rgba(114,47,55,.12);border-radius:10px;box-shadow:0 3px 12px rgba(28,27,27,.06)}
    .food-image{height:190px}
    .food-body{padding:18px;min-height:144px}
    .food-title{font-family:"Libre Caslon Text",serif;font-size:22px}
    .food-desc{font-size:13px;line-height:1.5;color:#625b58}
    .food-price{color:var(--stitch-brass);font-size:14px}
    .experience{background:var(--stitch-cream);color:var(--stitch-ink);padding:78px 0}
    .experience-grid{grid-template-columns:5fr 6fr;gap:70px}
    .experience-copy{text-align:left}
    .experience-copy .section-label{display:block;color:var(--stitch-primary);font-size:12px;letter-spacing:.12em}
    .experience-copy .section-label::before,.experience-copy .section-label::after{display:none}
    .experience-copy h2{font-family:"Libre Caslon Text",serif;color:var(--stitch-primary);font-size:48px;line-height:1.15;max-width:520px}
    .experience-copy p{color:#625b58;font-size:18px;line-height:1.55;max-width:520px}
    .experience-copy ul{color:#625b58!important;font-size:15px!important}
    .experience-media{display:block}
    .experience-media figure{display:none;height:500px;border:0;border-radius:12px;box-shadow:0 8px 22px rgba(28,27,27,.10)}
    .experience-media figure:nth-child(3){display:block}
    .booking{background:var(--stitch-surface);color:var(--stitch-ink);padding:78px 0}
    .booking-inner{display:block;max-width:900px;background:#f5f5dc;border:1px solid #e5e2e1;border-radius:12px;box-shadow:0 6px 20px rgba(28,27,27,.08);padding:52px}
    .booking h3{font-family:"Libre Caslon Text",serif;color:var(--stitch-ink);font-size:42px;text-align:center}
    .booking .section-label{display:none}
    .booking p{color:#625b58;font-size:16px;text-align:center}
    .booking-form{margin-top:28px}
    .control{height:46px;border:1px solid rgba(28,27,27,.18);border-radius:4px;background:#fff;color:var(--stitch-ink);font-size:14px}
    footer{background:#211b1b;color:#f5f0e5;border-top:0;padding:54px 0 18px}
    .footer-brand .brand-name,.footer-col h4{color:#fff}
    .footer-brand .brand-tag,.footer-col a,.footer-col p,.hours span{color:#d8cfca}
    .footer-brand{display:grid;grid-template-columns:1fr;grid-template-areas:"identity" "tagline";align-items:center;gap:8px}
    .footer-brand > div:first-child{grid-area:identity;min-width:0}
    .footer-brand > p{grid-area:tagline;margin:0;max-width:none}
    .footer-brand > .social{display:none}
    .footer-col address{font-style:normal;color:#d8cfca;font-size:9.5px;line-height:1.5}
    .contact-list{display:grid;gap:12px;margin:0}
    .contact-item{display:grid;grid-template-columns:28px minmax(0,1fr);gap:10px;align-items:start;color:#d8cfca;font-size:11px;line-height:1.45}
    .contact-item svg{width:20px;height:20px;margin-top:1px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;color:#e2bd69}
    .contact-item a{display:inline!important;min-height:0!important;margin:0!important;color:#f5f0e5;text-decoration:none}
    .contact-item a:hover,.contact-item a:focus-visible{text-decoration:underline;text-underline-offset:3px;color:#fff}
    .footer-links{display:grid;gap:5px}
    .footer-links a{display:block;margin:0}
    .hours{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:6px 18px}
    .hours dt,.hours dd{margin:0;color:#d8cfca;font-size:9.5px;line-height:1.35}
    .hours dd{text-align:right}
    .footer-copy,.footer-bottom{color:#b9ada7}
    .footer-bottom{border-top-color:rgba(255,255,255,.14)}
    .social a{display:inline-grid;place-items:center;min-width:44px;min-height:44px}
    .social{display:flex;gap:8px;align-items:center}
    .social-link{border:1px solid rgba(255,255,255,.24);border-radius:50%;color:#f5f0e5;text-decoration:none;transition:background .18s ease,color .18s ease,border-color .18s ease}
    .social-link:hover,.social-link:focus-visible{background:#f5f0e5;color:var(--stitch-primary);border-color:#f5f0e5}
    .social-link svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
    .header-inner > .btn{min-height:44px;height:44px!important}
    .lightbox .close{width:44px;height:44px}
    @media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}
    body:not(.landing-page){padding-top:76px}
    .landing-signatures{padding-block:78px}
    .landing-signatures .menu-head{display:flex;align-items:end;justify-content:space-between;gap:24px;text-align:left}
    .landing-signatures .section-label{justify-content:flex-start}
    .landing-signatures .section-label::before,.landing-signatures .section-label::after{display:none}
    .dark-outline{border-color:var(--stitch-primary);color:var(--stitch-primary);background:transparent}
    .signature-grid{grid-template-columns:repeat(4,1fr)}
    .landing-experience{padding-block:88px}
    .landing-gallery{background:var(--stitch-surface);padding:88px 0}
    .split-card{display:grid;grid-template-columns:1fr 1.15fr;gap:64px;align-items:center}
    .split-card h2{font:600 48px/1.12 "Libre Caslon Text",serif;color:var(--stitch-primary);margin:12px 0}
    .split-card p{max-width:460px;color:#625b58;font-size:18px;line-height:1.55;margin:0 0 26px}
    .split-card img{width:100%;height:360px;object-fit:cover;border-radius:12px}
    .hero-actions .btn{position:relative;z-index:3;font-weight:700;text-shadow:none}
    .hero-actions .btn-primary{color:#fff!important;background:#722f37}
    .hero-actions .btn-outline{color:#fff!important;background:rgba(28,27,27,.48);border:2px solid #fff}
    .landing-booking .btn-primary{color:#fff!important;background:#722f37}
    .btn-add{display:inline-flex;align-items:center;justify-content:center;text-align:center;line-height:1;min-width:72px;min-height:44px}
    .landing-experience .experience-media figure{display:block;height:360px;margin:0}
    .landing-booking{background:var(--stitch-cream);padding-block:60px}
    .landing-booking .booking-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;max-width:1000px;background:transparent;border:0;box-shadow:none;padding:0}
    .landing-booking h2{font:600 42px/1.1 "Libre Caslon Text",serif;margin:10px 0;color:var(--stitch-ink)}
    .landing-booking .section-label{justify-content:flex-start;color:var(--stitch-primary)}
    .landing-booking p{margin:0;text-align:left}
    .landing-page .info-strip{background:var(--stitch-cream);border-bottom:1px solid rgba(114,47,55,.12)}
    .landing-page .info-strip-inner{display:grid;grid-template-columns:1fr 1.25fr;gap:16px;padding:14px 0}
    .landing-page .info-item{display:flex;flex-direction:column;align-items:flex-start;gap:3px;padding:13px 16px;background:rgba(255,255,255,.62);border-left:3px solid var(--stitch-primary);border-radius:6px;box-shadow:0 2px 8px rgba(28,27,27,.04)}
    .landing-page .info-item strong{font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--stitch-primary)}
    .landing-page .info-item span{font-size:13px;color:#625b58;line-height:1.35}
    footer .footer-grid{grid-template-columns:1.4fr 1fr 1fr}
    .page-intro{background:var(--stitch-cream);padding:72px 0 56px;text-align:center}
    .page-intro h1{font:600 clamp(42px,6vw,68px)/1.08 "Libre Caslon Text",serif;color:var(--stitch-primary);margin:12px auto;max-width:820px}
    .page-intro p{max-width:660px;margin:0 auto;color:#625b58;font-size:18px;line-height:1.55}
    .about-section{padding:88px 0;background:var(--stitch-surface)}
    .about-section .split-card{grid-template-columns:1.1fr 1fr}
    .about-section .split-card img{height:480px}
    .about-section h2{font-size:42px}
    .about-list{padding-left:20px;color:#625b58;line-height:1.8;margin:24px 0 30px}
    .standalone-booking{padding:76px 0;background:var(--stitch-surface)}
    .standalone-booking .booking-inner{margin-inline:auto}
    @media(max-width:800px){
      footer .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      body:not(.landing-page){padding-top:68px}
      .landing-signatures{padding-block:52px}
      .landing-signatures .menu-head,.landing-booking .booking-inner{display:block;text-align:center}
      .landing-signatures .section-label,.landing-booking .section-label{justify-content:center}
      .landing-signatures .btn,.landing-booking .btn{margin-top:22px}
      .signature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .landing-experience,.landing-gallery{padding-block:58px}
      .split-card,.about-section .split-card{grid-template-columns:1fr;gap:28px;text-align:center}
      .split-card h2{font-size:40px}
      .split-card p{font-size:16px;margin-inline:auto}
      .split-card img,.about-section .split-card img{height:280px;order:-1}
      .landing-booking h2{font-size:36px}
      .landing-booking p{text-align:center}
      .page-intro{padding:54px 0 42px}
      .page-intro p{font-size:16px}
      .about-section,.standalone-booking{padding:58px 0}
    }
    @media (max-width:800px){
      .site-header{height:68px;z-index:100}
      .menu-toggle{display:flex}
      .header-inner > .btn{min-height:44px}
      .mobile-drawer{inset:68px 0 0 auto;height:calc(100vh - 68px)}
      .drawer-backdrop.open{inset:68px 0 0}
      .hero{margin-top:68px;min-height:610px}
      .hero-inner{min-height:610px}
      .hero h1{font-size:46px}
      .hero-copy{font-size:16px}
      .info-strip-inner{min-height:66px;font-size:12px}
      .landing-page .info-strip-inner{grid-template-columns:1fr;gap:8px;min-height:0;padding:12px 0;overflow:visible;white-space:normal}
      .landing-page .info-item{display:flex;min-width:0;padding:11px 14px}
      .landing-page .info-item span{white-space:normal}
      .reserve-top,.tab,.btn-add{min-height:44px}
      .tab{height:44px}
      .tab::before{display:none!important;content:none!important}
      .btn-add{padding-inline:12px}
      .booking-form .btn{min-height:44px}
      .footer-col a{min-height:44px;display:flex;align-items:center}
      html{scroll-padding-bottom:88px}
      .menu-section{padding:48px 0 54px}
      .section-title{font-size:40px}
      .menu-head p:first-child{font-size:15px}
      .food-image{height:150px}
      .food-body{padding:13px;min-height:142px}
      .food-title{font-size:18px}
      .food-desc{font-size:11px}
      .experience{padding:56px 0}
      .experience-copy{text-align:center}
      .experience-copy h2{font-size:40px}
      .experience-copy p{font-size:15px}
      .experience-copy ul{text-align:left;max-width:330px;margin-inline:auto!important}
      .experience-media figure:nth-child(3){height:330px;margin-top:30px}
      .landing-experience .experience-media{height:auto;margin-top:28px}
      .landing-experience .experience-media figure{height:280px;margin:0}
      .booking{padding:48px 0 96px}
      .booking-inner{padding:28px 18px}
      .booking h3{font-size:36px}
      .booking p{font-size:14px}
      footer{padding-bottom:100px}
    }
    @media(max-width:430px){footer .footer-grid{grid-template-columns:1fr}}
  
