/* =================================================================
   The Grub Tub — Public Site Styles
   Warm editorial · spacious · large type · real-photo ready
================================================================= */
:root{
  --cream:#F7F3EC;
  --cream-2:#EFE8DC;
  --ink:#1C1714;
  --ink-2:#5C5249;
  --ink-3:#8B8076;
  --line:#E2D9CB;
  --ember:#C0521C;
  --ember-dark:#9C3F12;
  --gold:#B8893B;
  --max:1200px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Hanken Grotesk',system-ui,sans-serif;
  font-size:18px;line-height:1.65;-webkit-font-smoothing:antialiased;
}
.container{max-width:var(--max);margin:0 auto;padding:0 32px}
h1,h2,h3,h4{font-family:'Fraunces',Georgia,serif;font-weight:600;line-height:1.04;letter-spacing:-.015em}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.eyebrow{
  font-family:'Hanken Grotesk';font-size:13px;font-weight:700;letter-spacing:.22em;
  text-transform:uppercase;color:var(--ember);display:inline-block;margin-bottom:18px;
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;font-family:'Hanken Grotesk';font-weight:700;
  font-size:16px;padding:16px 30px;border-radius:2px;transition:.2s ease;cursor:pointer;border:1.5px solid transparent;
}
.btn-solid{background:var(--ember);color:var(--cream)}
.btn-solid:hover{background:var(--ember-dark)}
.btn-ghost{border-color:var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--cream)}

/* ---------- HEADER / NAV ---------- */
.site-header{position:sticky;top:0;z-index:50;background:#060508;border-bottom:1px solid #1a1a24}
.nav{display:flex;align-items:center;justify-content:space-between;height:78px}
.brand{display:flex;flex-direction:column;justify-content:center;height:100%}
.brand-logo{height:clamp(48px, 8vw, 110px);width:auto;display:block;margin:-20px 0}
.site-footer .brand-logo{height:68px;opacity:0.95}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-links a{font-weight:600;font-size:15.5px;color:#e6bd78;transition:color .2s;position:relative}
.nav-links a:hover,.nav-links a.active{color:#f2d19b}
.nav-links a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:#e6bd78}
.nav-call{background:#060508!important;border:1.5px solid #e6bd78!important;color:#e6bd78!important;padding:9px 18px;border-radius:2px;transition:.2s ease}
.nav-call:hover{background:#e6bd78!important;border-color:#e6bd78!important;color:#060508!important}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:26px;height:2px;background:#e6bd78;transition:.25s}

/* ---------- PHOTO PLACEHOLDERS (swap for real photography) ---------- */
.photo{
  position:relative;background:
    repeating-linear-gradient(45deg,var(--cream-2),var(--cream-2) 14px,#e7ded0 14px,#e7ded0 28px);
  border:1px solid var(--line);overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.photo::after{
  content:attr(data-label);font-family:'Hanken Grotesk';font-size:12px;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;color:var(--ink-3);
  background:var(--cream);padding:7px 14px;border:1px solid var(--line);border-radius:2px;
}
.photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* ---------- CINEMATIC FRAMED HERO ---------- */
.hero-framed {
  background: #0d0c0b;
  color: var(--cream);
  padding: 48px 0 80px;
  border-bottom: 1px solid #1f1c19;
}

.hero-framed-container {
  max-width: 1400px;
}

.hero-frame {
  width: 100%;
  margin: 0 auto 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  background: #000;
}

.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-framed-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-seo-line {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-framed-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 4px;
}

.btn-ghost.light {
  border-color: rgba(255,255,255,0.25);
  color: var(--cream);
}
.btn-ghost.light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ---------- SECTION SHELL ---------- */
section{padding:96px 0}
.section-head{max-width:680px;margin-bottom:54px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:clamp(34px,4.4vw,52px)}
.section-head p{color:var(--ink-2);font-size:19px;margin-top:16px}
.alt{background:var(--cream-2)}

/* ---------- STORY ---------- */
.story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center}
.story-photo{aspect-ratio:1/1;border-radius:3px}
.story-body p{font-size:19px;color:var(--ink-2);margin-bottom:20px}

/* ---------- REVIEWS ---------- */
.reviews-row{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.review{padding-top:28px;border-top:2px solid var(--ink)}
.review .stars{color:var(--ember);letter-spacing:3px;font-size:15px;margin-bottom:16px}
.review blockquote{font-family:'Fraunces';font-size:21px;line-height:1.4;font-weight:500;margin-bottom:20px}
.review .who{font-size:14px;font-weight:700;letter-spacing:.04em}
.review .who span{color:var(--ink-3);font-weight:500}

/* ---------- SPECIALS ---------- */
.specials-list{display:grid;grid-template-columns:1fr 1fr;gap:48px;margin-top:20px}
.special{display:flex;flex-direction:column;background:#fff;border-radius:12px;box-shadow:0 12px 30px rgba(0,0,0,0.06);overflow:hidden;border:1px solid var(--line);}
.special-photo-wrapper{width:100%;height:380px;background:#111;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.special-photo-img{width:100%;height:100%;object-fit:contain;}
.special-content{padding:32px;display:flex;flex-direction:column;flex:1;}
.special .label{font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--ember);}
.special .body h3{font-size:26px;margin-bottom:8px;font-family:'Fraunces',serif;}
.special .body p{color:var(--ink-2);font-size:16.5px;line-height:1.6;}
.special.dessert{grid-column:1/-1;}

/* ---------- FAVORITES / WHY ---------- */
.chips{display:flex;flex-wrap:wrap;gap:14px}
.chip-lg{font-family:'Fraunces';font-size:22px;font-weight:500;padding:14px 26px;border:1px solid var(--line);border-radius:100px;background:var(--cream)}
.alt .chip-lg{background:var(--cream)}
.why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 60px}
.why-item{display:flex;gap:18px;padding:24px 0;border-top:1px solid var(--line)}
.why-item .n{font-family:'Fraunces';font-size:22px;color:var(--ember);font-weight:600;flex:0 0 auto}
.why-item h3{font-size:21px;margin-bottom:6px}
.why-item p{color:var(--ink-2);font-size:16px}

/* ---------- WORTH THE DRIVE ---------- */
.worth{background:var(--ink);color:var(--cream);text-align:center;padding:120px 0}
.worth .eyebrow{color:var(--gold)}
.worth h2{font-size:clamp(40px,6vw,72px);max-width:14ch;margin:0 auto 22px}
.worth p{font-size:20px;color:#cdbfae;max-width:600px;margin:0 auto 36px}
.worth .btn-solid{background:var(--ember)}
.worth .btn-ghost{border-color:var(--cream);color:var(--cream)}
.worth .btn-ghost:hover{background:var(--cream);color:var(--ink)}

/* ---------- GALLERY ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery-grid .photo{aspect-ratio:1/1;border-radius:3px}
.gallery-grid .photo.tall{grid-row:span 2;aspect-ratio:auto}

/* ---------- VISIT / CONTACT ---------- */
.visit-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px}
.visit-info dl{margin-top:8px}
.visit-info dt{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-3);font-weight:700;margin-top:26px}
.visit-info dd{font-size:21px;font-family:'Fraunces';margin-top:5px}
.visit-info dd a{border-bottom:2px solid var(--ember)}

/* ---------- FORMS ---------- */
.form-card{background:var(--cream);border:1px solid var(--line);border-radius:3px;padding:40px}
.alt .form-card{background:var(--cream)}
.field{margin-bottom:20px}
.field label{display:block;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-2);margin-bottom:8px}
.field input,.field textarea,.field select{
  width:100%;font-family:'Hanken Grotesk';font-size:16px;padding:14px 16px;
  background:#fff;border:1px solid var(--line);border-radius:2px;color:var(--ink);
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--ember);box-shadow:0 0 0 3px rgba(192,82,28,.12)}
.field textarea{min-height:130px;resize:vertical}
.form-note{font-size:14px;color:var(--ink-3);margin-top:8px}
.alert{padding:16px 20px;border-radius:2px;margin-bottom:24px;font-weight:600}
.alert-ok{background:#e7f3ea;color:#1f6b3a;border:1px solid #bcdcc6}
.alert-err{background:#fbeae6;color:#9c3f12;border:1px solid #f0c9ba}

/* ---------- PAGE HEADER ---------- */
.page-head{padding:80px 0 64px;border-bottom:1px solid var(--line);text-align:center}
.page-head h1{font-size:clamp(42px,6vw,76px)}
.page-head p{color:var(--ink-2);font-size:20px;margin-top:14px}

/* ---------- MENU PAGE ---------- */
.menu-section{margin-bottom:64px}
.menu-section h2{font-size:34px}
.menu-items-grid{display:grid;grid-template-columns:1fr;gap:24px}
.menu-item{display:flex;justify-content:space-between;gap:24px;padding:22px 0;border-bottom:1px solid var(--line)}
.menu-item.has-image{align-items:center}
.menu-item-text{flex:1}
.menu-item h3{font-family:'Fraunces';font-size:22px;font-weight:500;display:flex;justify-content:space-between;align-items:baseline}
.menu-price{font-family:'Hanken Grotesk';font-size:18px;color:var(--ember);font-weight:600}
.menu-item p{color:var(--ink-2);font-size:16px;margin-top:4px;max-width:60ch}
.menu-item-photo{flex:0 0 100px;height:100px;border-radius:4px;overflow:hidden;background:var(--line)}
.menu-item-photo img{width:100%;height:100%;object-fit:cover}
.menu-note{text-align:center;color:var(--ink-3);font-size:16px;margin-top:40px}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--ink);color:#cdbfae;padding:72px 0 32px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.1)}

.footer-brand p{margin-top:12px;max-width:30ch}
.footer-col h4{font-family:'Hanken Grotesk';font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;font-weight:700}
.footer-col p{font-size:15.5px;margin-bottom:6px}
.footer-col a:hover{color:var(--cream)}
.footer-social{display:flex;gap:14px}
.footer-base{display:flex;justify-content:space-between;padding-top:24px;font-size:13.5px;color:var(--ink-3);flex-wrap:wrap;gap:8px}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px){
  .hero-framed { padding: 32px 0 48px; }
  .hero-frame { margin-bottom: 24px; }
  .hero-seo-line { font-size: 14px; margin-bottom: 24px; }
  .story-grid,.visit-grid,.specials-list,.why-grid{grid-template-columns:1fr;gap:40px}
  .reviews-row,.gallery-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav-toggle{display:flex}
  .nav-links{position:fixed;inset:78px 0 auto 0;flex-direction:column;background:#060508;
    border-bottom:1px solid #1a1a24;padding:24px 32px;gap:18px;align-items:flex-start;
    transform:translateY(-130%);transition:transform .3s ease;z-index:40}
  body.nav-open .nav-links{transform:none}
  body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  body.nav-open .nav-toggle span:nth-child(2){opacity:0}
  body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}
@media(max-width:560px){
  body{font-size:17px}
  .container{padding:0 20px}
  
  /* Dedicated Mobile Hero */
  .hero-framed { padding: 0 0 40px 0; border-bottom: 1px solid #1f1c19; }
  .hero-framed-container { padding: 0; max-width: 100%; }
  .hero-frame { border-radius: 0; box-shadow: none; margin-bottom: 16px; }
  
  .hero-framed-content { 
    padding: 0 20px; 
    display: flex; 
    flex-direction: column; 
  }
  
  .hero-framed-actions { 
    order: 1; 
    flex-direction: column; 
    width: 100%; 
    gap: 12px; 
  }
  .hero-framed-actions .btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }
  
  .hero-seo-line { 
    order: 2; 
    font-size: 12px; 
    margin-top: 24px; 
    margin-bottom: 8px; 
    color: #a49688; 
    letter-spacing: 0.1em; 
    line-height: 1.4; 
  }
  
  section{padding:64px 0}
  .reviews-row,.gallery-grid,.footer-grid{grid-template-columns:1fr}
  
  .specials-list{grid-template-columns:1fr; gap:32px;}
  .special-photo-wrapper{height:340px;}
  .special-content{padding:24px;}
  
  .menu-item.has-image{flex-direction:column-reverse; align-items:flex-start; gap:16px;}
  .menu-item-photo{width:100%; height:200px; flex:none;}
}
