/* ============================================================
   GUIDO'S GRILL — WESTERN RUSTIC DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Special+Elite&display=swap');

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --parchment:     #F2E0BC;
  --parchment-dark:#E8D09A;
  --cream:         #FBF4E4;
  --leather:       #3D1F0D;
  --leather-light: #5C2E10;
  --rust:          #8B2500;
  --rust-light:    #B83200;
  --ember:         #C8601A;
  --gold:          #C8962D;
  --gold-light:    #E4B84A;
  --smoke:         #1A0C04;
  --ash:           #6B4E2F;
  --ash-light:     #9A7050;
  --white-worn:    #FFF8ED;

  --font-brand:    'Rye', serif;
  --font-display:  'Playfair Display', serif;
  --font-body:     'Crimson Pro', serif;
  --font-stamp:    'Special Elite', cursive;

  --nav-height:    80px;
  --section-pad:   100px;
  --grain-opacity: 0.045;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--smoke);
  color: var(--parchment);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY SCALE ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.75; }

.brand-title {
  font-family: var(--font-brand);
  letter-spacing: 0.04em;
}

.stamp-text {
  font-family: var(--font-stamp);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── ORNAMENTAL DIVIDER ──────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 20px 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-sm {
  font-size: 0.9rem;
  gap: 10px;
  margin: 10px 0;
}

.section-label {
  font-family: var(--font-stamp);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-stamp);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--rust);
  color: var(--parchment);
  border: 2px solid var(--rust-light);
  box-shadow: 4px 4px 0 var(--leather), inset 0 1px 0 rgba(255,255,255,0.1);
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0% calc(100% - 4px), 0% 4px);
}
.btn-primary:hover {
  background: var(--rust-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--leather);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--leather);
}

.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 2px solid var(--parchment);
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0% calc(100% - 4px), 0% 4px);
}
.btn-outline:hover {
  background: var(--parchment);
  color: var(--leather);
  transform: translate(-2px, -2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--leather);
  border: 2px solid var(--gold-light);
  box-shadow: 4px 4px 0 #7A5010;
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0% calc(100% - 4px), 0% 4px);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #7A5010;
}

/* ─── NAV / HEADER ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--leather);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(200,150,45,0.03) 2px,
    rgba(200,150,45,0.03) 4px
  );
  pointer-events: none;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-brand {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.nav-logo-sub {
  font-family: var(--font-stamp);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--parchment-dark);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--font-stamp);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  padding: 6px 18px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '✦';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.5;
}
.nav-links a:last-of-type::after { display: none; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a.active::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--leather);
  border-top: 1px solid var(--gold);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 16px 0;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-stamp);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--parchment-dark);
  padding: 14px 32px;
  border-bottom: 1px solid rgba(200,150,45,0.15);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(200,150,45,0.05); }
.mobile-menu .btn-primary { margin: 16px 32px; display: block; text-align: center; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,37,0,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,150,45,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0D0602 0%, #1F0C04 40%, #2C1004 70%, #1A0804 100%);
}

/* Wood plank texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 38px,
      rgba(0,0,0,0.12) 38px,
      rgba(0,0,0,0.12) 40px
    );
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--parchment);
  margin-bottom: 16px;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.8), 0 0 60px rgba(200,96,26,0.3);
  font-style: italic;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ash-light);
  max-width: 580px;
  margin: 0 auto 44px;
  font-style: italic;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(15deg);
  opacity: 0.85;
  padding: 16px;
  text-align: center;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200,150,45,0.4);
  border-radius: 50%;
}
.hero-badge-year {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
}
.hero-badge-text {
  font-family: var(--font-stamp);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--parchment-dark);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ash-light);
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTIONS SHARED ─────────────────────────────────────── */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p  { color: var(--ash-light); max-width: 600px; margin: 0 auto; }

/* ─── ABOUT STRIP (HOME) ──────────────────────────────────── */
.about-strip {
  background: var(--leather);
  border-top: 2px solid rgba(200,150,45,0.3);
  border-bottom: 2px solid rgba(200,150,45,0.3);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-block {
  position: relative;
}
.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, #3D1F0D 0%, #1A0C04 100%);
  border: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200,150,45,0.3);
}
.about-image-frame .img-placeholder {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-align: center;
  padding: 20px;
  line-height: 2;
  text-transform: uppercase;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rust);
  padding: 20px 24px;
  text-align: center;
  border: 2px solid var(--rust-light);
}
.about-accent-box .num {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  color: var(--parchment);
  display: block;
}
.about-accent-box .label {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--parchment-dark);
  text-transform: uppercase;
}

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--ash-light); margin-bottom: 20px; }

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(200,150,45,0.2);
  border-bottom: 1px solid rgba(200,150,45,0.2);
}
.stat-item .num {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
}
.stat-item .label {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ─── MENU PREVIEW ────────────────────────────────────────── */
.menu-section {
  background: var(--smoke);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200,150,45,0.015) 20px,
    rgba(200,150,45,0.015) 40px
  );
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--leather);
  border: 1px solid rgba(200,150,45,0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,150,45,0.4);
}
.menu-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.menu-card:hover::after { transform: scaleX(1); }

.menu-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #2C1004 0%, #1A0804 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.menu-card-img .img-icon {
  font-size: 3rem;
  opacity: 0.4;
}
.menu-card-img .img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  font-family: var(--font-stamp);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--parchment-dark);
  padding: 4px 8px;
  text-transform: uppercase;
}

.menu-card-body { padding: 24px; }
.menu-card-tag {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.menu-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.menu-card-body p { font-size: 0.95rem; color: var(--ash-light); line-height: 1.6; margin-bottom: 16px; }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(200,150,45,0.15);
}
.menu-price {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--gold);
}
.menu-tag {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: uppercase;
  border: 1px solid rgba(200,150,45,0.2);
  padding: 4px 10px;
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-section {
  background: var(--leather);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.gallery-item:nth-child(5) { grid-column: 3/5; grid-row: 2/4; }

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s ease;
  position: relative;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.04); }
.gallery-item-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,4,0.7), transparent 40%);
}

.gallery-item .g-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--parchment-dark);
  text-transform: uppercase;
}

.gallery-item .g-icon {
  font-size: 2.5rem;
  opacity: 0.25;
}

/* Color variety for gallery placeholders */
.gallery-item:nth-child(1) .gallery-item-inner { background: linear-gradient(135deg, #2C1004, #4A1A0A); }
.gallery-item:nth-child(2) .gallery-item-inner { background: linear-gradient(135deg, #1A0C04, #3D1F0D); }
.gallery-item:nth-child(3) .gallery-item-inner { background: linear-gradient(135deg, #3D200A, #1F0E02); }
.gallery-item:nth-child(4) .gallery-item-inner { background: linear-gradient(135deg, #1A0804, #2C1004); }
.gallery-item:nth-child(5) .gallery-item-inner { background: linear-gradient(135deg, #4A1A08, #2C1004); }
.gallery-item:nth-child(6) .gallery-item-inner { background: linear-gradient(135deg, #200E02, #3D1A08); }
.gallery-item:nth-child(7) .gallery-item-inner { background: linear-gradient(135deg, #3D1F0D, #1A0C04); }
.gallery-item:nth-child(8) .gallery-item-inner { background: linear-gradient(135deg, #2C1004, #200E02); }

/* Hover overlay */
.gallery-item::before {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  background: rgba(139,37,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--parchment);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
}
.gallery-item:hover::before { opacity: 1; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: var(--smoke);
  position: relative;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  background: var(--leather);
  padding: 36px 32px;
  border: 1px solid rgba(200,150,45,0.15);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-style: italic;
  color: var(--ash-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(200,150,45,0.15);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--parchment);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--parchment);
  display: block;
}
.testi-role {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(139,37,0,0.9) 0%, rgba(61,31,13,0.95) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(0,0,0,0.1) 6px,
      rgba(0,0,0,0.1) 7px
    );
  text-align: center;
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.cta-banner::before { left: 32px; }
.cta-banner::after { right: 32px; }

.cta-banner h2 { margin-bottom: 16px; color: var(--parchment); }
.cta-banner p { color: var(--parchment-dark); margin-bottom: 40px; font-size: 1.15rem; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  background: var(--leather);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 28px; }

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,150,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(200,150,45,0.05);
}
.contact-detail-text .label {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.contact-detail-text p { font-size: 0.95rem; color: var(--ash-light); line-height: 1.6; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1A0C04, #2C1004);
  border: 2px solid rgba(200,150,45,0.2);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--ash);
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.map-placeholder .map-pin { font-size: 2rem; color: var(--gold); opacity: 0.5; }

/* Contact Form */
.contact-form h3 { margin-bottom: 28px; }

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(26,8,4,0.6);
  border: 1px solid rgba(200,150,45,0.25);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,45,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--leather); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── HOURS TABLE ─────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.hours-table tr {
  border-bottom: 1px solid rgba(200,150,45,0.1);
}
.hours-table td {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--ash-light);
}
.hours-table td:last-child { text-align: right; color: var(--parchment-dark); }
.hours-table tr.today td { color: var(--gold); font-weight: 600; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--smoke);
  border-top: 3px solid rgba(200,150,45,0.3);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo-brand {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,150,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ash-light);
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,150,45,0.08);
}

.footer-col h4 {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,45,0.2);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--ash);
  transition: color 0.2s;
  font-family: var(--font-body);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--ash);
  margin-bottom: 16px;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  background: rgba(26,8,4,0.8);
  border: 1px solid rgba(200,150,45,0.25);
  border-right: none;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--ash); }
.newsletter-form button {
  background: var(--gold);
  border: 1px solid var(--gold-light);
  color: var(--leather);
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 10px 16px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(200,150,45,0.15);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: uppercase;
}
.footer-bottom a { color: var(--gold); }

/* ─── PAGE HERO (INNER PAGES) ─────────────────────────────── */
.page-hero {
  padding: 100px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--leather) 0%, var(--smoke) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.breadcrumb {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 20px;
}
.breadcrumb span { color: var(--gold); }

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.story-section {
  background: var(--smoke);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }

.story-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2C1004, #1A0804);
  border: 2px solid rgba(200,150,45,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}
.story-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(200,150,45,0.15);
}

.team-section {
  background: var(--leather);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(200,150,45,0.15);
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--leather));
  border: 3px solid var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--parchment);
  position: relative;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.team-card .role {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.team-card p { font-size: 0.9rem; color: var(--ash-light); line-height: 1.7; }

.values-section {
  background: var(--smoke);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px 24px;
  border-top: 3px solid var(--rust);
  background: var(--leather);
}
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 12px; color: var(--gold); }
.value-card p { font-size: 0.9rem; color: var(--ash-light); line-height: 1.7; }

/* ─── MENU PAGE ───────────────────────────────────────────── */
.menu-page-section {
  background: var(--smoke);
}
.menu-category { margin-bottom: 80px; }
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(200,150,45,0.2);
}
.menu-category-header h2 { font-size: 2rem; }
.menu-category-icon { font-size: 2rem; }

.menu-list { display: grid; gap: 16px; }
.menu-list-item {
  background: var(--leather);
  padding: 24px 28px;
  border: 1px solid rgba(200,150,45,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  transition: border-color 0.2s, transform 0.2s;
}
.menu-list-item:hover {
  border-color: rgba(200,150,45,0.4);
  transform: translateX(4px);
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--parchment);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-item-badge {
  font-family: var(--font-stamp);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  background: var(--rust);
  color: var(--parchment);
  padding: 3px 8px;
  text-transform: uppercase;
}
.menu-item-desc { font-size: 0.9rem; color: var(--ash); line-height: 1.6; }
.menu-item-price {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ─── GALLERY PAGE ────────────────────────────────────────── */
.gallery-page-section {
  background: var(--smoke);
}
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(200,150,45,0.3);
  background: transparent;
  color: var(--ash-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--leather);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-masonry-item .gm-inner {
  width: 100%;
  background: linear-gradient(135deg, #2C1004, #1A0804);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
}
.gallery-masonry-item:hover .gm-inner { transform: scale(1.03); }
.gallery-masonry-item:nth-child(1) .gm-inner  { aspect-ratio: 4/5;  background: linear-gradient(135deg, #3D1F0D, #1A0C04); }
.gallery-masonry-item:nth-child(2) .gm-inner  { aspect-ratio: 3/2;  background: linear-gradient(135deg, #2C1004, #3D200A); }
.gallery-masonry-item:nth-child(3) .gm-inner  { aspect-ratio: 1/1;  background: linear-gradient(135deg, #1A0804, #2C1004); }
.gallery-masonry-item:nth-child(4) .gm-inner  { aspect-ratio: 3/4;  background: linear-gradient(135deg, #4A1A08, #2C1004); }
.gallery-masonry-item:nth-child(5) .gm-inner  { aspect-ratio: 16/9; background: linear-gradient(135deg, #200E02, #3D1A08); }
.gallery-masonry-item:nth-child(6) .gm-inner  { aspect-ratio: 4/3;  background: linear-gradient(135deg, #3D1F0D, #1A0804); }
.gallery-masonry-item:nth-child(7) .gm-inner  { aspect-ratio: 3/2;  background: linear-gradient(135deg, #1A0C04, #3D1F0D); }
.gallery-masonry-item:nth-child(8) .gm-inner  { aspect-ratio: 1/1;  background: linear-gradient(135deg, #2C1004, #200E02); }
.gallery-masonry-item:nth-child(9) .gm-inner  { aspect-ratio: 4/5;  background: linear-gradient(135deg, #3D200A, #1A0804); }
.gallery-masonry-item:nth-child(10) .gm-inner { aspect-ratio: 3/2;  background: linear-gradient(135deg, #4A1A08, #2C1004); }
.gallery-masonry-item:nth-child(11) .gm-inner { aspect-ratio: 16/9; background: linear-gradient(135deg, #2C1004, #3D1F0D); }
.gallery-masonry-item:nth-child(12) .gm-inner { aspect-ratio: 4/3;  background: linear-gradient(135deg, #1A0C04, #2C1004); }

.gm-inner .gm-icon { font-size: 2rem; opacity: 0.2; }
.gm-inner .gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139,37,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.8rem;
}
.gallery-masonry-item:hover .gm-overlay { opacity: 1; }
.gm-inner .gm-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(242,224,188,0.7);
  text-transform: uppercase;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-rust    { color: var(--rust-light); }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.img-placeholder {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.8;
}

.separator-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  margin: 20px auto;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
  .gallery-item:nth-child(5) { grid-column: 2/4; grid-row: 3/4; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  .about-strip-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-image-block { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse { direction: ltr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .hero-badge { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 55px; }
  .container, .container-narrow { padding: 0 18px; }

  .menu-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-list-item { grid-template-columns: 1fr; }
  .menu-item-price { font-size: 1.2rem; }
}

/* ─── FOCUS STATES (ACCESSIBILITY) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── BOOKING POPUP ───────────────────────────────────────── */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 2, 0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  width: 100%;
  max-width: 980px;
  height: min(88vh, 760px);
  background: var(--leather);
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(200,150,45,0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.booking-overlay.open .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--smoke);
  border-bottom: 2px solid rgba(200,150,45,0.3);
  flex-shrink: 0;
}
.booking-modal-title {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-modal-title::before {
  content: '✦';
  font-size: 0.7rem;
}
.booking-modal-url {
  font-family: var(--font-stamp);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  background: rgba(200,150,45,0.07);
  border: 1px solid rgba(200,150,45,0.15);
  padding: 5px 12px;
  flex: 1;
  margin: 0 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-modal-close {
  width: 34px;
  height: 34px;
  background: rgba(139,37,0,0.3);
  border: 1px solid rgba(200,150,45,0.3);
  color: var(--parchment-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.booking-modal-close:hover {
  background: var(--rust);
  border-color: var(--rust-light);
  color: var(--parchment);
}

.booking-modal-iframe-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.booking-modal-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.booking-modal-loader {
  position: absolute;
  inset: 0;
  background: var(--smoke);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
  transition: opacity 0.4s ease;
}
.booking-modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(200,150,45,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loader-text {
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── POWERED BY ASTRA ────────────────────────────────────── */
.powered-by-bar {
  background: var(--smoke);
  border-top: 1px solid rgba(200,150,45,0.1);
  padding: 10px 0;
  text-align: center;
}
.powered-by-bar p {
  font-family: var(--font-stamp);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1;
}
.powered-by-bar p a {
  display: inline-block;
  font-family: var(--font-stamp);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3A82D4 0%, #6B4FBB 50%, #8B3FCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 700;
  transition: filter 0.2s;
}
.powered-by-bar p a:hover {
  filter: brightness(1.25);
}

/* Responsive popup */
@media (max-width: 600px) {
  .booking-modal {
    height: 92vh;
    max-width: 100%;
  }
  .booking-modal-url { display: none; }
}
