/* ==========================================================================
   Cooper's Corner — Winfield, IL
   Design system: "Sign at Night"
   Palette + type derived from the enamel sign, black leather booths,
   red linen napkins and brass sconce light of the dining rooms.
   ========================================================================== */

:root{
  /* Surfaces — warm near-blacks pulled from the sign field and booth leather */
  --ink:        #0B0A09;
  --ink-2:      #121010;
  --ink-3:      #1A1615;
  --walnut:     #241813;
  --walnut-2:   #3B2A20;

  /* Brand red — sampled from the sign's end caps */
  --red:        #E62410;
  --red-hot:    #FF3A1F;
  --red-text:   #FF6247;   /* accessible red for small text on dark */

  /* Light */
  --linen:      #F5EFE5;
  --linen-2:    #D9D1C5;
  --linen-dim:  #A79E92;
  --brass:      #C8A24A;

  /* Type */
  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label:   "Barlow", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --maxw: 1280px;
  --maxw-narrow: 820px;
  --sec-y: clamp(4.5rem, 9vw, 9rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --radius: 3px;
}

/* --------------------------------------------------------------- reset */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--ink);
  color:var(--linen);
  font-family:var(--body);
  font-size:1.0625rem;        /* 17px — sized up for comfortable reading */
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (min-width:900px){ body{ font-size:1.125rem; } }

img,video{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font:inherit; color:inherit; }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-0.015em;
  font-variation-settings:"SOFT" 20,"WONK" 0;
  margin:0;
  text-wrap:balance;
}
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }

:focus-visible{
  outline:3px solid var(--red-hot);
  outline-offset:3px;
  border-radius:2px;
}

.skip{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--red); color:#fff; padding:1rem 1.5rem; font-weight:600;
}
.skip:focus{ left:0; }

.sr{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ------------------------------------------------------------ structure */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.wrap-narrow{ max-width:var(--maxw-narrow); }
.section{ padding-block:var(--sec-y); position:relative; }

/* ------------------------------------------------------- signature mark
   The sign's two red end caps, abstracted into a bracket that frames
   every section label. This is the one structural motif on the site. */
.mark{
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:var(--label);
  font-size:clamp(.85rem,1.6vw,1rem);
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--linen-2);
  margin-bottom:1.5rem;
}
.mark::before,.mark::after{
  content:""; width:11px; height:26px; background:var(--red); flex:none;
}
.mark::before{ clip-path:polygon(0 0,100% 14%,100% 86%,0 100%); }
.mark::after{ clip-path:polygon(0 14%,100% 0,100% 100%,0 86%); }
.mark--solo::after{ display:none; }

/* --------------------------------------------------------------- titles */
.title{ font-size:clamp(2.4rem,6.4vw,5.25rem); }
.title-sm{ font-size:clamp(1.9rem,4.2vw,3.25rem); }
.title em{ font-style:italic; color:var(--linen); }
.lede{
  font-size:clamp(1.08rem,1.7vw,1.3rem);
  color:var(--linen-2);
  max-width:56ch;
  line-height:1.6;
}

/* -------------------------------------------------------------- buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  min-height:56px; padding:.9rem 1.9rem;
  font-family:var(--label);
  font-size:1.1rem; font-weight:600; letter-spacing:.07em; text-transform:uppercase;
  text-decoration:none; border:2px solid transparent; border-radius:var(--radius);
  cursor:pointer; position:relative; overflow:hidden;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn-primary{ background:var(--red); color:#fff; border-color:var(--red); }
.btn-primary:hover{ background:var(--red-hot); border-color:var(--red-hot); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--linen); border-color:rgba(245,239,229,.34); }
.btn-ghost:hover{ border-color:var(--linen); background:rgba(245,239,229,.08); transform:translateY(-2px); }
.btn-solid{ background:var(--linen); color:var(--ink); border-color:var(--linen); }
.btn-solid:hover{ background:#fff; transform:translateY(-2px); }
.btn-row{ display:flex; flex-wrap:wrap; gap:.9rem; }

/* ================================================================ HEADER */
.topbar{
  background:var(--walnut);
  border-bottom:1px solid rgba(245,239,229,.09);
  font-family:var(--label);
  font-size:1rem; letter-spacing:.02em;
  color:var(--linen-2);
}
.topbar-in{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:.5rem 1.6rem; padding:.6rem var(--gutter);
  max-width:var(--maxw); margin-inline:auto; text-align:center;
}
.topbar a{ color:var(--linen); text-decoration:none; border-bottom:1px solid rgba(245,239,229,.3); }
.topbar a:hover{ border-color:var(--red-hot); color:#fff; }
.topbar .dot{ color:var(--red-text); }
.topbar strong{ color:var(--linen); font-weight:600; }

.header{
  position:sticky; top:0; z-index:100;
  background:rgba(11,10,9,.82);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(245,239,229,.1);
  transition:background .3s var(--ease), border-color .3s var(--ease);
}
.header.is-stuck{ background:rgba(11,10,9,.96); border-color:rgba(245,239,229,.16); }
.header-in{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.7rem var(--gutter); max-width:var(--maxw); margin-inline:auto;
}
.brand{ display:flex; align-items:center; flex:none; }
.brand img{ width:auto; height:46px; }
@media (min-width:900px){ .brand img{ height:56px; } }

.nav{ display:none; }
@media (min-width:1060px){
  .nav{ display:flex; align-items:center; gap:2rem; }
}
.nav a{
  font-family:var(--label); font-size:1.02rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; text-decoration:none;
  color:var(--linen-2); padding:.4rem 0; position:relative; white-space:nowrap;
  transition:color .25s var(--ease);
}
.nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background:var(--red); transition:right .35s var(--ease);
}
.nav a:hover,.nav a[aria-current="page"]{ color:var(--linen); }
.nav a:hover::after,.nav a[aria-current="page"]::after{ right:0; }

.header-cta{ display:none; }
@media (min-width:1060px){ .header-cta{ display:inline-flex; min-height:48px; padding:.6rem 1.4rem; font-size:1.05rem; } }

.burger{
  display:inline-flex; flex-direction:column; justify-content:center; gap:6px;
  width:52px; height:52px; padding:0 12px; background:none;
  border:1px solid rgba(245,239,229,.28); border-radius:var(--radius); cursor:pointer;
}
@media (min-width:1060px){ .burger{ display:none; } }
.burger span{ display:block; height:2px; background:var(--linen); transition:transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

.drawer{
  display:none; background:var(--ink-2); border-bottom:1px solid rgba(245,239,229,.12);
  padding:.5rem var(--gutter) 1.6rem;
}
.drawer.is-open{ display:block; }
@media (min-width:1060px){ .drawer{ display:none !important; } }
.drawer a{
  display:block; padding:1.05rem .25rem; text-decoration:none; color:var(--linen);
  font-family:var(--label); font-size:1.25rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  border-bottom:1px solid rgba(245,239,229,.1);
}
.drawer a:hover{ color:var(--red-text); }
.drawer .btn{ margin-top:1.3rem; width:100%; }

/* ================================================================== HERO */
.hero{ position:relative; min-height:min(92svh,860px); display:flex; align-items:flex-end; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:64% 58%; }
.hero-media::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(11,10,9,.97) 4%, rgba(11,10,9,.66) 36%, rgba(11,10,9,.34) 70%, rgba(11,10,9,.60) 100%),
    linear-gradient(to right, rgba(11,10,9,.90) 0%, rgba(11,10,9,.62) 42%, rgba(11,10,9,.12) 78%),
    radial-gradient(ellipse 56% 44% at 70% 44%, rgba(230,36,16,.18), transparent 72%);
}
.hero-in{ position:relative; z-index:2; width:100%; padding-block:clamp(3rem,8vw,6rem) clamp(3rem,7vw,5rem); }
.hero h1{ font-size:clamp(2.3rem,5.9vw,5.6rem); line-height:1.0; margin-bottom:1.4rem; letter-spacing:-.02em; }
.hero h1 .ln{ display:block; overflow:hidden; }
.hero h1 .ln > span{ display:block; }
.hero h1 em{ font-style:italic; color:var(--linen); font-variation-settings:"SOFT" 30,"WONK" 1; }
.hero-sub{
  font-size:clamp(1.1rem,2vw,1.42rem); color:var(--linen-2);
  max-width:46ch; margin-bottom:2.1rem; line-height:1.55;
}
.hero-note{
  margin-top:1.9rem; font-family:var(--label); font-size:1.05rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--linen-dim);
}
.hero-note b{ color:var(--linen); font-weight:600; }

/* ========================================================= QUICK ACTIONS
   Four oversized doors into the site. Built big and plainly labelled
   because most of our guests find what they need here and stop. */
.doors{ background:var(--ink-2); border-block:1px solid rgba(245,239,229,.1); }
.doors-grid{ display:grid; grid-template-columns:1fr; }
@media (min-width:640px){ .doors-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1060px){ .doors-grid{ grid-template-columns:repeat(4,1fr); } }
.door{
  display:flex; flex-direction:column; justify-content:space-between; gap:1.6rem;
  padding:2.1rem clamp(1.25rem,3vw,2.2rem) 1.9rem;
  text-decoration:none; position:relative;
  border-bottom:1px solid rgba(245,239,229,.1);
  transition:background .35s var(--ease);
}
@media (min-width:640px){ .door{ border-right:1px solid rgba(245,239,229,.1); } }
.door::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:4px;
  background:var(--red); transform:scaleY(0); transform-origin:top;
  transition:transform .4s var(--ease-out);
}
.door:hover{ background:var(--ink-3); }
.door:hover::before{ transform:scaleY(1); }
.door-icon{
  display:block; width:38px; height:38px; color:var(--red-text); margin-bottom:1.1rem;
  transition:color .35s var(--ease), transform .45s var(--ease-out);
}
.door:hover .door-icon{ color:var(--linen); transform:translateY(-3px); }
.door-k{
  font-family:var(--label); font-size:.95rem; font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--red-text);
  display:inline-flex; align-items:center; gap:.55rem;
}
.door-k::before{
  content:""; width:9px; height:20px; background:var(--red); flex:none;
  clip-path:polygon(0 0,100% 14%,100% 86%,0 100%);
}
.door-t{ font-family:var(--display); font-size:clamp(1.5rem,2.4vw,1.95rem); font-weight:700; line-height:1.08; margin:.55rem 0 .45rem; }
.door-d{ font-size:1.02rem; color:var(--linen-2); line-height:1.55; }
.door-go{
  font-family:var(--label); font-size:1rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--linen); display:inline-flex; align-items:center; gap:.5rem;
}
.door-go svg{ transition:transform .35s var(--ease); }
.door:hover .door-go svg{ transform:translateX(6px); }

/* ============================================================== MARQUEE */
.ticker{
  background:var(--red); color:#fff; overflow:hidden;
  padding-block:.85rem; border-block:1px solid rgba(0,0,0,.25);
}
.ticker-track{ display:flex; width:max-content; animation:slide 44s linear infinite; }
.ticker:hover .ticker-track{ animation-play-state:paused; }
.ticker-set{ display:flex; align-items:center; flex:none; }
.ticker-set span{
  font-family:var(--label); font-size:1.08rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; padding-inline:1.5rem;
  display:inline-flex; align-items:center; gap:1.5rem; white-space:nowrap;
}
.ticker-set span::after{ content:"◆"; font-size:.6rem; opacity:.65; letter-spacing:0; }
@keyframes slide{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ======================================================== SIGNATURE: WEEK
   A guest's first question is almost always "what's on tonight?".
   The rail answers it for whichever day they land on, then lets them
   scrub the rest of the week. */
.week{ background:var(--ink); }
.week-head{ display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:1.4rem 2rem; margin-bottom:2.4rem; }
.week-rail{
  display:flex; gap:.6rem; overflow-x:auto; padding-bottom:.7rem; margin-bottom:2.4rem;
  scrollbar-width:thin; -webkit-overflow-scrolling:touch;
}
.week-rail::-webkit-scrollbar{ height:4px; }
.week-rail::-webkit-scrollbar-thumb{ background:rgba(245,239,229,.22); }
.day{
  flex:1 0 auto; min-width:96px; min-height:76px; padding:.85rem 1.1rem;
  background:transparent; border:1px solid rgba(245,239,229,.2); border-radius:var(--radius);
  cursor:pointer; text-align:left; position:relative;
  transition:border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.day:hover{ border-color:rgba(245,239,229,.5); background:rgba(245,239,229,.05); }
.day b{
  display:block; font-family:var(--label); font-size:1.22rem; font-weight:600;
  letter-spacing:.05em; text-transform:uppercase; line-height:1.2;
}
.day i{
  display:block; font-style:normal; font-size:.82rem; letter-spacing:.06em;
  color:var(--linen-dim); margin-top:.2rem; font-family:var(--body);
}
.day[aria-selected="true"]{ background:var(--red); border-color:var(--red); color:#fff; }
.day[aria-selected="true"] i{ color:rgba(255,255,255,.85); }
.day .today-dot{
  position:absolute; top:8px; right:8px; width:7px; height:7px; border-radius:50%;
  background:var(--red-hot); box-shadow:0 0 0 3px rgba(255,58,31,.22);
}
.day[aria-selected="true"] .today-dot{ background:#fff; box-shadow:0 0 0 3px rgba(255,255,255,.3); }

.week-panel{ display:grid; grid-template-columns:1fr; gap:2.4rem; align-items:start; }
@media (min-width:940px){ .week-panel{ grid-template-columns:1.15fr .85fr; gap:clamp(2.5rem,5vw,5rem); } }
.week-panel.is-swapping .swap{ opacity:0; transform:translateY(14px); }
.swap{ transition:opacity .34s var(--ease), transform .34s var(--ease); }
.week-kicker{
  font-family:var(--label); font-size:1rem; font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--red-text); margin-bottom:.7rem;
}
.week-title{ font-size:clamp(2rem,4.6vw,3.5rem); margin-bottom:1.1rem; }
.week-body{ color:var(--linen-2); font-size:1.1rem; max-width:52ch; margin-bottom:1.7rem; }
.week-list{ list-style:none; margin:0 0 1.9rem; padding:0; }
.week-list li{
  padding:.85rem 0; border-top:1px solid rgba(245,239,229,.13);
  display:flex; flex-direction:column; gap:.15rem;
}
@media (min-width:560px){
  .week-list li{ flex-direction:row; justify-content:space-between; gap:1.2rem; align-items:baseline; }
}
.week-list li:last-child{ border-bottom:1px solid rgba(245,239,229,.13); }
.week-list .n{ font-weight:500; }
.week-list .p{ font-family:var(--label); font-weight:500; letter-spacing:.01em; color:var(--red-text); font-size:1.05rem; text-align:left; font-variant-numeric:tabular-nums; }
@media (min-width:560px){ .week-list .p{ text-align:right; } }

.facts{ background:var(--ink-2); border:1px solid rgba(245,239,229,.13); padding:clamp(1.5rem,3vw,2.2rem); }
.fact{ padding-block:1.15rem; border-bottom:1px solid rgba(245,239,229,.11); }
.fact:first-child{ padding-top:0; }
.fact:last-child{ border-bottom:0; padding-bottom:0; }
.fact-k{
  font-family:var(--label); font-size:.92rem; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; color:var(--linen-dim); margin-bottom:.35rem;
}
.fact-v{ font-size:1.22rem; font-weight:500; line-height:1.35; }
.fact-v .live{ color:var(--red-text); font-weight:600; }

/* ================================================================ DISHES */
.dishes{ background:var(--ink); }
.dish-grid{ display:grid; grid-template-columns:1fr; gap:1px; background:rgba(245,239,229,.13); border-block:1px solid rgba(245,239,229,.13); }
@media (min-width:820px){ .dish-grid{ grid-template-columns:repeat(3,1fr); } }
.dish{ background:var(--ink); padding:0 0 2rem; position:relative; overflow:hidden; }
.dish-img{ overflow:hidden; background:#000; aspect-ratio:4/3; }
.dish-img img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.1s var(--ease-out), filter .6s var(--ease);
  filter:saturate(1.02);
}
.dish:hover .dish-img img{ transform:scale(1.06); filter:saturate(1.1) brightness(1.06); }
.dish-body{ padding:1.7rem clamp(1.25rem,2.4vw,2rem) 0; }
.dish-eyebrow{
  font-family:var(--label); font-size:.92rem; font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--red-text); margin-bottom:.6rem;
}
.dish h3{ font-size:clamp(1.55rem,2.6vw,2.1rem); margin-bottom:.6rem; }
.dish p{ color:var(--linen-2); font-size:1.02rem; line-height:1.6; }
.dish .price{ font-family:var(--label); font-size:1.35rem; font-weight:600; letter-spacing:.005em; color:var(--linen); margin-top:.9rem; display:block; font-variant-numeric:tabular-nums; }

/* ================================================================= SPLIT */
.split{ display:grid; grid-template-columns:1fr; gap:clamp(2.2rem,5vw,4.5rem); align-items:center; }
@media (min-width:940px){
  .split{ grid-template-columns:1fr 1fr; }
  .split--wide-left{ grid-template-columns:1.12fr .88fr; }
  .split--wide-right{ grid-template-columns:.88fr 1.12fr; }
  .split--flip .split-media{ order:-1; }
}
.split-media{ position:relative; }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-media.frame{ aspect-ratio:4/3; }
.split-media.frame img{ position:absolute; inset:0; }
@media (min-width:940px){ .split-media.frame{ aspect-ratio:auto; min-height:440px; } }
.frame{ position:relative; overflow:hidden; }
.frame::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(245,239,229,.16);
}
.stat-tag{
  position:absolute; left:0; bottom:0; z-index:2; background:var(--red); color:#fff;
  padding:1rem 1.5rem 1.05rem; max-width:min(86%,340px);
}
.stat-tag b{ display:block; font-family:var(--display); font-size:clamp(1.35rem,2.2vw,1.7rem); line-height:1.05; margin-bottom:.25rem; }
.stat-tag span{ display:block; font-family:var(--label); font-size:.9rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; opacity:.94; line-height:1.35; }

.trio{ display:grid; grid-template-columns:1fr; gap:1rem; }
@media (min-width:700px){ .trio{ grid-template-columns:repeat(3,1fr); } }
.trio .split-media.frame{ aspect-ratio:3/4; min-height:0; }

/* ================================================== BANQUETS / ROOM REEL */
.rooms{ background:var(--walnut); }
.reel{
  display:grid; grid-auto-flow:column; grid-auto-columns:clamp(210px,58vw,270px);
  gap:1rem; overflow-x:auto; padding-bottom:1rem;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
}
.reel > *{ scroll-snap-align:start; }
.reel-hint{
  font-family:var(--label); font-size:.95rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--linen-dim); margin-top:.4rem;
}
.reel::-webkit-scrollbar{ height:4px; }
.reel::-webkit-scrollbar-thumb{ background:rgba(245,239,229,.25); }
.room{ position:relative; overflow:hidden; background:#000; }
.room video{ width:100%; aspect-ratio:9/16; object-fit:cover; display:block; }
.room-label{
  position:absolute; inset:auto 0 0 0; padding:3rem 1.1rem 1.1rem; min-height:96px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background:linear-gradient(to top, rgba(11,10,9,.94), transparent);
  pointer-events:none;
}
.room-label b{ display:block; font-family:var(--display); font-size:1.2rem; font-weight:700; line-height:1.15; margin-bottom:.15rem; }
.room-label span{ font-family:var(--label); font-size:.92rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--linen-dim); }

.perks{ list-style:none; margin:0; padding:0; display:grid; gap:.1rem; }
.perks li{
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.05rem 0; border-bottom:1px solid rgba(245,239,229,.16);
  font-size:1.08rem;
}
.perks li:first-child{ border-top:1px solid rgba(245,239,229,.16); }
.perks .tick{ color:var(--red-text); font-size:1.15rem; line-height:1.45; flex:none; }
.perks b{ font-weight:600; }
.perks .step{ font-family:var(--label); font-size:1.02rem; font-weight:600; letter-spacing:.02em; min-width:1.9rem; }

/* ================================================================= MUSIC */
.music{ background:var(--ink-2); }
.gigs{ list-style:none; margin:0; padding:0; }
.gig{
  display:grid; grid-template-columns:auto 1fr; gap:.35rem 1.4rem; align-items:center;
  padding:1.35rem 0; border-bottom:1px solid rgba(245,239,229,.13);
  transition:padding-left .35s var(--ease), background .35s var(--ease);
}
@media (min-width:720px){ .gig{ grid-template-columns:132px 1fr auto; gap:2rem; } }
.gig:first-child{ border-top:1px solid rgba(245,239,229,.13); }
.gig:hover{ padding-left:1rem; background:rgba(245,239,229,.035); }
.gig-date{
  font-family:var(--label); font-size:1.02rem; font-weight:600; letter-spacing:.05em;
  text-transform:uppercase; color:var(--red-text); white-space:nowrap;
}
.gig-act{ font-family:var(--display); font-size:clamp(1.35rem,2.6vw,1.95rem); font-weight:700; line-height:1.15; }
.gig-time{ font-family:var(--label); font-size:1rem; font-weight:500; letter-spacing:.04em; text-transform:uppercase; color:var(--linen-dim); grid-column:1/-1; }
@media (min-width:720px){ .gig-time{ grid-column:auto; text-align:right; } }

/* ================================================================ VISIT */
.visit{ background:var(--ink); }
.visit-grid{ display:grid; grid-template-columns:1fr; gap:2.6rem; }
@media (min-width:940px){ .visit-grid{ grid-template-columns:1fr 1fr; gap:clamp(2.5rem,5vw,4.5rem); } }
.map-frame{ position:relative; min-height:340px; height:100%; border:1px solid rgba(245,239,229,.16); overflow:hidden; }
.map-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; filter:grayscale(.25) contrast(1.05); }

.hours{ width:100%; border-collapse:collapse; margin-top:.4rem; }
.hours th,.hours td{ text-align:left; padding:.72rem 0; border-bottom:1px solid rgba(245,239,229,.12); font-size:1.05rem; }
.hours th{
  font-family:var(--label); font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--linen-dim); width:42%;
}
.hours td{ font-variant-numeric:tabular-nums; font-weight:500; letter-spacing:.005em; }
.hours tr.is-today th{ color:var(--red-text); }
.hours tr.is-today td{ color:var(--linen); font-weight:600; }
.hours tr.is-today th::after{ content:" • today"; letter-spacing:.1em; }

.addr{ font-size:1.22rem; line-height:1.5; margin-bottom:1.5rem; }
.addr a{ color:var(--linen); text-decoration:none; border-bottom:1px solid rgba(245,239,229,.35); }
.addr a:hover{ border-color:var(--red-hot); }
.holiday{
  margin-top:1.8rem; padding:1.3rem 1.5rem;
  background:var(--ink-2); border-left:4px solid var(--red); font-size:1rem;
}
.holiday b{ font-family:var(--label); letter-spacing:.16em; text-transform:uppercase; display:block; margin-bottom:.35rem; color:var(--linen); }

/* ================================================================= CTA */
.cta{ position:relative; overflow:hidden; text-align:center; }
.cta-bg{ position:absolute; inset:0; z-index:0; }
.cta-bg img{ width:100%; height:100%; object-fit:cover; }
.cta-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(rgba(11,10,9,.86),rgba(11,10,9,.93)); }
.cta-in{ position:relative; z-index:1; }
.cta .btn-row{ justify-content:center; }
.phone-xl{
  display:inline-block; font-family:var(--display); font-weight:700;
  font-size:clamp(2.4rem,6.5vw,4.6rem); line-height:1; text-decoration:none;
  color:var(--linen); letter-spacing:-.01em; margin-block:1.1rem 1.6rem;
  transition:color .3s var(--ease);
}
.phone-xl:hover{ color:var(--red-text); }

/* =============================================================== FOOTER */
.footer{ background:var(--ink-2); border-top:1px solid rgba(245,239,229,.13); padding-block:clamp(3rem,6vw,5rem) 2rem; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:2.4rem; }
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr; gap:3rem; } }
.footer img.fl{ height:56px; width:auto; margin-bottom:1.2rem; }
.footer h4{
  font-family:var(--label); font-size:1rem; font-weight:600; letter-spacing:.13em;
  text-transform:uppercase; color:var(--linen-dim); margin-bottom:1.1rem;
}
.footer ul{ list-style:none; margin:0; padding:0; }
.footer li{ margin-bottom:.65rem; }
.footer a{ color:var(--linen-2); text-decoration:none; }
.footer a:hover{ color:var(--red-text); }
.socials{ display:flex; gap:.7rem; margin-top:1.3rem; }
.socials a{
  width:46px; height:46px; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(245,239,229,.24); border-radius:var(--radius);
  transition:border-color .3s var(--ease), background .3s var(--ease);
}
.socials a:hover{ border-color:var(--red); background:var(--red); color:#fff; }
.colophon{
  margin-top:3rem; padding-top:1.6rem; border-top:1px solid rgba(245,239,229,.12);
  display:flex; flex-wrap:wrap; gap:.6rem 1.6rem; justify-content:space-between;
  font-size:.95rem; color:var(--linen-dim);
}

/* ========================================================== STICKY CALL */
.callbar{
  position:fixed; left:0; right:0; bottom:0; z-index:90;
  display:grid; grid-template-columns:1fr 1fr;
  background:var(--ink-2); border-top:1px solid rgba(245,239,229,.18);
  transform:translateY(101%); transition:transform .4s var(--ease-out);
}
.callbar.is-up{ transform:translateY(0); }
@media (min-width:1060px){ .callbar{ display:none; } }
.callbar a{
  display:flex; align-items:center; justify-content:center; gap:.55rem;
  min-height:60px; text-decoration:none;
  font-family:var(--label); font-size:clamp(.95rem,3.4vw,1.1rem); font-weight:600;
  letter-spacing:.05em; text-transform:uppercase; text-align:center; white-space:nowrap;
}
.callbar a.c-call{ background:var(--red); color:#fff; }
.callbar a.c-menu{ color:var(--linen); }
body.has-callbar{ padding-bottom:60px; }
@media (min-width:1060px){ body.has-callbar{ padding-bottom:0; } }

/* ============================================================ MENU PAGE */
.page-head{ position:relative; overflow:hidden; padding-block:clamp(3.5rem,8vw,7rem) clamp(2.5rem,5vw,4rem); }
.page-head::after{
  content:""; position:absolute; inset:0; z-index:0;
  background:radial-gradient(ellipse 70% 100% at 20% 0%, rgba(230,36,16,.15), transparent 65%);
}
.page-head .wrap{ position:relative; z-index:1; }

.menu-nav{
  position:sticky; top:64px; z-index:80;
  background:rgba(11,10,9,.95); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-block:1px solid rgba(245,239,229,.14);
}
@media (min-width:900px){ .menu-nav{ top:78px; } }
.menu-nav-in{ display:flex; gap:.4rem; overflow-x:auto; padding:.55rem var(--gutter); max-width:var(--maxw); margin-inline:auto; -webkit-overflow-scrolling:touch; }
.menu-nav-in::-webkit-scrollbar{ height:0; }
.menu-nav a{
  flex:none; padding:.62rem 1.05rem; text-decoration:none; white-space:nowrap;
  font-family:var(--label); font-size:1.02rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--linen-dim); border:1px solid transparent; border-radius:var(--radius);
  transition:color .25s, border-color .25s, background .25s;
}
.menu-nav a:hover{ color:var(--linen); border-color:rgba(245,239,229,.3); }
.menu-nav a.is-active{ color:#fff; background:var(--red); border-color:var(--red); }

.course{ padding-block:clamp(3rem,6vw,5rem); border-bottom:1px solid rgba(245,239,229,.1); scroll-margin-top:150px; }
.course:last-of-type{ border-bottom:0; }
.course-head{ margin-bottom:2.2rem; }
.course-head h2{ font-size:clamp(2rem,4.4vw,3.2rem); }
.course-note{ color:var(--linen-dim); margin-top:.7rem; font-size:1.02rem; max-width:70ch; }

.items{ display:grid; grid-template-columns:1fr; gap:0 clamp(2rem,4vw,4rem); }
@media (min-width:820px){ .items{ grid-template-columns:1fr 1fr; } }
.item{ padding:1.25rem 0; border-bottom:1px solid rgba(245,239,229,.11); }
.item-top{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; }
.item-n{ font-family:var(--display); font-size:1.2rem; font-weight:600; line-height:1.3; }
.item-p{ font-family:var(--label); font-size:1.16rem; font-weight:600; letter-spacing:.005em; color:var(--red-text); white-space:nowrap; font-variant-numeric:tabular-nums; }
.item-d{ color:var(--linen-2); font-size:1rem; line-height:1.5; margin-top:.35rem; }
.tag{
  display:inline-block; font-family:var(--label); font-size:.78rem; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; padding:.16rem .5rem; margin-left:.5rem; vertical-align:middle;
  border:1px solid rgba(245,239,229,.34); color:var(--linen-dim); border-radius:2px;
}
.sides{
  background:var(--ink-2); border-left:4px solid var(--red);
  padding:1.5rem clamp(1.3rem,3vw,2rem); margin-top:2rem; font-size:1.02rem; color:var(--linen-2);
}
.sides b{ color:var(--linen); }
.disclaim{ font-family:var(--label); letter-spacing:.08em; text-transform:uppercase; color:var(--linen-dim); font-size:.95rem; text-align:center; padding-block:2.5rem; }

/* ================================================================ MOTION */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.09s; }
.reveal[data-d="2"]{ transition-delay:.18s; }
.reveal[data-d="3"]{ transition-delay:.27s; }
.reveal[data-d="4"]{ transition-delay:.36s; }

/* Hero page-load choreography: environment, then headline, then the rest */
.hero-media img{ animation:kb 26s var(--ease) infinite alternate; }
@keyframes kb{ from{ transform:scale(1.02);} to{ transform:scale(1.11);} }

.hero h1 .ln > span{ transform:translateY(105%); animation:lineUp .95s var(--ease-out) forwards; }
.hero h1 .ln:nth-child(1) > span{ animation-delay:.25s; }
.hero h1 .ln:nth-child(2) > span{ animation-delay:.37s; }
.hero h1 .ln:nth-child(3) > span{ animation-delay:.49s; }
@keyframes lineUp{ to{ transform:translateY(0);} }

.fade-up{ opacity:0; transform:translateY(20px); animation:fadeUp .9s var(--ease-out) forwards; }
.hero .fade-up[data-d="1"]{ animation-delay:.62s; }
.hero .fade-up[data-d="2"]{ animation-delay:.74s; }
.hero .fade-up[data-d="3"]{ animation-delay:.86s; }
@keyframes fadeUp{ to{ opacity:1; transform:none;} }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{ opacity:1; transform:none; }
  .hero h1 .ln > span{ transform:none; }
  .fade-up{ opacity:1; transform:none; }
  .hero-media img{ animation:none; }
}

@media print{
  .header,.topbar,.callbar,.ticker,.menu-nav,.hero{ display:none !important; }
  body{ background:#fff; color:#000; }
}
