/* ============================================================
   RESERVE STEAKHOUSE BY CHEF DARIAN — Design System & Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Gold palette */
  --gold-primary: #C9A84C;
  --gold-light: #D4C07A;
  --gold-bright: #E8D48B;
  --gold-deep: #A88832;
  --gold-shimmer: #F0E4A8;

  /* Black palette */
  --black-deep: #050505;
  --black-primary: #0A0A0A;
  --black-soft: #111111;
  --black-card: #141414;
  --black-elevated: #1A1A1A;
  --black-border: #2A2A2A;

  /* Red / Steakhouse palette */
  --red-deep: #5A0E0E;
  --red-primary: #8B1A1A;
  --red-warm: #A62B2B;
  --red-accent: #C43333;
  --red-glow: rgba(139, 26, 26, 0.35);

  /* Neutrals */
  --white: #FAFAFA;
  --white-muted: #E0DDD5;
  --gray-100: #C8C4B8;
  --gray-200: #9A9688;
  --gray-300: #6B675D;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1400px;
  --container-padding: 0 40px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s var(--ease-out-quad);
  --transition-med: 0.6s var(--ease-out-expo);
  --transition-slow: 1s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--black-primary);
  color: var(--white-muted);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--gray-200);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Gold divider --- */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-deep));
  margin: 32px 0;
  border: none;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--white);
  font-weight: 400;
  font-size: 0.85em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-100);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  color: var(--black-deep) !important;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  padding: 10px 22px;
  border-radius: 2px;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--black-deep) !important;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: all var(--transition-fast);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.5) 0%,
    rgba(5, 5, 5, 0.2) 40%,
    rgba(5, 5, 5, 0.6) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

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

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-title .gold {
  color: var(--gold-primary);
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .white {
  color: var(--white);
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.35em;
  letter-spacing: 6px;
  margin-top: 8px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--gray-100);
  margin-top: 24px;
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  margin: 0 auto 8px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 1px;
  height: 60px;
  background: var(--gold-shimmer);
  animation: scrollDash 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-200);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  color: var(--black-deep);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--black-deep);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--gold-primary);
  background: transparent;
  border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-primary), var(--red-deep));
  box-shadow: 0 4px 30px var(--red-glow);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--red-warm), var(--red-primary));
  box-shadow: 0 8px 40px rgba(139, 26, 26, 0.55);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT / CHEF DARIAN
   ============================================================ */
.about {
  background: var(--black-primary);
}

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

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: contrast(1.05) brightness(0.95);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Gold corner accents */
.about-image::before,
.about-image::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold-primary);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.about-image::before {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.about-image::after {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.about-text h2 em {
  color: var(--gold-primary);
  font-style: italic;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--gray-100);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-top: 32px;
  opacity: 0.8;
}

/* ============================================================
   EXPERIENCE / GALLERY
   ============================================================ */
.experience {
  background: var(--black-soft);
  overflow: hidden;
}

.experience .section-title,
.experience .section-label,
.experience .section-subtitle {
  text-align: center;
}

.experience .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.experience .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: 1 / -1;
  height: 500px;
}

.gallery-item:not(:first-child) {
  height: 380px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-med);
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-med);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.gallery-caption p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-100);
}

/* ============================================================
   RESERVE & ORDER
   ============================================================ */
.reserve-section {
  background: var(--black-primary);
  text-align: center;
}

.reserve-section .section-title,
.reserve-section .section-label,
.reserve-section .section-subtitle {
  text-align: center;
}

.reserve-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.reserve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.reserve-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 6px;
  padding: 48px 36px;
  text-align: center;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.reserve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.reserve-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.reserve-card:hover::before {
  opacity: 1;
}

.reserve-card-icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: block;
}

.reserve-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.reserve-card p {
  font-size: 1rem;
  color: var(--gray-200);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================================
   PRIVATE EVENTS & CATERING
   ============================================================ */
.events {
  position: relative;
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
}

.events-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.1);
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 14, 14, 0.6) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.events-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.events-text .section-title {
  color: var(--white);
}

.events-features {
  list-style: none;
  margin: 32px 0 40px;
}

.events-features li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}

.events-features li::before {
  content: '◆';
  color: var(--gold-primary);
  font-size: 0.6rem;
}

.events-image-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.events-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.events-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ============================================================
   Back of House BURGER
   ============================================================ */
.burger-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.burger-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.burger-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 26, 26, 0.2);
  border: 1px solid rgba(139, 26, 26, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.burger-badge span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-warm);
}

.burger-section .section-title {
  color: var(--white);
}

.burger-section .section-title em {
  color: var(--red-warm);
  font-style: italic;
}

.burger-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.burger-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.burger-feature {
  text-align: center;
}

.burger-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.burger-feature h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.burger-feature p {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.6;
}

/* ============================================================
   VISIT / LOCATION
   ============================================================ */
.visit {
  background: var(--black-primary);
}

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

.visit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.visit-info h2 em {
  color: var(--gold-primary);
  font-style: italic;
}

.visit-details {
  margin-top: 40px;
}

.visit-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
}

.visit-detail-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
}

.visit-detail h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.visit-detail p {
  font-size: 1.05rem;
  color: var(--gray-100);
  line-height: 1.6;
}

.visit-map {
  border-radius: 6px;
  overflow: hidden;
  height: 500px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) brightness(0.7) contrast(1.2);
  transition: filter var(--transition-fast);
}

.visit-map:hover iframe {
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* Valet callout */
.valet-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
}

.valet-callout-icon {
  font-size: 1.8rem;
}

.valet-callout h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.valet-callout p {
  font-size: 0.95rem;
  color: var(--gray-200);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 30px;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gray-200);
  font-weight: 400;
  font-size: 0.8em;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-200);
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--gray-300);
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-size: 1.1rem;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--gold-primary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDash {
  0% { top: -60px; }
  100% { top: 60px; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 28px;
  }

  .about-grid {
    gap: 48px;
  }

  .events-content {
    gap: 48px;
  }

  .visit-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    transition: right var(--transition-med);
    border-left: 1px solid var(--black-border);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 450px;
  }

  .about-image::before,
  .about-image::after {
    width: 50px;
    height: 50px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    height: 320px;
  }

  .gallery-item:not(:first-child) {
    height: 280px;
  }

  /* Caption always visible on mobile */
  .gallery-caption {
    transform: translateY(0);
    opacity: 1;
  }

  /* Reserve cards */
  .reserve-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Events */
  .events-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .events-image-card {
    order: -1;
  }

  .events-image-card img {
    height: 300px;
  }

  /* Burger */
  .burger-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Visit */
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-map {
    height: 350px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.05rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.72rem;
    width: 100%;
    justify-content: center;
  }

  .about-image img {
    height: 360px;
  }

  .gallery-item:first-child {
    height: 240px;
  }

  .gallery-item:not(:first-child) {
    height: 220px;
  }

  .reserve-card {
    padding: 36px 24px;
  }

  .events-image-card img {
    height: 240px;
  }
}

/* --- Mobile overlay when nav is open --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
