/* ===========================================================
   GOODWOOD BARBECUE COMPANY — site styles
   Faithful rebuild of the 03.17.26 design comp
   =========================================================== */

/* ---------- Tokens ---------- */
:root{
  --black:#0e0d0b;
  --panel:#1a1816;
  --panel-2:#1a1816;
  --line:rgba(239,233,221,.16);
  --line-soft:rgba(239,233,221,.10);
  --red:#9e1115;
  --red-bright:#bb1a1c;
  --cream:#efe9dd;
  --cream-dim:#a9a094;
  --cream-mute:#7d756b;

  --display:"Oswald", "Arial Narrow", sans-serif;
  --serif:"Lora", Georgia, "Times New Roman", serif;
  --script:"Kaushan Script", cursive;

  --maxw:1280px;
  --gutter:clamp(20px,5vw,64px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--cream);
  font-family:var(--serif);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

/* ---------- Type helpers ---------- */
.eyebrow{
  font-family:var(--serif);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cream-dim);
  font-weight:500;
  margin:0 0 22px;
  position:relative;
}
.rule{
  width:54px;height:1px;background:var(--cream);opacity:.55;
  border:0;margin:0 0 22px;
}
.h-display{
  font-family:var(--display);
  font-weight:700;
  text-transform:uppercase;
  line-height:.96;
  letter-spacing:.005em;
  margin:0;
}
h1.h-display{font-size:clamp(40px,6vw,80px)}
h2.section-title{
  font-family:var(--display);
  font-weight:600;
  text-transform:uppercase;
  font-size:clamp(30px,3.6vw,46px);
  line-height:1;
  letter-spacing:.01em;
  margin:0 0 20px;
}
.body{
  font-size:14.5px;
  line-height:1.75;
  color:var(--cream-dim);
  max-width:42ch;
  margin:0 0 30px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-family:var(--display);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12.5px;
  padding:14px 30px;
  cursor:pointer;
  border:1px solid transparent;
  transition:.2s ease;
  white-space:nowrap;
}
.btn--light{background:var(--cream);color:#15110e}
.btn--light:hover{background:#fff}
.btn--ghost{background:transparent;color:var(--cream);border-color:var(--cream)}
.btn--ghost:hover{background:var(--cream);color:#15110e}
.btn--red{background:var(--red);color:var(--cream);border-color:var(--red)}
.btn--red:hover{background:var(--red-bright);border-color:var(--red-bright)}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:80;
  background:#0e0d0b;
  border-bottom:1px solid var(--line-soft);
}
.nav{
  max-width:var(--maxw);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px var(--gutter);
  gap:24px;
}
.nav__logo img{width:172px;height:auto}
.nav__links{
  display:flex;gap:30px;list-style:none;margin:0;padding:0;
  font-family:var(--display);font-weight:500;
  text-transform:uppercase;letter-spacing:.13em;font-size:13px;
}
.nav__links a{color:var(--cream);transition:color .15s}
.nav__links a:hover{color:var(--cream-dim)}
.nav__links a.is-active{color:var(--red)}
.nav__right{display:flex;align-items:center;gap:18px}
.nav__cart{width:22px;height:22px;stroke:var(--cream);fill:none}
.nav__toggle{display:none;background:none;border:0;cursor:pointer;padding:6px}
.nav__toggle span{display:block;width:26px;height:2px;background:var(--cream);margin:5px 0;transition:.25s}

/* ---------- Layout primitives ---------- */
.container{max-width:var(--maxw);margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter)}

/* Full-bleed sections. To keep the photo panels from cropping on wide
   screens, the homepage split media holds a fixed aspect ratio that matches
   the photography, so each section scales up in proportion instead of
   stretching wide-and-short and cropping the image top/bottom. */

/* Split rows that make up the home page + interior heroes */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--panel); /* matches panels so photo letterbox gaps blend in */
}
/* Photos render at their natural aspect ratio — never cropped. The image
   sizes its own column; the text panel matches the row height beside it. */
.split__media{display:block;width:100%;height:auto;align-self:center}

/* Homepage sections: the photo column is wider (landscape) and the text
   panel narrower — matching the comp's proportions, not a 50/50 checkerboard. */
@media(min-width:901px){
  .split:not(.page-hero){grid-template-columns:39fr 61fr}
  .split--reverse:not(.page-hero){grid-template-columns:59fr 41fr}
}
.split__panel{
  background:var(--panel);
  display:flex;flex-direction:column;justify-content:center;
  padding:clamp(36px,5vw,72px);
  position:relative;
}
.split__panel--alt{background:var(--panel-2)}
.split__panel::before{
  content:"";position:absolute;left:0;top:14%;bottom:14%;width:1px;
  background:var(--line-soft);
}

/* ---------- Footer ---------- */
.site-footer{
  background:#0b0a09 url("../assets/img/wood-texture.jpg?v=13") center/cover;
  position:relative;
  border-top:1px solid var(--line-soft);
}
.site-footer::before{content:"";position:absolute;inset:0;background:rgba(8,7,6,.86)}
.footer__inner{
  position:relative;
  max-width:var(--maxw);margin:0 auto;
  padding:48px var(--gutter) 30px;
  display:flex;gap:40px;align-items:flex-start;flex-wrap:wrap;
}
.footer__badge img{width:74px;height:auto;opacity:.92}
.footer__nav{
  display:flex;gap:46px;flex-wrap:wrap;flex:1;
  font-family:var(--display);text-transform:uppercase;letter-spacing:.1em;
}
.footer__col{display:flex;flex-direction:column;gap:9px;font-size:12.5px}
.footer__col a{color:var(--cream);font-weight:500}
.footer__col a.sub{color:var(--cream-dim);font-weight:400}
.footer__col a:hover{color:var(--red)}
.footer__bottom{
  position:relative;
  border-top:1px solid var(--line-soft);
  max-width:var(--maxw);margin:0 auto;
  padding:16px var(--gutter);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-family:var(--display);font-size:11px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--cream-mute);
}
.footer__bottom a{color:var(--cream-mute)}
.footer__bottom a:hover{color:var(--cream)}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;
  min-height:660px;
  background:#000 center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;text-align:center;
}
/* Home hero: the headline is baked into the photography on desktop. The hero
   holds the image's exact aspect ratio so the full photo + headline always
   show, uncropped, scaling taller as the screen widens. */
.hero--home{background-image:url("../assets/img/hero-spread.jpg?v=13");aspect-ratio:1287/900;min-height:0}
.hero::after{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(0,0,0,.18),rgba(0,0,0,.55))}
.hero__content{position:relative;z-index:2;padding:0 24px}
/* Live title hidden on desktop (it is part of the baked hero image) */
.hero__title{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}

/* On tablet/phone the wide baked headline would crop, so below the width
   where the full image fits we swap to a clean (text-free) photo and render
   the headline as live, fully-responsive type. */
@media(max-width:960px){
  .hero--home{background-image:url("../assets/img/cat-platter.jpg?v=13");aspect-ratio:auto;min-height:74vh}
  .hero--home::after{background:linear-gradient(180deg,rgba(0,0,0,.32),rgba(0,0,0,.7))}
  .hero--home .hero__title{
    position:static;width:auto;height:auto;clip:auto;overflow:visible;
    font-family:var(--display);font-weight:700;text-transform:uppercase;
    color:var(--cream);font-size:clamp(34px,8.5vw,56px);line-height:1.02;
    letter-spacing:.01em;text-shadow:0 3px 24px rgba(0,0,0,.72);
  }
}

/* interior page hero (split, text on panel) */
.page-hero .split__panel{background:var(--panel-2)}
.page-hero{border-bottom:1px solid var(--line-soft)}

/* ---------- Menu / content sections ---------- */
.section{padding:clamp(48px,7vw,96px) 0}
.menu-head{
  display:grid;grid-template-columns:300px 1fr;gap:40px;align-items:start;
  margin-bottom:54px;
}
.menu-head h2{
  font-family:var(--display);font-weight:600;text-transform:uppercase;
  font-size:clamp(28px,3vw,38px);line-height:1;margin:0;
}
.menu-head .note{font-size:13.5px;color:var(--cream-dim);max-width:54ch}

.menu-group{margin-bottom:46px}
.menu-group__title{
  font-family:var(--display);font-weight:600;text-transform:uppercase;
  color:var(--red);font-size:18px;letter-spacing:.04em;
  border-bottom:1px solid var(--line);padding-bottom:10px;margin:0 0 18px;
}
.menu-item{
  display:flex;justify-content:space-between;gap:18px;align-items:baseline;
  padding:7px 0;border-bottom:1px dotted var(--line-soft);
}
.menu-item__name{font-weight:600;text-transform:uppercase;font-size:13.5px;letter-spacing:.03em}
.menu-item__name small{display:block;font-weight:400;text-transform:none;color:var(--cream-dim);font-size:12px;letter-spacing:0;margin-top:2px}
.menu-item__price{font-family:var(--display);font-weight:600;color:var(--cream);white-space:nowrap;font-size:14px}
.menu-item__price .unit{color:var(--cream-mute);font-size:11px;margin-left:2px}
.menu-cols{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,70px)}

.foodshot{display:block;width:100%;height:auto;border-radius:2px}

/* price tables */
.mtable{width:100%;border-collapse:collapse}
.mtable th{
  font-family:var(--display);font-weight:500;text-transform:uppercase;
  font-size:10.5px;letter-spacing:.06em;color:var(--cream-mute);
  text-align:right;padding:0 0 8px;vertical-align:bottom;line-height:1.2;
}
.mtable th:first-child{text-align:left}
.mtable td{padding:8px 0;border-bottom:1px dotted var(--line-soft);vertical-align:top}
.mtable td.nm{padding-right:16px}
.mtable .nm b{font-weight:600;text-transform:uppercase;font-size:13.5px;letter-spacing:.03em}
.mtable .nm small{display:block;font-weight:400;text-transform:none;color:var(--cream-dim);font-size:11.5px;letter-spacing:0;margin-top:3px;line-height:1.5}
.mtable .nm .tag{color:var(--cream-mute);font-size:10px;font-weight:400;text-transform:uppercase;letter-spacing:.04em;margin-left:6px}
.mtable td.pc{
  text-align:right;white-space:nowrap;font-family:var(--display);font-weight:600;
  color:var(--cream);font-size:14px;padding-left:14px;min-width:64px;
}
.mtable td.pc .u{display:block;color:var(--cream-mute);font-size:9.5px;font-weight:400;letter-spacing:.04em}
.menu-note{font-size:12px;color:var(--cream-dim);font-style:italic;margin:6px 0 16px}
.menu-foot-note{font-size:11.5px;color:var(--cream-mute);margin-top:10px;line-height:1.6}

/* ---------- Light menu theme (per comp: menus sit on near-white) ---------- */
.section--menu{background:#f0efec;color:#1c1916}
.section--menu .menu-head h2{
  color:#141210;
  border-top:1px solid #c9c5bf;border-bottom:1px solid #c9c5bf;
  padding:16px 0;
}
.section--menu .menu-head .note{color:#3c3731}
.section--menu .menu-group__title{color:var(--red);border-bottom:0;padding-bottom:2px}
.section--menu .mtable .nm b{color:#141210}
.section--menu .mtable .nm small{color:#4a453f}
.section--menu .mtable .nm .tag{color:#7b756d}
.section--menu .mtable th{color:#4a453f}
.section--menu .mtable td{border-bottom:0;padding:6px 0}
.section--menu .mtable td.pc{color:var(--red);padding-left:18px}
.section--menu .mtable td.pc .u{color:#7b756d;display:inline;font-size:10px;margin:0 12px 0 2px}
.section--menu .mtable td.pc .u:last-child{margin-right:0}
.section--menu .menu-note{color:#4a453f}
.section--menu .menu-foot-note{color:#6b655e}
.section--menu .menu-row{border-top:1px solid #d8d4ce;padding-top:46px}
.section--menu .menu-row:first-of-type{border-top:0;padding-top:0}
.section--menu .body,.section--menu p{color:#3c3731}
.section--menu strong{color:#141210}
.section--menu .season-tag{color:#3c3731}
.section--menu .all-meals{
  font-family:var(--display);font-weight:600;text-transform:uppercase;
  color:#141210;font-size:20px;line-height:1.25;margin:20px 0 6px;letter-spacing:.02em;
}
.section--menu .season{font-family:var(--serif);color:#3c3731;font-size:15px;margin:0 0 22px}
.red-block{background:var(--red);width:100%;min-height:340px;height:100%}

.menu-row{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,64px);align-items:start;margin-bottom:54px}
.menu-photo{display:block;width:100%;height:auto;border-radius:2px}
.dessert-cta{display:flex;align-items:center;gap:20px;margin-top:18px;flex-wrap:wrap}
.season-tag{font-family:var(--display);text-transform:uppercase;letter-spacing:.1em;color:var(--cream-mute);font-size:12px}

/* ---------- Locations ---------- */
.locations-bg{
  background:#0b0a09 url("../assets/img/wood-texture.jpg?v=13") center/cover fixed;
  position:relative;
}
.locations-bg::before{content:"";position:absolute;inset:0;background:rgba(10,8,7,.8)}
.loc-grid{
  position:relative;
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(40px,7vw,110px) clamp(40px,8vw,120px);
  padding:clamp(56px,9vw,120px) 0;
}
.loc-card__head{
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:2px solid var(--cream);border-top:2px solid var(--cream);
  padding:10px 0;margin-bottom:24px;
}
.loc-card__head h3{
  font-family:var(--display);font-weight:700;text-transform:uppercase;
  font-size:clamp(26px,3vw,40px);margin:0;letter-spacing:.01em;
}
.loc-card__pin{width:26px;height:26px;fill:var(--cream)}
.loc-card p{margin:0 0 18px;font-size:14px;line-height:1.55}
.loc-card .label{color:var(--cream);font-weight:600;text-transform:uppercase;font-size:12px;letter-spacing:.08em;font-family:var(--display);margin-bottom:4px}

/* ---------- About ---------- */
.about-copy p{font-size:15px;line-height:1.85;color:var(--cream-dim);margin:0 0 22px;max-width:52ch}

/* ---------- FAQ ---------- */
.faq-bg{position:relative;background:var(--panel-2);overflow:hidden}
.faq-stamp{
  position:absolute;right:-40px;top:380px;width:min(46%,520px);
  opacity:.13;pointer-events:none;
}
.faq-list{position:relative;max-width:600px}
.faq-item{margin-bottom:28px}
.faq-item h3{
  font-family:var(--display);font-weight:600;text-transform:uppercase;
  font-size:16px;letter-spacing:.05em;margin:0 0 8px;color:var(--cream);
}
.faq-item p{margin:0;font-size:13.5px;line-height:1.7;color:var(--cream-dim);max-width:54ch}

/* ---------- Gift cards ---------- */
.gift-card-media{background:#1a120c center/cover}

/* mobile script accent */
.script{font-family:var(--script);text-transform:none;font-weight:400}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  .nav__links,.nav__right .btn{display:none}
  .nav__toggle{display:block}
  .split{grid-template-columns:1fr}
  .split--reverse .split__media{order:-1}
  .split__panel::before{display:none}
  .menu-head{grid-template-columns:1fr;gap:14px;margin-bottom:36px}
  .menu-cols{grid-template-columns:1fr;gap:0}
  .menu-row{grid-template-columns:1fr;gap:26px}
  .red-block{min-height:180px}
  .loc-grid{grid-template-columns:1fr;gap:48px}
  .faq-stamp{display:none}
  .footer__inner{gap:28px}
}

/* Mobile drawer */
.drawer{
  position:fixed;inset:0;z-index:90;background:rgba(10,8,7,.98);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:26px;
  opacity:0;visibility:hidden;transition:.3s;
}
.drawer.open{opacity:1;visibility:visible}
.drawer a{
  font-family:var(--display);text-transform:uppercase;letter-spacing:.14em;
  font-size:22px;color:var(--cream);
}
.drawer a:hover{color:var(--red)}
.drawer__close{position:absolute;top:24px;right:28px;font-size:34px;background:none;border:0;color:var(--cream);cursor:pointer;line-height:1}
