/* =================================================================
   Sizzlin' Smokehouse — style.css
   Plain CSS3. No build step. Mobile-first.
   ================================================================= */

:root {
  --red:        #9c1b1b;
  --red-deep:   #6d1214;
  --red-dark:   #4d0d0f;
  --cream:      #efe9dd;
  --cream-2:    #e7e0d1;
  --paper:      #fbf8f2;
  --ink:        #262220;
  --ink-soft:   #5b524d;
  --copper-1:   #e7b98c;
  --copper-2:   #c07f45;
  --copper-3:   #8a4d27;
  --gold:       #b7791f;
  --line:       rgba(0,0,0,.12);
  --shadow:     0 10px 30px rgba(40,15,15,.14);
  --radius:     14px;
  --wrap:       1160px;
  --header-h:   72px;

  --font-body:  "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script:"Great Vibes", "Segoe Script", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--red); }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 { font-family: var(--font-body); line-height: 1.2; font-weight: 700; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--cream { background: var(--cream); }
.section--red   { background: var(--red-deep); color: var(--cream); }
.section--red h1, .section--red h2, .section--red h3 { color: #fff; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--copper-2);
  line-height: 1;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.section--red .eyebrow { color: var(--copper-1); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .script { font-size: clamp(2.4rem, 6vw, 3.6rem); display: block; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 4px 0 0; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); color: #fff; }
.btn--copper {
  background: linear-gradient(135deg, var(--copper-1), var(--copper-2) 55%, var(--copper-3));
  color: #fff;
}
.btn--copper:hover { filter: brightness(1.06); color: #fff; }
.btn--ghost { border-color: currentColor; color: var(--red); background: transparent; }
.btn--ghost:hover { background: var(--red); color: #fff; }
.section--red .btn--ghost,
.hero .btn--ghost { color: #fff; border-color: #fff; }
.section--red .btn--ghost:hover,
.hero .btn--ghost:hover { background: #fff; color: var(--red-deep); }
.btn--sm { padding: 10px 18px; font-size: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--red-deep);
  color: var(--cream);
  border-bottom: 3px solid var(--copper-2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
}
.site-header__logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.site-header__phone {
  color: var(--cream); text-decoration: none; font-weight: 700; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .4em;
}
.site-header__phone:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: transparent; border: 0; color: var(--cream);
  width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header__phone span { display: none; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--red-deep);
    border-bottom: 3px solid var(--copper-2);
    padding: 8px 16px 20px;
    transform: translateY(-120%);
    transition: transform .25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav[data-open="true"] { transform: translateY(0); }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .site-nav .btn { margin-top: 12px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(72px, 14vw, 150px) 0;
  background: var(--red-dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .5;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(51,10,10,.55), rgba(51,10,10,.35) 40%, rgba(51,10,10,.75));
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero .script { color: var(--copper-1); font-size: clamp(2.6rem, 8vw, 4.6rem); display: block; }
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 6px 0 14px;
}
.hero p { font-size: 1.1rem; margin: 0 auto 26px; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero--page { padding: clamp(56px, 10vw, 96px) 0; }
.hero--page h1 { margin-bottom: 0; }

/* ---------- Page intro / prose ---------- */
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Highlights grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.section--cream .card { background: #fff; }
.card__icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-1), var(--copper-3));
  color: #fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 6px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em; }
.card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split--flip .split__media { order: 0; }
}

/* ---------- Opening hours table ---------- */
.hours {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.section--red .hours { background: rgba(255,255,255,.06); box-shadow: none; }
.hours th, .hours td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.section--red .hours th, .section--red .hours td { border-color: rgba(255,255,255,.14); color: var(--cream); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 700; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr[data-today="true"] { background: rgba(183,121,31,.14); }
.section--red .hours tr[data-today="true"] { background: rgba(231,185,140,.2); }

/* ---------- Gallery strip ---------- */
.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.strip__item {
  appearance: none;
  border: 0; padding: 0; margin: 0;
  background: none;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: start;
  position: relative;
}
.strip__item img {
  aspect-ratio: 1/1; object-fit: cover;
  width: 100%;
  transition: transform .3s ease;
}
.strip__item:hover img,
.strip__item:focus-visible img { transform: scale(1.05); }
.strip__item::after {
  content: "";
  position: absolute; right: 8px; bottom: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(38,34,32,.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M10 4H6a2 2 0 0 0-2 2v4M14 4h4a2 2 0 0 1 2 2v4M4 14v4a2 2 0 0 0 2 2h4M20 14v4a2 2 0 0 1-2 2h-4'/%3E%3C/svg%3E") center / 15px no-repeat;
  opacity: 0; transition: opacity .2s ease;
}
.strip__item:hover::after,
.strip__item:focus-visible::after { opacity: 1; }
@media (min-width: 900px) {
  .strip { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); grid-auto-columns: auto; overflow: visible; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 48px);
  background: rgba(20, 8, 8, .9);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox__figure {
  margin: 0; max-width: 1100px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox__img {
  max-width: 100%; max-height: 80vh;
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: var(--ink);
}
.lightbox__caption {
  color: var(--cream); font-size: .95rem; text-align: center;
  max-width: 60ch;
}
.lightbox__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
  transition: background .15s ease;
}
.lightbox__btn:hover { background: var(--copper-2); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__btn { width: 42px; height: 42px; }
}
body.lightbox-open { overflow: hidden; }

/* ---------- Menu page: tabs ---------- */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}
.menu-tabs__btn {
  appearance: none;
  border: 2px solid var(--copper-2);
  background: transparent;
  color: var(--red-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.menu-tabs__btn:hover { background: rgba(192,127,69,.14); }
.menu-tabs__btn[aria-selected="true"] {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}
.menu-tabs__btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.menu-panel { padding-top: 34px; }
.menu-panel[hidden] { display: none; }
.menu-panel:focus { outline: none; }

.menu-panel__head { text-align: center; margin-bottom: 8px; }
.menu-panel__head .script { font-size: clamp(2.2rem, 6vw, 3.2rem); display: block; }
.menu-panel__head p { color: var(--ink-soft); margin: 6px 0 0; }
.menu-panel__actions { text-align: center; margin: 18px 0 8px; }

.menu-note {
  background: var(--cream);
  border-left: 4px solid var(--copper-2);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 22px auto 0;
  max-width: 760px;
}

/* menu content */
.menu-group { margin: 34px 0 0; }
.menu-group > h3 {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--copper-2);
  font-size: 2rem;
  margin: 0 0 4px;
}
.menu-group__note { color: var(--ink-soft); font-size: .9rem; font-style: italic; margin: 0 0 14px; }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item__name { font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: .98rem; }
.menu-item__price { font-weight: 700; color: var(--red); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item__desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: .92rem; margin: 2px 0 0; }
.menu-item__tags { display: inline-flex; gap: 5px; margin-left: 8px; vertical-align: middle; }
.menu-item__tags img { width: 18px; height: 18px; display: inline-block; }

.menu-columns { max-width: 720px; margin: 0 auto; }
.menu-columns .menu-group { margin: 34px 0 0; }
.menu-panel > .menu-group { max-width: 720px; margin-left: auto; margin-right: auto; }

/* diet key */
.diet-key {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 10px;
  font-size: .82rem;
  margin-top: 26px;
}
.diet-key span { display: inline-flex; align-items: center; gap: 6px; }
.diet-key img { width: 18px; height: 18px; }

/* coming soon */
.coming-soon { text-align: center; padding: 50px 20px; }
.coming-soon .script { font-size: clamp(2.4rem,7vw,3.4rem); display:block; color: var(--copper-2); }
.coming-soon p { max-width: 46ch; margin: 12px auto 0; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0 0 24px; padding: 0; }
.contact-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { width: 22px; height: 22px; color: var(--copper-2); flex: none; margin-top: 3px; }
.contact-list a { text-decoration: none; font-weight: 600; }
.map-embed {
  width: 100%; aspect-ratio: 4/3; border: 0;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ---------- Voucher ---------- */
.voucher-show { max-width: 620px; margin: 0 auto; }
.voucher-show img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Social ---------- */
.social { display: inline-flex; gap: 12px; }
.social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.social a:hover { background: var(--copper-2); color: #fff; }
.social svg { width: 20px; height: 20px; }
.section--cream .social a, .contact-social a { background: var(--red-deep); }
.section--cream .social a:hover, .contact-social a:hover { background: var(--copper-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--red-dark);
  color: var(--cream);
  padding: 50px 0 30px;
  font-size: .9rem;
}
.site-footer a { color: var(--copper-1); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: 24px; } }
.site-footer img.footer-logo { height: 46px; width: auto; margin-bottom: 14px; }
.site-footer h4 { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--copper-1); margin: 0 0 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer__bar {
  margin-top: 34px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .8rem; color: rgba(239,233,221,.7);
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
