:root{
  --bg:#f6ead8;
  --paper:#fff8ec;
  --card:#fffdf7;
  --ink:#24140e;
  --muted:#725f4f;
  --line:#dcc7a7;
  --maroon:#7b1e24;
  --maroon-dark:#4b1115;
  --saffron:#d99a27;
  --brass:#b9832f;
  --leaf:#276148;
  --shadow:0 18px 42px rgba(62,32,15,.13);
  font-family:"Inter","SF Pro Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:98px;overflow-x:hidden}
body{
  margin:0;
  min-height:100vh;
  color:var(--ink);
  line-height:1.55;
  overflow-x:hidden;
  background:
    linear-gradient(90deg,rgba(123,30,36,.045) 1px,transparent 1px),
    linear-gradient(180deg,rgba(123,30,36,.035) 1px,transparent 1px),
    linear-gradient(135deg,#f2dfc2,#fff7e9 44%,#f8ead4);
  background-size:34px 34px,34px 34px,auto;
}
a{color:inherit}
img{max-width:100%;display:block}
h1,h2,h3{margin:0;line-height:1.04;color:var(--ink);font-family:Georgia,"Times New Roman",serif}
h1{font-size:clamp(44px,6.4vw,76px);letter-spacing:-.035em}
h2{font-size:clamp(30px,4vw,46px);letter-spacing:-.025em}
h3{font-size:20px}

.topbar{
  width:min(1120px,calc(100% - 32px));
  position:sticky;
  top:14px;
  z-index:50;
  margin:14px auto 0;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 18px;
  border:1px solid rgba(220,199,167,.95);
  border-radius:8px;
  background:rgba(255,248,236,.96);
  box-shadow:0 14px 34px rgba(62,32,15,.10);
  backdrop-filter:blur(10px);
}
.brand{display:flex;align-items:center;gap:13px;text-decoration:none;color:var(--ink);min-width:max-content}
.brand img{width:52px;height:52px;border-radius:50%;object-fit:cover;border:2px solid var(--brass);box-shadow:0 8px 18px rgba(62,32,15,.18)}
.brand span{font-family:Georgia,"Times New Roman",serif;font-size:22px;font-weight:800;line-height:1}
.brand small{display:block;margin-top:4px;font-family:Inter,Arial,sans-serif;color:var(--muted);font-size:12px;font-weight:750;letter-spacing:.01em}
.topbar nav{display:flex;align-items:center;gap:4px}
.topbar nav a{
  min-height:42px;
  display:grid;
  place-items:center;
  padding:0 15px;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
  font-weight:850;
  color:var(--ink);
}
.topbar nav a:hover{background:#f3e3ca;color:var(--maroon)}
.topbar nav a:nth-child(2){background:var(--maroon);color:#fff}

.nav-toggle{display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:6px;background:#fff7ea;color:var(--maroon);padding:0;place-items:center}
.nav-toggle span{display:block;width:21px;height:2px;margin:3px auto;border-radius:2px;background:currentColor;transition:.2s ease}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}

.hero{
  width:min(1120px,calc(100% - 32px));
  min-height:570px;
  margin:18px auto 0;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:#1d100b;
  box-shadow:var(--shadow);
}
.hero::after{
  content:"";
  position:absolute;
  inset:14px;
  z-index:2;
  border:1px solid rgba(217,154,39,.35);
  pointer-events:none;
}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease}
.hero-slide[data-active]{opacity:1}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(35,13,10,.95) 0%,rgba(64,18,19,.84) 35%,rgba(35,13,10,.43) 62%,rgba(35,13,10,.2));
}
.hero-text{
  position:relative;
  z-index:3;
  min-height:570px;
  max-width:680px;
  padding:68px 50px 50px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff8eb;
}
.hero-text .eyebrow{
  width:max-content;
  max-width:100%;
  margin:0 0 16px;
  padding:7px 12px;
  border:1px solid rgba(217,154,39,.55);
  border-radius:4px;
  background:rgba(75,17,21,.58);
  color:#ffd37b;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:900;
}
.hero-text h1{color:#fff8eb;text-shadow:0 3px 18px rgba(0,0,0,.34)}
.hero-text p:not(.eyebrow){max-width:560px;margin:18px 0 0;color:#f7e8d1;font-size:18px;font-weight:650}
.hero-actions{display:flex;gap:12px;margin-top:28px;flex-wrap:wrap}
.button{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border:1px solid var(--maroon);
  border-radius:6px;
  background:var(--maroon);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 12px 24px rgba(75,17,21,.18);
  cursor:pointer;
}
.button.ghost{background:rgba(255,248,236,.1);border-color:rgba(255,248,236,.7);box-shadow:none}
.button:hover{background:var(--maroon-dark);transform:translateY(-1px)}
.hero-dots{position:absolute;z-index:3;right:28px;bottom:28px;display:flex;gap:8px}
.hero-dots button{width:9px;height:9px;border-radius:50%;border:1px solid rgba(255,248,236,.82);background:transparent;padding:0}
.hero-dots button[aria-current="true"]{background:var(--saffron)}

.hours-strip{width:min(1120px,calc(100% - 32px));margin:16px auto 0;display:flex}
.hours-badge{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,248,236,.94);
  box-shadow:0 10px 24px rgba(62,32,15,.06);
  color:var(--maroon);
  font-weight:900;
}

.reserve-hint,.menu,.reserve,.info{
  width:min(1040px,calc(100% - 32px));
  margin:18px auto 0;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,253,247,.94);
  box-shadow:0 12px 30px rgba(62,32,15,.08);
}
.reserve-hint{
  display:grid;
  grid-template-columns:68px minmax(0,1fr) auto;
  gap:20px;
  align-items:center;
  padding:24px;
}
.reserve-hint .icon{width:56px;height:56px;display:grid;place-items:center;border-radius:8px;background:#f8ead4;color:var(--maroon);border:1px solid var(--line)}
.reserve-hint h2{grid-column:2;font-size:30px}
.reserve-hint p{grid-column:2;margin:7px 0 0;color:var(--muted);font-weight:700;max-width:560px}
.reserve-hint .button{grid-column:3;grid-row:1/3;align-self:center;white-space:nowrap}

.gallery{
  width:min(1120px,calc(100% - 32px));
  margin:18px auto 0;
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:10px;
}
.gallery img{height:260px;object-fit:cover;border-radius:8px;border:1px solid var(--line);box-shadow:0 12px 28px rgba(62,32,15,.1)}
.gallery img:first-child{height:320px}

.menu,.reserve,.info{padding:34px}
.menu>h2,.reserve>h2,.info>h2{margin-bottom:10px}
.menu-note,.reserve>p{max-width:760px;color:var(--muted);font-weight:700}
.menu-quicklinks{
  position:sticky;
  top:104px;
  z-index:8;
  display:flex;
  gap:8px;
  margin:22px -4px 24px;
  padding:8px 4px;
  overflow-x:auto;
  background:linear-gradient(180deg,rgba(255,253,247,.98),rgba(255,253,247,.9));
  scrollbar-width:thin;
}
.menu-quicklinks a{
  flex:0 0 auto;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff8ec;
  color:var(--maroon);
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}
.menu-quicklinks a:hover{border-color:var(--saffron);background:#fff0ce}
.menu-board{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.menu-section{
  padding:20px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#17100c;
  color:#fff8eb;
  box-shadow:0 14px 30px rgba(62,32,15,.11);
}
.menu-section.highlight{
  grid-column:1/-1;
  background:linear-gradient(135deg,#4b1115,#7b1e24 54%,#24140e);
}
.menu-section h3{
  color:#ffd779;
  font-size:24px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.menu-section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.menu-section-head span{
  color:#fff0ce;
  font-size:13px;
  font-weight:900;
  text-align:right;
}
.menu-section-note{
  margin:7px 0 14px;
  color:#e9d7bd;
  font-size:13px;
  font-weight:750;
}
.menu-items{
  display:grid;
  gap:8px;
  margin-top:14px;
}
.menu-items.compact{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.menu-items div{
  min-height:34px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:12px;
  border-bottom:1px dotted rgba(255,215,121,.34);
  padding-bottom:6px;
}
.menu-items span{
  min-width:0;
  color:#fffaf0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:16px;
  font-weight:800;
  line-height:1.16;
}
.menu-items b{
  color:#ffd779;
  font-size:14px;
  white-space:nowrap;
}
.menu-photos{
  margin-top:26px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.menu-photos-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.menu-photos-head h3{color:var(--maroon);font-size:24px}
.menu-photos-head p{margin:0;color:var(--muted);font-weight:750}
.menu-photo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.menu-photo-grid a{
  display:block;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:#100b08;
  box-shadow:0 12px 28px rgba(62,32,15,.11);
}
.menu-photo-grid img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:top center;
  transition:transform .22s ease;
}
.menu-photo-grid a:hover img{transform:scale(1.025)}

.allergen-box{margin-top:14px;padding:16px 18px;border:1px solid var(--line);border-radius:8px;background:#fff}
.allergen-box summary{cursor:pointer;font-weight:900;color:var(--maroon)}
.allergen-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:8px;margin:16px 0;font-size:14px;color:var(--muted);font-weight:700}
.allergen-grid b{color:var(--ink)}
.allergen-disclaimer{margin:0;color:var(--muted);font-size:13px;font-weight:700}

.reserve form{margin-top:22px;display:grid;gap:14px}
.reserve .row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.reserve label{display:grid;gap:7px;color:var(--muted);font-size:12px;font-weight:850}
.reserve input,.reserve select,.reserve textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  color:var(--ink);
  padding:12px 13px;
  outline:0;
  font:inherit;
  font-weight:700;
}
.reserve input:focus,.reserve select:focus,.reserve textarea:focus{border-color:var(--maroon);box-shadow:0 0 0 3px rgba(123,30,36,.10)}
.reserve textarea{min-height:92px;resize:vertical}
.reserve-note{margin:0;color:var(--muted);font-size:13px;font-weight:700}

.info-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:18px;margin-top:22px}
.info-grid>div{border:1px solid var(--line);border-radius:8px;background:#fff;padding:20px}
.info-grid h3{margin-top:18px;color:var(--maroon);font-size:15px;font-family:Inter,Arial,sans-serif;letter-spacing:0}
.info-grid h3:first-child{margin-top:0}
.info-grid p{margin:6px 0 0;color:var(--muted);font-weight:750}
.hours-table{width:100%;border-collapse:collapse;margin-top:2px}
.hours-table td{padding:10px 0;border-bottom:1px solid #eadbc9;color:var(--muted);font-weight:750}
.hours-table td:last-child{text-align:right;color:var(--ink);font-weight:900}

footer{
  width:min(1040px,calc(100% - 32px));
  margin:18px auto 28px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,248,236,.78);
  color:var(--muted);
  text-align:center;
  font-size:13px;
  font-weight:750;
}

@media (max-width:820px){
  .topbar{top:10px;width:calc(100% - 20px);padding:10px 12px}
  .brand span{font-size:18px}
  .brand small{font-size:10px}
  .nav-toggle{display:grid}
  .topbar nav{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 7px);
    display:grid;
    gap:6px;
    max-height:0;
    overflow:hidden;
    padding:0;
    border:0;
    border-radius:8px;
    background:rgba(255,248,236,.98);
    box-shadow:0 18px 38px rgba(62,32,15,.13);
    transition:max-height .24s ease,padding .24s ease;
  }
  .topbar nav.open{max-height:230px;padding:10px;border:1px solid var(--line)}
  .topbar nav a{justify-content:start}
  .hero{width:calc(100% - 20px);min-height:520px}
  .hero::after{inset:10px}
  .hero-text{min-height:520px;padding:44px 24px 34px}
  .hero-text p:not(.eyebrow){font-size:16px}
  .hours-strip,.gallery,.reserve-hint,.menu,.reserve,.info,footer{width:calc(100% - 20px)}
  .reserve-hint{grid-template-columns:1fr;padding:22px}
  .reserve-hint h2,.reserve-hint p,.reserve-hint .button{grid-column:auto;grid-row:auto}
  .reserve-hint .button{width:100%}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery img,.gallery img:first-child{height:170px}
  .menu,.reserve,.info{padding:24px 18px}
  .menu-quicklinks{top:92px}
  .menu-board,.menu-items.compact,.reserve .row,.info-grid{grid-template-columns:1fr}
  .menu-section{padding:18px}
  .menu-section-head{display:block}
  .menu-section-head span{display:block;text-align:left;margin-top:6px}
  .menu-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:480px){
  h1{font-size:40px}
  .hero-actions .button{width:100%}
  .gallery{grid-template-columns:1fr}
  .gallery img,.gallery img:first-child{height:210px}
  .menu-photo-grid{grid-template-columns:1fr}
  .menu-photos-head{display:block}
  .menu-photos-head p{margin-top:4px}
}
