  :root{
    --cream: #F0EAD6;
    --cream-card: #F8F4E7;
    --cream-line: #E1D8BC;
    --ink: #2A2018;
    --ink-soft: #5B4E3F;
    --maroon: #6E1F3D;
    --maroon-dark: #4E1329;
    --maroon-tint: #F3E4EA;
    --gold: #F7C026;
    --gold-dark: #D9A314;
    --radius: 14px;
    --shadow: 0 6px 18px rgba(42,32,24,0.12);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden;}
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Nunito Sans', sans-serif;
    font-weight:600;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  h1,h2,h3{
    font-family:'Chewy', system-ui, sans-serif;
    font-weight:400;
    letter-spacing:0.5px;
    line-height:1.15;
    margin:0 0 .4em;
    color:var(--maroon);
  }
  .eyebrow{
    font-family:'Nunito Sans', sans-serif;
    font-weight:800;
    letter-spacing:2.5px;
    text-transform:uppercase;
    font-size:.75rem;
    color:var(--maroon);
  }
  .wrap{max-width:1120px; margin:0 auto; padding-left:24px; padding-right:24px;}
  section{padding-top:88px; padding-bottom:88px;}
  :focus-visible{outline:3px solid var(--gold-dark); outline-offset:3px;}

  /* ---------- Yolk-drip divider (signature element) ---------- */
  .yolk-divider{
    width:100%;
    height:34px;
    display:block;
    line-height:0;
  }
  .yolk-divider svg{width:100%; height:100%; display:block;}

  /* ---------- Nav ---------- */
  .site-nav{
    position:sticky; top:0; z-index:60;
    background:rgba(240,234,214,0.92);
    backdrop-filter: blur(6px);
    border-bottom:1px solid var(--cream-line);
  }
  .nav-inner{
    max-width:1120px; margin:0 auto; padding:12px 24px;
    display:flex; align-items:center; justify-content:space-between; gap:16px;
  }
  .brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
  .brand img{width:44px; height:44px; border-radius:50%; box-shadow:var(--shadow);}
  .brand-mascot{
    width:auto !important; height:52px !important; border-radius:0 !important;
    box-shadow:none !important; object-fit:contain;
  }
  .brand span{font-family:'Chewy',sans-serif; font-size:1.3rem; color:var(--maroon);}
  .nav-links{display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0;}
  .nav-links a{
    text-decoration:none; font-weight:800; font-size:.92rem; color:var(--ink);
    padding:6px 2px; border-bottom:2px solid transparent; transition:border-color .2s;
  }
  .nav-links a:hover{border-color:var(--gold-dark);}
  .nav-links a.nav-cta{
    background:var(--gold); color:var(--ink) !important; padding:15px 30px; border-radius:999px;
    font-weight:800; font-size:1rem; border-bottom:none !important; box-shadow:var(--shadow);
    transition:background .2s ease, transform .15s ease;
  }
  .nav-links a.nav-cta:hover{background:var(--gold-dark); transform:translateY(-1px);}
  .nav-toggle{
    display:none; background:none; border:none;
    width:46px; height:42px; cursor:pointer; position:relative; padding:0;
    align-items:center; justify-content:center;
  }
  .nav-toggle svg{width:32px; height:26px; display:block;}

  @media (max-width:820px){
    .nav-links{
      position:fixed; inset:64px 0 auto 0; background:var(--cream);
      flex-direction:column; align-items:flex-start; padding:18px 24px 26px;
      border-bottom:1px solid var(--cream-line); box-shadow:var(--shadow);
      transform:translateY(-130%); transition:transform .28s ease; gap:16px;
    }
    .nav-links.open{transform:translateY(0);}
    .nav-cta{width:100%; text-align:center;}
    .nav-toggle{display:flex;}
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    min-height:88vh;
    display:flex; align-items:flex-end;
    padding-top:130px; padding-bottom:70px;
    background:
      linear-gradient(180deg, rgba(20,13,9,0.18) 0%, rgba(20,13,9,0.62) 62%, rgba(20,13,9,0.88) 100%),
      url('food-hero.jpg') center/cover no-repeat, #2A2018;
    color:#fff;
  }
  .hero-content{max-width:660px;}
  .hero-logo{width:118px; margin-bottom:20px; filter:drop-shadow(0 12px 18px rgba(0,0,0,0.5));}
  .status-badge{
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(20,13,9,0.45); border:1px solid rgba(255,255,255,0.3);
    padding:7px 14px 7px 10px; border-radius:999px; font-size:.85rem; font-weight:800;
    color:#fff; backdrop-filter:blur(3px); margin-bottom:18px;
  }
  .status-dot{width:10px; height:10px; border-radius:50%; background:#999; flex-shrink:0;}
  .status-badge.is-open .status-dot{background:#3FCB6E; box-shadow:0 0 0 4px rgba(63,203,110,.25);}
  .status-badge.is-closed .status-dot{background:#E8577A; box-shadow:0 0 0 4px rgba(232,87,122,.22);}

  .hero h1{font-size:clamp(2.6rem, 6vw, 4.2rem); margin-bottom:.15em; color:#fff;}
  .hero .sub{
    font-family:'Chewy', sans-serif; color:var(--gold); font-size:clamp(1.2rem,2.6vw,1.6rem);
    margin-bottom:18px; display:block;
  }
  .hero .sub::after{
    content:""; display:block; width:86px; height:5px; background:var(--gold);
    border-radius:4px; margin-top:10px;
  }
  .hero p.lede{max-width:46ch; color:#EFE6D6; font-weight:600; margin-bottom:26px;}
  .hero-meta{display:flex; flex-wrap:wrap; gap:18px; margin-bottom:30px; font-size:.92rem; font-weight:800;}
  .hero-meta a{text-decoration:none; color:#fff;}
  .hero-meta span.ico{margin-right:6px;}

  .order-btns{display:flex; flex-wrap:wrap; gap:14px;}
  .btn{
    display:inline-flex; align-items:center; gap:10px; padding:14px 24px; border-radius:999px;
    font-weight:800; text-decoration:none; font-size:1rem; box-shadow:var(--shadow);
    border:2px solid transparent; transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-yolk{background:var(--gold); color:var(--ink);}
  .btn-yolk:hover{background:var(--gold-dark);}
  .btn-outline{background:transparent; border-color:var(--maroon); color:var(--maroon);}
  .btn-outline:hover{background:var(--maroon); color:#fff;}
  .btn-ghost-light{background:transparent; border-color:rgba(255,255,255,0.8); color:#fff; box-shadow:none;}
  .btn-ghost-light:hover{background:rgba(255,255,255,0.14);}

  @media (max-width:900px){
    .hero{min-height:auto; padding-top:110px;}
    .hero-logo{width:90px;}
  }

  /* ---------- Sticky mobile order bar ---------- */
  .sticky-order{
    position:fixed; left:0; right:0; bottom:0; z-index:70;
    display:flex; gap:10px; padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:var(--cream-card); border-top:1px solid var(--cream-line);
    box-shadow:0 -6px 18px rgba(42,32,24,0.16);
    transform:translateY(110%); transition:transform .3s ease;
  }
  .sticky-order.show{transform:translateY(0);}
  .sticky-order a{flex:1; justify-content:center; padding:12px 10px; font-size:.92rem;}
  @media (min-width:901px){ .sticky-order{display:none;} }

  /* ---------- About ---------- */
  .about{background:var(--cream-card); border-top:1px solid var(--cream-line); border-bottom:1px solid var(--cream-line);}
  .about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:52px; align-items:center;}
  .about-grid img{border-radius:var(--radius); box-shadow:var(--shadow);}
  .about h2{font-size:clamp(2rem,4vw,2.7rem);}
  .about p{color:var(--ink-soft); font-weight:600; max-width:56ch;}
  .about-stats{display:flex; gap:30px; margin-top:26px; flex-wrap:wrap;}
  .about-stats div{min-width:120px;}
  .about-stats strong{display:block; font-family:'Chewy',sans-serif; font-size:1.8rem; color:var(--maroon);}
  .about-stats span{font-size:.82rem; font-weight:800; color:var(--ink-soft); text-transform:uppercase; letter-spacing:1px;}
  @media (max-width:820px){ .about-grid{grid-template-columns:1fr;} }

  /* ---------- Menu ---------- */
  .menu-head{text-align:center; max-width:640px; margin:0 auto 46px;}
  .menu-head h2{font-size:clamp(2.1rem,4.4vw,3rem);}
  .menu-head p{color:var(--ink-soft); font-weight:600;}
  .menu-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .menu-card{
    background:var(--cream-card); border:1px solid var(--cream-line); border-radius:var(--radius);
    box-shadow:var(--shadow); overflow:hidden;
  }
  .card-photo{aspect-ratio:16/10; overflow:hidden; background:var(--cream-line);}
  .card-photo img{width:100%; height:100%; object-fit:cover; display:block;}
  .card-body{padding:22px 24px 26px;}
  .menu-card h3{
    display:flex; align-items:center; gap:10px; font-size:1.35rem; margin-bottom:14px;
    border-bottom:2px solid var(--gold); padding-bottom:10px;
  }
  .menu-card ul, .item-list{list-style:none; margin:0; padding:0;}
  .menu-card li, .item-list li{
    display:flex; justify-content:space-between; gap:10px; padding:9px 0;
    border-bottom:1px dashed var(--cream-line); font-size:.94rem;
  }
  .menu-card li:last-child, .item-list li:last-child{border-bottom:none;}
  .menu-card li .item-name, .item-list li .item-name{font-weight:800;}
  .menu-card li .item-desc, .item-list li .item-desc{display:block; font-weight:600; color:var(--ink-soft); font-size:.83rem; margin-top:2px;}
  .menu-card li .price, .item-list li .price{font-weight:800; color:var(--maroon); white-space:nowrap;}
  .item-badge{
    background:var(--gold); color:var(--ink); font-size:.65rem; font-weight:800;
    padding:2px 8px; border-radius:999px; margin-left:6px; text-transform:uppercase; letter-spacing:.4px;
    white-space:nowrap; vertical-align:middle;
  }
  @media (max-width:980px){ .menu-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:640px){ .menu-grid{grid-template-columns:1fr;} }

  /* ---------- Hours & Location ---------- */
  .hours-section{background:var(--maroon); color:#fff;}
  .hours-section h2{color:#fff;}
  .hours-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:44px; align-items:start;}
  .hours-card{
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18);
    border-radius:var(--radius); padding:28px;
  }
  .hours-table{width:100%; border-collapse:collapse; margin:18px 0 20px;}
  .hours-table td{padding:9px 0; font-weight:700; border-bottom:1px solid rgba(255,255,255,0.14);}
  .hours-table td:last-child{text-align:right; font-family:'Nunito Sans',sans-serif; font-weight:800;}
  @media (max-width:600px){
    .hours-table tr{display:flex; flex-direction:column; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.14);}
    .hours-table td{display:block; width:100%; border-bottom:none; padding:2px 0;}
    .hours-table td:first-child{font-size:.85rem; text-transform:uppercase; letter-spacing:.5px; color:#EFD7E1;}
    .hours-table td:last-child{text-align:left; font-size:1.15rem;}
  }
  .hours-status{margin-top:20px;}
  .hours-status .status-badge{background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.2); color:#fff;}
  .map-frame{
    border-radius:var(--radius); overflow:hidden; box-shadow:0 14px 34px rgba(0,0,0,0.35);
    border:1px solid rgba(255,255,255,0.18); aspect-ratio:4/3;
  }
  .map-frame iframe{width:100%; height:100%; border:0;}
  .visit-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:22px;}
  .visit-actions .btn-yolk{box-shadow:0 8px 20px rgba(0,0,0,0.28);}
  @media (max-width:900px){ .hours-grid{grid-template-columns:1fr;} .visit-actions{flex-direction:column;} .visit-actions .btn{width:100%; justify-content:center;} }

  /* ---------- Footer ---------- */
  footer{background:var(--maroon-dark); color:#EFE3D6; padding:52px 0 30px;}
  .footer-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:36px; margin-bottom:36px;}
  footer h4{font-family:'Chewy',sans-serif; color:var(--gold); font-size:1.1rem; margin:0 0 12px;}
  footer p, footer a{font-size:.92rem; font-weight:600; color:#EFE3D6; text-decoration:none;}
  .footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:12px;}
  .footer-brand img{width:38px; height:38px; border-radius:50%;}
  .footer-brand span{font-family:'Chewy',sans-serif; font-size:1.15rem; color:#fff;}
  footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.14); padding-top:20px;
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
    font-size:.8rem; color:#C9B8A8; font-weight:600;
  }
  @media (max-width:760px){ .footer-grid{grid-template-columns:1fr;} }

  /* ---------- Weekly Specials chalkboard callout ---------- */
  .specials-callout{
    background:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 4px),
      linear-gradient(160deg, #1E2A22, #14201A);
    border-radius:var(--radius);
    padding:26px 28px;
    display:flex; align-items:center; gap:18px; flex-wrap:wrap;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,0.08);
  }
  .specials-callout .chalk-icon{font-size:2.2rem; line-height:1; flex-shrink:0;}
  .specials-callout h3{
    color:var(--gold); font-family:'Chewy',sans-serif; font-weight:400; font-size:1.4rem;
    margin:0 0 6px; letter-spacing:.5px;
  }
  .specials-callout p{
    color:#EDEBE2; font-weight:600; margin:0; max-width:56ch; font-size:.95rem;
  }
  .specials-callout.compact{padding:18px 22px; gap:14px;}
  .specials-callout.compact h3{font-size:1.1rem; margin-bottom:2px;}
  .specials-callout.compact p{font-size:.85rem;}

  /* ---------- Menu page hero ---------- */
  .menu-hero{
    background:
      linear-gradient(180deg, rgba(20,13,9,0.55), rgba(20,13,9,0.78)),
      url('food-hero.jpg') center/cover no-repeat, #2A2018;
    color:#fff; padding:120px 0 56px; text-align:center;
  }
  .menu-hero h1{color:#fff; font-size:clamp(2.4rem,5.5vw,3.6rem); margin-bottom:.2em;}
  .menu-hero p{color:#EFE6D6; font-weight:600; max-width:52ch; margin:0 auto;}

  /* ---------- Category quick-nav ---------- */
  .category-nav-wrap{
    position:sticky; top:77px; z-index:50;
    background:rgba(240,234,214,0.95); backdrop-filter:blur(6px);
    border-bottom:1px solid var(--cream-line);
    padding:14px 0;
  }
  .category-nav{
    display:flex; gap:10px; overflow-x:auto; padding:0 24px;
    scrollbar-width:thin;
  }
  .category-nav a{
    flex-shrink:0; text-decoration:none; background:var(--cream-card); border:1px solid var(--cream-line);
    color:var(--ink); font-weight:800; font-size:.85rem; padding:9px 16px; border-radius:999px;
    transition:background .2s ease, color .2s ease;
    scroll-snap-align:start;
  }
  .category-nav a:hover{background:var(--maroon); color:#fff; border-color:var(--maroon);}
  .category-nav a.active{background:var(--maroon); color:#fff; border-color:var(--maroon); box-shadow:var(--shadow);}

  /* ---------- Full menu category sections ---------- */
  .full-menu-section{padding:44px 0; border-bottom:1px solid var(--cream-line); scroll-margin-top:150px;}
  .full-menu-section:last-of-type{border-bottom:none;}
  .full-menu-section h2{
    display:flex; align-items:center; gap:12px; font-size:1.8rem;
    border-bottom:3px solid var(--gold); padding-bottom:12px; margin-bottom:8px;
  }
  .full-menu-section .cat-note{color:var(--ink-soft); font-weight:600; font-size:.88rem; margin-bottom:18px;}
  .item-columns{display:grid; grid-template-columns:1fr 1fr; gap:0 40px;}
  @media (max-width:700px){ .item-columns{grid-template-columns:1fr;} }

  /* ---------- Bottom order banner ---------- */
  .order-banner{
    background:var(--maroon); color:#fff; text-align:center; padding:64px 24px;
  }
  .order-banner h2{color:#fff; margin-bottom:10px;}
  .order-banner p{color:#EFD7E1; font-weight:600; margin-bottom:26px;}
  .order-banner .btn-yolk{font-size:1.1rem; padding:16px 34px;}