
  :root{
    --red:#D32F2F; --orange:#C85227; --yellow:#F4C430;
    --teal:#72B043; --blue:#5C8A2B;
    --lime:#72B043; --lime-dark:#5E9637; --brown:#7A4A1E;
    --cream:#FAF8F5; --ink:#1A1817; --text:#2B1B0E;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  .sticky-call-bar{display:none;}
  html{scroll-behavior:smooth;}
  body{font-family:'Poppins',sans-serif; color:var(--text); background:var(--cream);}
  h1,h2,h3{font-family:'Lora',serif;}
  a{text-decoration:none; color:inherit;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1100px; margin:0 auto; padding:0 28px;}

  /* ---------- nav ---------- */
  header{position:sticky; top:0; z-index:50; background:var(--cream); border-bottom:4px solid var(--ink);}
  nav.wrap{display:flex; align-items:center; justify-content:space-between; height:96px;}
  .logo{font-family:'Lora',serif; font-weight:800; font-size:26px; color:var(--ink);}
  .logo span{color:var(--red);}
  .logo-img{height:78px; width:auto; display:block;}
  .navlinks{display:flex; align-items:center; gap:30px; font-weight:600; font-size:16px;}
  .navlinks a{position:relative; padding:4px 0; display:inline-flex; align-items:center; min-height:44px;}
  .navlinks a::after{content:""; position:absolute; left:0; bottom:0; height:3px; width:0; background:var(--red); transition:width .2s;}
  .navlinks a:hover::after{width:100%;}
  .btn{display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:12px 26px; border-radius:999px; font-weight:700; font-size:15px;
       background:var(--red); color:#fff; box-shadow:0 4px 0 #7A2A08; transition:transform .15s;}
  .btn:hover{transform:translateY(-2px);}
  .btn.alt{background:var(--teal); box-shadow:0 4px 0 #4E7A28;}
  .btn.outline{background:transparent; color:var(--ink); box-shadow:none; border:2.5px solid var(--ink);}

  /* ---------- picado divider ---------- */
  .picado{display:flex; height:30px; overflow:hidden;}
  .picado div{flex:1 1 0; min-width:18px; height:30px; margin-right:9px; clip-path:polygon(0 0,100% 0,50% 100%);}
  .picado div:last-child{margin-right:0;}

  /* ---------- hero ---------- */
  .hero{position:relative; padding:90px 0 110px 0; text-align:center; overflow:hidden;
    background:linear-gradient(150deg, var(--orange) 0%, var(--orange) 55%, var(--lime) 100%);}
  .hero::before{content:""; position:absolute; inset:0; background:rgba(0,0,0,0.35); pointer-events:none;}
  .hero .wrap{position:relative; z-index:1;}
  .hero .eyebrow{font-weight:700; letter-spacing:3px; text-transform:uppercase; font-size:14px; color:#fff; text-shadow:0 2px 0 rgba(0,0,0,.2);}
  .hero h1{font-size:82px; font-weight:800; color:#FFFDF7; margin:14px 0 18px 0; text-shadow:0 6px 0 rgba(0,0,0,.18); line-height:1.05;}
  .hero h1 .h1-sub{display:block; font-size:22px; font-weight:600; letter-spacing:0.5px; margin-top:10px; text-shadow:0 3px 0 rgba(0,0,0,.15);}
  .hero p{font-size:20px; color:#FFFDF7; max-width:560px; margin:0 auto 34px auto; font-weight:500;}
  .hero .ctas{display:flex; gap:18px; justify-content:center; flex-wrap:wrap;}
  .hero .ctas .btn.outline{background:#FFFDF7; color:var(--ink); border:none; box-shadow:0 4px 0 rgba(0,0,0,.2);}
  .hero .hero-badge{display:inline-block; margin-top:26px; padding:10px 22px; border-radius:999px;
    background:rgba(255,255,255,.18); border:1.5px solid rgba(255,255,255,.5); color:#fff;
    font-weight:600; font-size:14px; letter-spacing:0.3px;}

  /* ---------- menu ---------- */
  section{padding:80px 0;}
  .section-head{text-align:center; margin-bottom:48px;}
  .section-head .kicker{color:var(--red); font-weight:700; letter-spacing:2px; text-transform:uppercase; font-size:14px;}
  .section-head h2{font-size:46px; font-weight:800; color:var(--ink); margin-top:6px;}

  .menu-card{background:var(--cream); border-radius:26px; padding:48px 56px; display:flex; gap:60px;
    border:10px solid; border-image:repeating-linear-gradient(45deg, var(--orange) 0 16px, var(--lime) 16px 32px) 10;
    box-shadow:0 10px 0 rgba(0,0,0,.08);}
  .menu-col{flex:1;}
  .menu-col h3{font-size:28px; font-weight:800; margin-bottom:20px;}
  .menu-col.a h3{color:var(--red);}
  .menu-col.b h3{color:var(--blue);}
  .menu-col + .menu-col{border-left:2px dashed #D4A017; padding-left:60px;}
  .item{display:flex; align-items:flex-start; margin-bottom:16px;}
  .item .name{font-weight:700; font-size:17px; white-space:nowrap; flex-shrink:0;}
  .item .mod{font-style:italic; font-size:14px; color:#6B5344; margin-left:6px;}
  .item .leader{flex:1 1 auto; min-width:6px; border-bottom:2px dotted #E0D2B8; margin:0 8px 5px 8px;}
  .item .price{font-weight:800; color:var(--red); font-size:17px; white-space:normal; text-align:right; flex-shrink:1; flex-basis:auto; max-width:150px;}
  .weekend{text-align:center; color:var(--teal); font-family:'Lora',serif; font-style:italic; font-weight:700; margin:18px 0;}
  .menu-note{text-align:center; margin-top:28px; color:#6B5344; font-size:15px;}

  /* ---------- full menu ---------- */
  .fullmenu{background:var(--orange);}
  .fullmenu .section-head .kicker{color:var(--ink);}
  .fullmenu .section-head h2{color:#fff; text-shadow:0 3px 0 rgba(0,0,0,.15);}
  .fullmenu-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px;}
  .fullmenu-card{background:var(--cream); border-radius:22px; padding:34px 30px;
    border:6px solid var(--lime); box-shadow:0 8px 0 rgba(0,0,0,.12);}
  .fullmenu-card h3{font-family:'Lora',serif; font-weight:800; font-size:21px; color:var(--red);
    margin:22px 0 10px 0; text-decoration:underline; text-decoration-color:var(--lime); text-underline-offset:4px;}
  .fullmenu-card h3:first-child{margin-top:0;}
  .fm-item{font-size:15px; margin-bottom:6px; line-height:1.45;}
  .fm-item b{font-weight:700;}
  .fm-item i{font-style:italic; color:#6B5344;}
  .fm-price{color:var(--red); font-weight:700;}
  .meats-band{margin-top:26px; background:var(--cream); border-radius:22px; padding:30px 40px; text-align:center;
    border:6px solid var(--lime); box-shadow:0 8px 0 rgba(0,0,0,.12);}
  .meats-band h2, .meats-band h3{font-family:'Lora',serif; font-weight:800; font-size:26px; color:var(--red);
    text-decoration:underline; text-decoration-color:var(--lime); text-underline-offset:5px; margin-bottom:10px;}
  .meats-band p{font-size:16px; max-width:640px; margin:0 auto;}

  /* ---------- gallery ---------- */
  .gallery{background:#fff8ea;}
  .gallery-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; grid-auto-rows:220px;}
  .gallery-grid img{width:100%; height:100%; object-fit:cover; border-radius:16px;
    border:4px solid #fff; box-shadow:0 6px 0 rgba(0,0,0,.08); transition:transform .2s;}
  .gallery-grid img:hover{transform:scale(1.03);}
  .gallery-grid .tall{grid-row:span 2;}

  /* ---------- our story ---------- */
  .our-story{background:var(--cream);}
  .story-grid{display:grid; grid-template-columns:1fr 1.3fr; gap:48px; align-items:center;}
  .story-photo{aspect-ratio:4/5; border-radius:22px; border:6px solid var(--lime);
    background:repeating-linear-gradient(45deg, #F0E4D0 0 16px, #E8DAC0 16px 32px);
    display:flex; align-items:center; justify-content:center; text-align:center; padding:24px;
    color:#8a7960; font-weight:600; font-size:15px; line-height:1.5;}
  .story-text h3{font-size:22px; color:var(--red); margin-bottom:14px;}
  .story-text p{font-size:16px; line-height:1.65; margin-bottom:16px; color:var(--text);}
  .story-draft-tag{display:inline-block; background:#F5E6C8; color:var(--brown); font-weight:700;
    font-size:12px; letter-spacing:0.5px; text-transform:uppercase; padding:5px 12px;
    border-radius:999px; margin-bottom:18px;}

  /* ---------- reviews ---------- */
  .reviews{background:#fff;}
  .rating-row{display:flex; justify-content:center; gap:56px; flex-wrap:wrap; margin-bottom:50px;}
  .rating-badge{text-align:center;}
  .rating-badge .stars{color:var(--orange); font-size:26px; letter-spacing:3px;}
  .rating-badge .score{font-family:'Lora',serif; font-weight:800; font-size:32px; color:var(--ink);}
  .rating-badge .platform{font-size:14px; color:#6B5344; font-weight:600;}
  .testimonial-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:26px;}
  .testimonial{background:var(--cream); border-radius:20px; padding:30px; border:3px solid var(--lime);}
  .testimonial .stars{color:var(--orange); font-size:16px; margin-bottom:10px;}
  .testimonial p{font-size:15.5px; line-height:1.55; color:var(--text); margin-bottom:14px;}
  .testimonial .who{font-weight:700; font-size:14px; color:var(--ink);}
  .testimonial .src{font-size:12.5px; color:#6B5344;}

  /* ---------- visit ---------- */
  .visit{background:#fff8ea;}
  .visit-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px;}
  .map-embed{margin-top:32px; border-radius:22px; overflow:hidden; border:3px solid var(--ink);}
  .map-embed iframe{width:100%; height:340px; border:0; display:block;}
  .card-btns{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px;}
  .card{background:#fff; border-radius:22px; padding:38px; border:3px solid var(--ink);}
  .card h3{font-size:24px; color:var(--ink); margin-bottom:18px; display:flex; align-items:center; gap:10px;}
  .hours-row{display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px dashed #E5D9C5; font-size:15.5px;}
  .hours-row:last-child{border-bottom:none;}
  .hours-row span:first-child{font-weight:600;}
  .placeholder{color:var(--orange); font-style:italic;}
  .contact-line{display:flex; align-items:center; gap:10px; margin-bottom:14px; font-size:16px;}
  .dot{width:10px; height:10px; border-radius:50%; background:var(--red); flex-shrink:0;}

  /* ---------- footer ---------- */
  footer{background:var(--ink); color:#fff; padding:0 0 40px 0;}
  .foot-wrap{padding:44px 28px 24px 28px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;}
  footer .logo2{font-family:'Lora',serif; font-weight:800; font-size:22px; color:#fff;}
  footer .logo2 span{color:var(--yellow);}
  footer .logo-img-small{height:54px; width:auto; display:block; background:var(--cream); border-radius:50%; padding:3px;}
  footer .foot-links{display:flex; gap:26px; font-size:14.5px; font-weight:600;}
  .foot-bottom{text-align:center; font-size:13px; opacity:.65; margin-top:18px;}

  /* ---------- sub-page hero ---------- */
  .page-hero{position:relative; padding:64px 0 76px 0; text-align:center; overflow:hidden;
    background:linear-gradient(150deg, var(--orange) 0%, var(--orange) 55%, var(--lime) 100%);}
  .page-hero .eyebrow{font-weight:700; letter-spacing:3px; text-transform:uppercase; font-size:13px; color:#fff; text-shadow:0 2px 0 rgba(0,0,0,.2);}
  .page-hero h1{font-family:'Lora',serif; font-size:58px; font-weight:800; color:#FFFDF7; margin:12px 0 16px 0; text-shadow:0 5px 0 rgba(0,0,0,.18); line-height:1.08;}
  .page-hero p{font-size:19px; color:#FFFDF7; max-width:620px; margin:0 auto 28px auto; font-weight:500;}
  .page-hero .ctas{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
  .page-hero .ctas .btn.outline{background:#FFFDF7; color:var(--ink); border:none; box-shadow:0 4px 0 rgba(0,0,0,.2);}

  /* ---------- breadcrumbs ---------- */
  .crumbs{background:#fff8ea; border-bottom:2px solid #f0e2cb; padding:0;}
  .crumbs ol{list-style:none; display:flex; flex-wrap:wrap; gap:8px; align-items:center;
    max-width:1100px; margin:0 auto; padding:14px 28px; font-size:14px; color:#6B5344;}
  .crumbs a{font-weight:600; color:var(--red);}
  .crumbs a:hover{text-decoration:underline;}
  .crumbs li[aria-current]{font-weight:600; color:var(--ink);}

  /* ---------- article / prose ---------- */
  .prose{max-width:760px; margin:0 auto;}
  .prose h2{font-family:'Lora',serif; font-size:34px; font-weight:800; color:var(--ink); margin:44px 0 14px 0; line-height:1.2;}
  .prose h2:first-child{margin-top:0;}
  .prose h3{font-family:'Lora',serif; font-size:23px; font-weight:800; color:var(--red); margin:30px 0 10px 0;}
  .prose p{font-size:17px; line-height:1.7; margin-bottom:16px; color:var(--text);}
  .prose ul{margin:0 0 18px 22px; font-size:17px; line-height:1.7;}
  .prose li{margin-bottom:8px;}
  .prose a{color:var(--red); font-weight:700; text-decoration:underline; text-underline-offset:3px;}
  .prose strong{font-weight:700;}

  /* ---------- price table ---------- */
  .price-table{width:100%; border-collapse:collapse; margin:0 0 22px 0; font-size:16px;}
  .price-table caption{text-align:left; font-family:'Lora',serif; font-weight:800; font-size:21px;
    color:var(--red); padding-bottom:12px;}
  .price-table th{text-align:left; font-size:13px; text-transform:uppercase; letter-spacing:1px;
    color:#6B5344; border-bottom:2px solid #E5D9C5; padding:8px 0;}
  .price-table th:last-child, .price-table td:last-child{text-align:right;}
  .price-table td{padding:11px 0; border-bottom:1px dashed #E5D9C5; vertical-align:top;}
  .price-table td:first-child{font-weight:600;}
  .price-table td:last-child{font-weight:800; color:var(--red); white-space:nowrap; padding-left:16px;}
  .price-table .sub{display:block; font-weight:400; font-style:italic; font-size:14px; color:#6B5344; margin-top:2px;}

  /* ---------- FAQ ---------- */
  .faq{max-width:760px; margin:0 auto;}
  .faq details{background:var(--cream); border:3px solid var(--lime); border-radius:16px;
    padding:18px 22px; margin-bottom:14px;}
  .faq summary{font-weight:700; font-size:17px; cursor:pointer; list-style:none; color:var(--ink);
    display:flex; justify-content:space-between; align-items:center; gap:16px;}
  .faq summary::-webkit-details-marker{display:none;}
  .faq summary::after{content:"+"; font-size:24px; color:var(--red); font-weight:700; line-height:1;}
  .faq details[open] summary::after{content:"\2013";}
  .faq details p{margin-top:12px; font-size:16px; line-height:1.65; color:var(--text);}
  .faq details a{color:var(--red); font-weight:700;}

  /* ---------- inline figure ---------- */
  .figure{margin:0 auto 8px auto; max-width:760px;}
  .figure img{width:100%; height:auto; border-radius:18px; border:4px solid #fff;
    box-shadow:0 6px 0 rgba(0,0,0,.08);}
  .figure figcaption{font-size:14px; color:#6B5344; text-align:center; margin-top:10px; font-style:italic;}

  /* ---------- CTA band ---------- */
  .cta-band{background:var(--ink); text-align:center;}
  .cta-band h2{font-family:'Lora',serif; font-size:38px; font-weight:800; color:#FFFDF7; margin-bottom:12px;}
  .cta-band p{color:#f0e2cb; font-size:17px; max-width:520px; margin:0 auto 26px auto;}
  .cta-band .ctas{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
  .cta-band .btn.outline{background:#FFFDF7; color:var(--ink); border:none; box-shadow:0 4px 0 rgba(0,0,0,.3);}

  /* ---------- Our Story responsive polish ---------- */
  .prose{max-width:760px;}
  .prose p{max-width:72ch;}
  .prose h2{scroll-margin-top:120px;}
  @media(max-width:760px){
    .prose h2{margin-bottom:12px; line-height:1.18;}
    .prose p{line-height:1.7; margin-bottom:18px;}
    .prose p:last-child{margin-bottom:0;}
  }

  /* ---------- accessibility ---------- */
  .skip-link{position:absolute; left:-9999px; top:0; background:var(--ink); color:#fff;
    padding:12px 20px; z-index:100; border-radius:0 0 8px 0; font-weight:700;}
  .skip-link:focus{left:0;}
  a:focus-visible, summary:focus-visible, button:focus-visible{outline:3px solid var(--red); outline-offset:3px;}
  .visually-hidden{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;}

  @media(max-width:900px){
    nav.wrap{height:auto; padding-top:14px; padding-bottom:14px; flex-wrap:wrap; gap:12px;}
    .navlinks{order:3; width:100%; gap:18px; font-size:14.5px; overflow-x:auto;
      padding-bottom:4px; -webkit-overflow-scrolling:touch;}
    .navlinks a{white-space:nowrap;}
    .logo-img{height:56px;}
  }

  @media(max-width:760px){
    body{padding-bottom:64px;}
    .sticky-call-bar{display:flex; position:fixed; bottom:0; left:0; width:100%; z-index:80;
      background:var(--red); box-shadow:0 -4px 12px rgba(0,0,0,.15);}
    .sticky-call-bar a{flex:1; text-align:center; padding:16px 0; color:#fff; font-weight:700;
      font-size:16px; letter-spacing:0.3px;}
    .hero h1{font-size:52px;}
    .hero h1 .h1-sub{font-size:16px;}
    .page-hero h1{font-size:38px;}
    .story-grid{grid-template-columns:1fr;}
    .page-hero p{font-size:17px;}
    .prose h2{font-size:27px;}
    .prose h3{font-size:20px;}
    .prose p, .prose ul{font-size:16px;}
    .cta-band h2{font-size:28px;}
    .price-table{font-size:15px;}
    .menu-card{flex-direction:column; padding:32px 26px;}
    .menu-col + .menu-col{border-left:none; padding-left:0; border-top:2px dashed #D4A017; padding-top:28px; margin-top:8px;}
    .visit-grid{grid-template-columns:1fr;}
    .section-head h2{font-size:34px;}
    .fullmenu-grid{grid-template-columns:1fr;}
    .testimonial-grid{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns:repeat(2, 1fr); grid-auto-rows:180px;}
    section{padding:56px 0;}
  }


  /* Extra small phones */
  @media(max-width:480px){
    .wrap{padding-left:18px; padding-right:18px;}
    .hero{padding:64px 0 80px 0;}
    .hero h1{font-size:40px;}
    .hero h1 .h1-sub{font-size:15px;}
    .hero p{font-size:17px;}
    .page-hero h1{font-size:32px;}
    .page-hero p{font-size:16px;}
    .section-head h2{font-size:28px;}
    .prose h2{font-size:24px; margin-top:36px;}
    .prose p, .prose ul{font-size:15.5px; line-height:1.65;}
    .btn{padding:12px 20px; font-size:14.5px;}
    .gallery-grid{grid-template-columns:1fr 1fr; grid-auto-rows:150px; gap:12px;}
    .cta-band h2{font-size:24px;}
    .cta-band p{font-size:15.5px;}
    .sticky-call-bar a{font-size:15px; padding:15px 0;}
    .navlinks{gap:14px; font-size:13.5px;}
    .logo-img{height:48px;}
    footer .foot-links{flex-wrap:wrap; gap:14px 18px; justify-content:center;}
  }

  /* Improve touch targets and overflow */
  @media(max-width:760px){
    .navlinks a, .btn, .sticky-call-bar a, footer .foot-links a{
      min-height:44px;
      display:inline-flex;
      align-items:center;
    }
    .hero .ctas, .cta-band .ctas{gap:12px;}
    .hero .ctas .btn, .cta-band .ctas .btn{width:100%; max-width:320px;}
    img{height:auto;}
    .prose{overflow-wrap:break-word; word-wrap:break-word;}
  }


  .story-figure{margin:28px 0; text-align:center;}
  .story-figure img{max-width:100%; height:auto; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,.12);}
  .story-figure-pair{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  @media(max-width:600px){
    .story-figure-pair{grid-template-columns:1fr;}
  }


  .story-photo img{width:100%; height:100%; object-fit:cover; border-radius:12px; display:block;}

  @media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }
