:root{
  --cream:#f8efdd;
  --red:#f33028;
  --red-deep:#8a1712;
  --gold:#efb12e;
  --ink:#090706;
  --panel:#100d0b;
  --muted:#c8baa5;
  --ticker-h:64px;
  --ticker-gap:14px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  width:100%;
  height:100%;
  overflow:hidden;
  background:var(--ink);
}

body{
  color:var(--cream);
  font-family:"Barlow Condensed",sans-serif;
}

button,a{font:inherit}
button{color:inherit}

.site-shell{
  position:fixed;
  inset:0;
  display:grid;
  grid-template-rows:minmax(0,1fr) calc(var(--ticker-h) + var(--ticker-gap));
  overflow:hidden;
  background:#090604;
}

.hero{
  position:relative;
  min-height:0;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  inset:0;
  background:url("../assets/images/diner-interior.webp") 60% 50%/cover no-repeat;
  filter:saturate(1.06) brightness(1.08) contrast(1.02);
  transform:scale(1.003);
}

.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,3,2,.92) 0,rgba(7,4,3,.78) 27%,rgba(7,4,3,.30) 48%,rgba(3,2,2,.05) 72%),
    linear-gradient(0deg,rgba(0,0,0,.35),transparent 38%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(520px,37vw);
  height:100%;
  padding:clamp(22px,3.3vh,42px) 0 clamp(24px,3.5vh,42px) clamp(42px,4.8vw,82px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.brand{
  width:max-content;
  text-align:center;
  text-transform:uppercase;
  line-height:.83;
}

.brand-kicker{
  display:block;
  color:var(--gold);
  font:700 clamp(12px,1vw,17px)/1 "Oswald";
  letter-spacing:.18em;
}

.brand-name{
  display:block;
  margin-top:8px;
  font:900 clamp(52px,5.2vw,86px)/.82 "Oswald";
  letter-spacing:-.04em;
  text-shadow:0 4px 16px #000;
}

.brand-star{
  display:block;
  color:var(--red);
  font-size:16px;
  margin-top:7px;
}

.pitch{
  margin-top:auto;
  margin-bottom:auto;
  padding-top:1vh;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--gold);
  font:700 clamp(13px,1vw,18px)/1 "Oswald";
  letter-spacing:.18em;
  text-transform:uppercase;
}

.pitch h1{
  margin:0;
  text-transform:uppercase;
  font:800 clamp(46px,4.65vw,78px)/.89 "Oswald";
  letter-spacing:-.035em;
  text-shadow:0 5px 26px #000;
}

.pitch h1 em{
  color:var(--red);
  font-style:normal;
}

.actions{
  display:flex;
  gap:14px;
}

.action{
  height:64px;
  min-width:164px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border:1px solid;
  background:rgba(10,7,5,.76);
  text-transform:uppercase;
  font:700 23px/1 "Oswald";
  letter-spacing:.03em;
  cursor:pointer;
  backdrop-filter:blur(7px);
  transition:.2s ease;
}

.action:hover,.action:focus-visible{
  transform:translateY(-3px);
  outline:none;
}

.action-menu{
  border-color:#ff4a41;
  box-shadow:0 0 22px rgba(243,48,40,.36);
}

.action-find{
  border-color:var(--gold);
  box-shadow:0 0 22px rgba(239,177,46,.28);
}

.action-icon{
  color:var(--red);
  font-size:24px;
}

.action-find .action-icon{color:var(--gold)}

.contact-block{
  margin-top:19px;
  display:grid;
  gap:8px;
  font-style:normal;
}

.contact-block a{
  width:max-content;
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--cream);
  text-decoration:none;
  font-size:clamp(19px,1.45vw,25px);
  line-height:1.05;
}

.contact-block a+a{
  padding-top:10px;
  border-top:1px solid rgba(243,48,40,.68);
  min-width:250px;
}

.contact-symbol{
  color:var(--red);
  font-size:18px;
}

.service-card{
  position:absolute;
  z-index:3;
  left:44%;
  bottom:28px;
  display:grid;
  grid-template-columns:auto auto 1fr;
  align-items:center;
  gap:22px;
  padding:16px 24px;
  border:1px solid rgba(239,177,46,.38);
  background:rgba(8,6,5,.78);
  backdrop-filter:blur(8px);
  box-shadow:0 12px 35px rgba(0,0,0,.45);
}

.service-card div{
  display:grid;
  text-align:center;
}

.service-card strong{
  color:var(--gold);
  font:700 25px/1 "Oswald";
}

.service-card span{
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:14px;
}

.service-card p{
  margin:0;
  padding-left:20px;
  border-left:1px solid rgba(255,255,255,.18);
  text-transform:uppercase;
  font-size:18px;
  line-height:1.25;
  letter-spacing:.04em;
}

.ticker{
  position:relative;
  z-index:8;
  width:100%;
  height:var(--ticker-h);
  align-self:start;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:linear-gradient(#7e120e,#9d1712 52%,#72100c);
  border-top:2px solid #ff4a41;
  border-bottom:1px solid #d88d2d;
  box-shadow:0 -4px 18px rgba(243,48,40,.18);
}

.ticker-track{
  width:max-content;
  height:100%;
  display:flex;
  align-items:center;
  animation:ticker 25s linear infinite;
  will-change:transform;
}

.ticker-group{
  display:flex;
  align-items:center;
  gap:22px;
  padding-right:22px;
  white-space:nowrap;
  color:#fff3da;
  font-size:clamp(17px,1.25vw,22px);
  line-height:1;
}

.ticker-group>span:first-child,
.ticker-group>span:nth-child(4){
  color:var(--gold);
}

@keyframes ticker{
  to{transform:translateX(-50%)}
}

.scrim{
  position:fixed;
  inset:0;
  z-index:20;
  background:rgba(0,0,0,.68);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  backdrop-filter:blur(4px);
}

.scrim.open{
  opacity:1;
  visibility:visible;
}

.panel{
  position:fixed;
  z-index:30;
  top:0;
  right:0;
  bottom:0;
  width:min(850px,95vw);
  padding:28px;
  overflow-y:auto;
  background:
    radial-gradient(circle at 100% 0,rgba(121,28,17,.22),transparent 35%),
    linear-gradient(135deg,#15110e,#070605 75%);
  border-left:1px solid rgba(239,177,46,.45);
  box-shadow:-20px 0 60px rgba(0,0,0,.72);
  transform:translateX(102%);
  transition:transform .46s cubic-bezier(.22,.8,.25,1);
  scrollbar-color:var(--red) #100d0b;
}

.panel.open{transform:translateX(0)}

.panel-close{
  position:absolute;
  z-index:4;
  top:16px;
  right:18px;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  font-size:40px;
  line-height:1;
  cursor:pointer;
}

.panel-close:hover{color:var(--red)}

.panel-header{
  padding:0 58px 0 12px;
  margin-bottom:18px;
  text-align:center;
}

.panel-kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
}

.panel-header h2{
  margin:5px 0 5px;
  text-transform:uppercase;
  font:800 clamp(42px,5vw,68px)/.9 "Oswald";
}

.panel-header p{
  max-width:620px;
  margin:0 auto;
  color:var(--muted);
  font-size:19px;
  line-height:1.25;
}

.menu-layout{
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  gap:12px;
}

.menu-tabs{
  display:flex;
  flex-direction:column;
  border:1px solid rgba(239,177,46,.34);
  background:#090806;
  padding:8px;
}

.menu-tab{
  height:47px;
  padding:0 12px;
  border:0;
  background:transparent;
  color:#eee3d0;
  text-align:left;
  text-transform:uppercase;
  font:600 16px/1 "Oswald";
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-tab span{
  width:22px;
  color:var(--gold);
  font-size:18px;
}

.menu-tab.active,.menu-tab:hover{
  background:linear-gradient(90deg,#aa1b15,#7b110d);
  color:white;
}

.menu-tab.active span{color:#fff}

.menu-content{
  min-height:475px;
  border:1px solid rgba(239,177,46,.34);
  background:#090806;
  padding:14px;
}

.category-panel{display:none}
.category-panel.active{display:block}

.category-title{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:16px;
  align-items:center;
  margin-bottom:8px;
}

.category-title span{
  height:2px;
  background:linear-gradient(90deg,transparent,var(--red));
}

.category-title span:last-child{
  background:linear-gradient(90deg,var(--red),transparent);
}

.category-title h3{
  margin:0;
  color:var(--red);
  text-transform:uppercase;
  font:700 22px/1 "Oswald";
  letter-spacing:.08em;
}

.menu-list{display:grid}

.menu-row{
  display:grid;
  grid-template-columns:135px 1fr;
  gap:14px;
  padding:10px 0;
  border-bottom:1px dashed rgba(239,177,46,.28);
}

.menu-row img{
  width:135px;
  height:88px;
  object-fit:cover;
  border:1px solid rgba(239,177,46,.28);
}

.item-heading{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.item-heading h4,.text-item h4{
  margin:0;
  text-transform:uppercase;
  font:600 20px/1 "Oswald";
}

.item-heading strong,.text-item>strong{
  color:var(--red);
  font:600 18px/1 "Oswald";
  white-space:nowrap;
}

.menu-row p,.text-item p{
  margin:7px 0 0;
  color:#cdbfaa;
  font-size:15px;
  line-height:1.3;
}

.text-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:19px 8px;
  border-bottom:1px dashed rgba(239,177,46,.28);
}

.text-item:last-child,.menu-row:last-child{border-bottom:0}

.menu-feature-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}

.menu-feature-strip article{
  min-height:118px;
  display:grid;
  grid-template-columns:42% 1fr;
  border:1px solid rgba(239,177,46,.36);
  background:#0d0a08;
  overflow:hidden;
}

.menu-feature-strip img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.menu-feature-strip div{
  padding:12px;
  display:flex;
  flex-direction:column;
}

.menu-feature-strip strong{
  color:var(--red);
  text-transform:uppercase;
  font:700 18px/1 "Oswald";
}

.menu-feature-strip span{
  margin:6px 0;
  color:#d6c8b4;
  font-size:14px;
}

.menu-feature-strip b{
  margin-top:auto;
  color:var(--gold);
  font:600 18px/1 "Oswald";
}

.map-card{
  border:1px solid rgba(239,177,46,.35);
  border-radius:5px;
  overflow:hidden;
  background:#091015;
}

.map{
  display:block;
  width:100%;
  height:auto;
}

.find-details{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:20px 0;
}

.find-details section{
  padding:20px;
  border:1px solid rgba(245,237,219,.14);
  background:rgba(255,255,255,.025);
}

.find-details h3{
  margin:0 0 12px;
  color:var(--gold);
  text-transform:uppercase;
  font:700 23px/1 "Oswald";
}

.find-details p,.find-details a{
  color:var(--cream);
  font-size:19px;
  line-height:1.45;
}

.hours{margin:0}

.hours div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:7px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:18px;
}

.hours dd{
  margin:0;
  color:var(--cream);
}

.hours dt{color:var(--muted)}

.directions-button{
  display:flex;
  justify-content:center;
  gap:16px;
  align-items:center;
  height:58px;
  color:white;
  text-decoration:none;
  text-transform:uppercase;
  border:1px solid var(--red);
  background:linear-gradient(90deg,#72130f,#b21e17);
  font:700 21px/1 "Oswald";
  letter-spacing:.08em;
}

.directions-button:hover{background:#d4271f}

@media(max-width:1050px){
  .hero-content{
    width:47vw;
    padding-left:35px;
  }

  .service-card{display:none}

  .hero-image{background-position:64% center}

  .hero-shade{
    background:linear-gradient(90deg,rgba(5,3,2,.94),rgba(7,4,3,.78) 42%,rgba(3,2,2,.05) 78%);
  }
}

@media(max-width:700px){
  :root{
    --ticker-h:44px;
    --ticker-gap:8px;
  }

  .hero-image{background-position:68% center}

  .hero-shade{
    background:
      linear-gradient(90deg,rgba(4,3,2,.93),rgba(5,4,3,.72) 75%,rgba(4,3,2,.3)),
      linear-gradient(0deg,rgba(0,0,0,.56),transparent 65%);
  }

  .hero-content{
    width:100%;
    padding:20px 20px 22px;
    justify-content:flex-end;
  }

  .brand{
    position:absolute;
    top:20px;
    left:20px;
  }

  .brand-kicker{font-size:10px}
  .brand-name{font-size:38px}

  .pitch{margin:0}
  .eyebrow{font-size:11px}
  .pitch h1{font-size:clamp(38px,12vw,56px)}

  .actions{
    gap:10px;
    margin-top:18px;
  }

  .action{
    height:56px;
    min-width:0;
    flex:1;
    padding:0 12px;
    font-size:18px;
  }

  .contact-block{
    margin-top:14px;
    grid-template-columns:1fr 1fr;
  }

  .contact-block a{
    font-size:16px;
    gap:8px;
  }

  .contact-block a+a{
    min-width:0;
    border:0;
    padding:0;
  }

  .ticker-group{
    gap:14px;
    font-size:16px;
  }

  .panel{
    width:100vw;
    padding:58px 14px 22px;
  }

  .menu-layout{grid-template-columns:1fr}

  .menu-tabs{
    flex-direction:row;
    overflow-x:auto;
  }

  .menu-tab{
    flex:0 0 auto;
    height:42px;
  }

  .menu-content{min-height:0}

  .menu-row{grid-template-columns:105px 1fr}

  .menu-row img{
    width:105px;
    height:78px;
  }

  .menu-feature-strip{grid-template-columns:1fr}
  .find-details{grid-template-columns:1fr}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
  }
}

/* ==========================================================
   V3: WIDESCREEN HERO, BRIGHTER IMAGE, DISTINCT BRAND LOCKUP
   ========================================================== */

.hero-image{
  background-image:url("../assets/images/diner-interior-wide.webp");
  background-position:center center;
  background-size:cover;
  filter:saturate(1.08) brightness(1.15) contrast(.98);
  transform:none;
}

.hero-shade{
  background:
    linear-gradient(90deg,rgba(5,3,2,.82) 0%,rgba(6,4,3,.64) 24%,rgba(6,4,3,.24) 44%,rgba(3,2,2,.02) 72%),
    linear-gradient(0deg,rgba(0,0,0,.20),transparent 42%);
}

.hero-content{
  width:min(440px,32vw);
  padding:clamp(20px,3vh,34px) 0 clamp(18px,2.6vh,30px) clamp(34px,4vw,68px);
}

.brand{
  position:relative;
  min-width:250px;
  padding:14px 22px 17px;
  border:1px solid rgba(239,177,46,.72);
  background:linear-gradient(145deg,rgba(18,12,8,.90),rgba(7,5,4,.72));
  box-shadow:0 12px 34px rgba(0,0,0,.36),inset 0 0 0 1px rgba(255,255,255,.035);
  transform:rotate(-1deg);
}

.brand::before,.brand::after{
  content:"";
  position:absolute;
  top:50%;
  width:26px;
  height:3px;
  background:var(--red);
}

.brand::before{left:-14px}
.brand::after{right:-14px}

.brand-kicker{
  color:var(--gold);
  font-size:clamp(11px,1.25vh,15px);
  letter-spacing:.24em;
}

.brand-name{
  margin-top:9px;
  color:#fff4df;
  font-size:clamp(43px,5.7vh,66px);
  line-height:.78;
  letter-spacing:.015em;
  text-shadow:0 3px 0 rgba(0,0,0,.55),0 0 22px rgba(239,177,46,.12);
}

.brand-star{
  margin-top:10px;
  font-size:13px;
}

.eyebrow{font-size:clamp(12px,1.45vh,16px)}

.pitch h1{
  font-size:clamp(40px,6.6vh,66px);
  line-height:.90;
  letter-spacing:-.025em;
}

.actions{margin-top:4px}

.action{
  height:clamp(56px,7vh,64px);
  font-size:clamp(19px,2.45vh,23px);
}

.contact-block a{
  font-size:clamp(17px,2.2vh,23px);
}

.service-card{
  bottom:clamp(18px,2.8vh,28px);
}

@media(max-width:1050px){
  .hero-content{
    width:min(470px,46vw);
    padding-left:30px;
  }

  .hero-image{background-position:58% center}

  .hero-shade{
    background:linear-gradient(90deg,rgba(5,3,2,.88),rgba(7,4,3,.64) 42%,rgba(3,2,2,.03) 78%);
  }
}

@media(max-width:700px){
  .hero-image{background-position:62% center}

  .brand{
    min-width:0;
    padding:10px 15px 12px;
  }

  .brand-name{font-size:36px}

  .brand::before,.brand::after{width:18px}

  .pitch h1{font-size:clamp(36px,9vh,52px)}
}