/* ============================================================
   Texas Chili Parlor — Main Stylesheet
   Mobile-first, responsive, no framework dependencies
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ── Custom Properties ───────────────────────────────────── */
:root {
  /* Colors */
  --bg:           #0d0a06;
  --bg-alt:       #131009;
  --surface:      #1c1610;
  --surface-2:    #241d12;
  --border:       #2e2418;
  --border-light: #3e3220;

  --red:          #c41b1b;
  --red-dark:     #951414;
  --red-light:    #e02020;

  --gold:         #c8882a;
  --gold-light:   #daa84c;
  --gold-dim:     #8a5c18;

  --text:         #ede4d3;
  --text-muted:   #907a60;
  --text-dim:     #5a4a38;
  --white:        #faf7f2;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Barlow', system-ui, -apple-system, sans-serif;
  --font-cond:    'Barlow Condensed', system-ui, sans-serif;

  /* Spacing */
  --space-xs:     0.5rem;
  --space-sm:     1rem;
  --space-md:     2rem;
  --space-lg:     4rem;
  --space-xl:     6rem;
  --space-xxl:    10rem;

  /* Layout */
  --max-width:    1200px;
  --gutter:       1.5rem;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          220ms;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { max-width: 68ch; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-lg);
}

.section--lg {
  padding-block: var(--space-xl);
}

.section--dark { background-color: var(--bg); }
.section--alt  { background-color: var(--bg-alt); }
.section--surface { background-color: var(--surface); }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── Label / Eyebrow ─────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: var(--space-md);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.divider-icon {
  color: var(--gold-dim);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(13, 10, 6, 0.97);
  padding-block: 0.85rem;
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--dur) var(--ease);
}

.site-header .site-logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
}

.site-logo:hover { opacity: 0.8; }

/* Desktop Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  transition: color var(--dur) var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav .btn {
  margin-left: 0.75rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              width var(--dur) var(--ease);
  transform-origin: center;
}

.nav-toggle span:nth-child(3) { width: 65%; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.nav-overlay a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 2rem;
  text-align: center;
  transition: color var(--dur) var(--ease);
}

.nav-overlay a:hover { color: var(--white); }

.nav-overlay-footer {
  margin-top: 3rem;
  text-align: center;
}

.nav-overlay-footer p {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: none;
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 27, 27, 0.12) 0%, transparent 65%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 6, 0.35) 0%,
    rgba(13, 10, 6, 0.2) 40%,
    rgba(13, 10, 6, 0.7) 75%,
    rgba(13, 10, 6, 0.98) 100%
  );
}

/* Noise texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--red-light);
}

.hero-tagline {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--border-light), transparent);
  margin-top: 0.25rem;
}

/* ── Press Strip ─────────────────────────────────────────── */
.press {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2rem;
  overflow: hidden;
}

.press-label {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.press-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.press-track:hover { animation-play-state: paused; }

.press-item {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
  flex-shrink: 0;
}

.press-item:hover { color: var(--text-muted); }

.press-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-dark);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About Intro ─────────────────────────────────────────── */
.about-intro {
  display: grid;
  gap: var(--space-lg);
}

.about-intro-text h2 {
  margin-bottom: 1.25rem;
}

.about-intro-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-intro-text p:last-of-type { margin-bottom: 1.75rem; }

.about-quote {
  background: var(--surface);
  border-left: 3px solid var(--red);
  padding: 2rem 2rem 2rem 2.25rem;
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--red-dark);
  opacity: 0.4;
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-quote cite {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

@media (min-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-xl);
  }
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat {
  background: var(--surface);
  padding: 2rem var(--gutter);
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span { color: var(--red); }

.stat-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (min-width: 600px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* ── Featured Items ──────────────────────────────────────── */
.featured-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.featured-card {
  background: var(--surface);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.featured-card:hover::before { transform: scaleX(1); }
.featured-card:hover { background: var(--surface-2); }

.featured-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.featured-card h3 {
  margin-bottom: 0.75rem;
}

.featured-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.featured-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--red-dark);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Pull Quote Section ──────────────────────────────────── */
.pull-quote-section {
  background: var(--red);
  padding-block: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px;
}

.pull-quote-section .container { position: relative; z-index: 1; }

.pull-quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-dim);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (min-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.gallery-item:hover img { transform: scale(1.04); }

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── History Timeline ────────────────────────────────────── */
.history-block {
  display: grid;
  gap: var(--space-lg);
}

.history-content h2 {
  margin-bottom: 1.25rem;
}

.history-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.025rem;
}

.history-image {
  position: relative;
}

.history-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.history-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(13,10,6,0.85));
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .history-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ── House Rules ─────────────────────────────────────────── */
.rules-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.rule-card {
  background: var(--bg-alt);
  padding: 2.5rem var(--space-md);
  text-align: center;
}

.rule-number {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.rule-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 600px) {
  .rules-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.faq-question:hover { color: var(--white); }

.faq-question[aria-expanded="true"] { color: var(--gold-light); }

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-dim);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold-dim);
  color: var(--gold);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms var(--ease);
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Menu Page ───────────────────────────────────────────── */
.menu-intro {
  text-align: center;
  padding-top: calc(var(--space-xxl) * 0.75);
  padding-bottom: var(--space-lg);
}

.menu-intro h1 {
  margin-bottom: 1rem;
}

.menu-intro p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-inline: auto;
}

.menu-pages {
  display: grid;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
}

.menu-page-img {
  width: 100%;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: border-color var(--dur) var(--ease);
}

.menu-page-img:hover { border-color: var(--border-light); }

@media (min-width: 900px) {
  .menu-pages {
    grid-template-columns: 1fr 1fr;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 10, 6, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.lightbox-close:hover {
  color: var(--white);
  border-color: var(--text-dim);
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  gap: var(--space-lg);
  padding-top: calc(var(--space-xxl) * 0.75);
}

.contact-details h2 {
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type { border-top: 1px solid var(--border); }

.contact-item-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-item-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  color: var(--text);
  font-size: 1rem;
}

.contact-item-value a:hover { color: var(--gold-light); }

.contact-map {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) contrast(0.95);
}

.contact-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dim);
  padding: 1.5rem;
  margin-top: var(--space-md);
}

.contact-notice h4 {
  color: var(--gold-light);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-notice p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: none;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ── Page Hero (interior pages) ──────────────────────────── */
.page-hero {
  padding-top: calc(var(--space-xxl) * 0.9);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ── Zoob Section ────────────────────────────────────────── */
.zoob-block {
  display: grid;
  gap: var(--space-lg);
}

.zoob-image {
  position: relative;
}

.zoob-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (min-width: 900px) {
  .zoob-block {
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-lg);
}

.footer-inner {
  display: grid;
  gap: var(--space-md);
}

.footer-brand .site-logo {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--text-muted);
}

.footer-nav h4 {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.footer-nav a:hover { color: var(--white); }

.footer-hours p {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.footer-hours .hours-value {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom a:hover { color: var(--text-muted); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
  }
}

/* ── Utility: Screen Reader Only ──────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 999;
  transition: top 200ms;
}

.skip-link:focus { top: 1rem; }

/* ── Section heading with rule ───────────────────────────── */
.section-heading {
  margin-bottom: var(--space-md);
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Responsive tweaks ───────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --gutter: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
  }

  .section { padding-block: var(--space-lg); }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 3rem;
    --space-xl: 10rem;
  }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .hero-scroll, .nav-overlay { display: none; }
  body { background: white; color: black; }
}
