/* Dalila Premium Editorial & 3D CSS System */

:root {
  /* Colors */
  --bg-dark: #091815;       /* Deep Forest Jade */
  --bg-light: #faf8f4;      /* Cozy Alabaster Cream */
  --accent-gold: #cfa15c;   /* Antique Brass Gold */
  --accent-tomato: #b54330; /* Tunisian Terracotta */
  --accent-sage: #4b5e54;   /* Soft Sage Green */
  --text-dark: #111d1a;     /* Forest Onyx */
  --text-light: #f2f7f5;    /* Soft Opal White */
  --text-muted: #5e6b66;    /* Muted Moss Gray */
  
  /* Borders & Shadows */
  --border-gold: rgba(207, 161, 92, 0.22);
  --border-dark: rgba(17, 29, 26, 0.12);
  --border-light: rgba(255, 255, 255, 0.15);
  --radius: 4px; /* Editorial sharp/clean look */
  
  --shadow-sm: 0 4px 12px rgba(9, 24, 21, 0.04);
  --shadow-md: 0 16px 36px rgba(9, 24, 21, 0.08);
  --shadow-3d: 
    0 16px 0 rgba(9, 24, 21, 0.06), 
    0 28px 56px rgba(9, 24, 21, 0.16);
  
  /* Timing */
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* 3D WebGL Canvas Layer */
.webgl-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* Ambient Video Background */
.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  background-color: var(--bg-dark);
  pointer-events: none;
}

.video-background-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85; /* Increased opacity for absolute clarity */
  filter: brightness(0.8) contrast(1.15); /* Adjusted brightness for better contrast with text */
}

.video-background-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(9, 24, 21, 0.02) 0%, rgba(9, 24, 21, 0.3) 100%),
              linear-gradient(to bottom, rgba(9, 24, 21, 0.1) 0%, rgba(9, 24, 21, 0.45) 100%);
}

/* Layout Utilities */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 120px 0 100px;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
}

/* Base Typography — Irish Café Editorial System */
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

h2, h3, h4, .highlight-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

h1 {
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

/* Premium Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transform-style: preserve-3d;
  transform: translateZ(10px);
  transition: var(--transition);
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.btn--primary {
  color: var(--text-light);
  background-color: var(--accent-tomato);
  border-color: var(--accent-tomato);
  box-shadow: 0 4px 18px rgba(181, 67, 48, 0.3);
}

.btn--primary:hover {
  background-color: #943222;
  border-color: #943222;
  transform: translateY(-3px) translateZ(15px);
  box-shadow: 0 8px 24px rgba(181, 67, 48, 0.45);
}

.btn--ghost {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-3px) translateZ(15px);
}

.btn--outline {
  color: var(--text-dark);
  border-color: var(--text-dark);
  background-color: transparent;
}

.btn--outline:hover {
  color: var(--text-light);
  background-color: var(--text-dark);
  transform: translateY(-3px) translateZ(15px);
}

.btn--small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
}

.btn--full {
  width: 100%;
}

/* Site Header — transparent glass strip that merges with video */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1200px, calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  color: var(--text-light);
  background: rgba(9, 24, 21, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: var(--transition);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}

.site-header.is-scrolled {
  color: var(--text-dark);
  background: rgba(250, 248, 244, 0.82);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
}

/* Brand Wordmark — no logo image, pure typographic identity */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand__text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: inherit;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  color: inherit;
  transition: var(--transition);
}

.site-nav a:hover {
  opacity: 1;
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled .site-nav a:hover {
  background-color: rgba(9, 24, 21, 0.05);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: inherit;
}

.icon-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.site-header.is-scrolled .icon-link {
  border-color: var(--border-dark);
}

.header-call-mobile {
  display: none;
}

.nav-divider-mobile,
.nav-actions-mobile {
  display: none;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: inherit;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--border-dark);
}

/* Sections - Glassmorphism backgrounds to reveal WebGL */
.intro-band, .experience-section, .testimonials-section, .reservation-cta, .site-footer {
  background-color: rgba(9, 24, 21, 0.72);
  color: var(--text-light);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
}

.menu-section, .gallery-section, .story-section, .journal-section, .visit-section {
  background-color: rgba(250, 248, 244, 0.76);
  color: var(--text-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Hero Section - individual translucent setup to showcase background video and WebGL clearly */
.hero {
  position: relative;
  min-height: 98vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background-color: rgba(9, 24, 21, 0.15); /* More transparent to let the video shine */
  color: var(--text-light);
  backdrop-filter: none; /* Keep the background video and WebGL 3D elements perfectly clear */
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border-gold);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(207, 161, 92, 0.08), transparent 45%);
  z-index: 1;
}

.hero__container {
  position: relative;
  width: 100%;
  z-index: 5;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 680px;
}

.hero__content h1 {
  margin-bottom: 26px;
  text-shadow: 0 4px 20px rgba(9, 24, 21, 0.75), 0 2px 4px rgba(9, 24, 21, 0.8);
}

.highlight-serif {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 300;
}

.hero__copy {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 38px;
  font-weight: 300;
  max-width: 580px;
  text-shadow: 0 2px 12px rgba(9, 24, 21, 0.6), 0 1px 3px rgba(9, 24, 21, 0.7);
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  gap: 16px;
}

.hero-stat-card {
  padding: 18px 24px;
  background: rgba(9, 24, 21, 0.82);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  transition: var(--transition);
}

.hero-stat-card:hover {
  border-color: var(--accent-gold);
  background: rgba(9, 24, 21, 0.92);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.hero-stat-card strong {
  font-size: 30px;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-stat-card span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* Intro Band */
.intro-band {
  padding: 50px 0;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-band__lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.25;
  color: var(--text-light);
}

.intro-band__meta {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.intro-band__meta span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-band__meta svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

/* Section Headings */
.section-heading {
  max-width: 680px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow) {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
}

.section-heading--split {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

/* Premium 3D Tilt Card Base */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0px));
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
}

.tilt-card:hover {
  --lift: -10px;
  box-shadow: var(--shadow-3d);
}

/* Shiny Glare Reflection */
.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tilt-card:hover::after {
  opacity: 1;
}

/* Menu Section */
.menu-section {
  position: relative;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.dish-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  box-shadow: var(--shadow-sm);
}

.dish-card__image-container {
  height: 220px;
  overflow: hidden;
  position: relative;
  transform: translateZ(20px);
}

.dish-card__image-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dish-card:hover .dish-card__image-container img {
  transform: scale(1.06);
}

.dish-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transform: translateZ(30px);
}

.dish-card__tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-tomato);
  margin-bottom: 14px;
}

.dish-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.dish-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 300;
}

.dish-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-tomato);
  margin-top: auto;
}

.dish-card a:hover {
  gap: 10px;
  color: var(--text-dark);
}

/* Atmosphere Gallery */
.gallery-strip {
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--transition);
}

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

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.story-media {
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.story-media img {
  width: 100%;
  height: 100%;
}

.story-copy h2 {
  margin-bottom: 22px;
}

.story-copy p:not(.eyebrow) {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 34px;
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 38px;
}

.stats-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.stats-grid strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  color: var(--accent-tomato);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stats-grid span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

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

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-card {
  position: relative;
  padding: 38px 34px;
  background: rgba(9, 24, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: var(--transition);
}

.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(207, 161, 92, 0.08), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.experience-card:hover {
  border-color: var(--accent-gold);
  background: rgba(9, 24, 21, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(207, 161, 92, 0.05);
}

.experience-card:hover::after {
  opacity: 1;
}

.experience-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  margin-bottom: auto;
  transform: translateZ(40px);
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(207, 161, 92, 0.2));
}

.experience-card:hover svg {
  transform: translateZ(50px) scale(1.1);
  color: #fff;
  filter: drop-shadow(0 4px 15px rgba(207, 161, 92, 0.6));
}

.experience-card h3 {
  font-size: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
  transform: translateZ(30px);
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.experience-card:hover h3 {
  color: var(--accent-gold);
}

.experience-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.5;
  transform: translateZ(25px);
  margin: 0;
  transition: var(--transition);
}

.experience-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 30px;
  transform: translateZ(25px);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  transform: translateZ(30px);
}

.testimonial-card__author strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 700;
}

.testimonial-card__author span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Journal Section */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.journal-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.journal-card__image-container {
  height: 230px;
  overflow: hidden;
  transform: translateZ(20px);
}

.journal-card__body {
  padding: 26px;
  transform: translateZ(30px);
}

.journal-card span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-tomato);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.journal-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.journal-card p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

/* Visit & Hours Section */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 68px;
  align-items: center;
}

.visit-copy h2 {
  margin-bottom: 22px;
}

.visit-copy p:not(.eyebrow) {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 34px;
  font-weight: 300;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.contact-list a:hover {
  border-color: var(--accent-tomato);
  color: var(--accent-tomato);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent-tomato);
}

.hours-panel {
  padding: 38px;
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.hours-panel__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  transform: translateZ(40px);
}

.hours-panel__top svg {
  width: 28px;
  height: 28px;
  color: var(--accent-gold);
}

.hours-panel dl {
  margin-bottom: 34px;
  transform: translateZ(30px);
}

.hours-panel dl div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-panel dt {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.hours-panel dd {
  font-weight: 700;
  color: var(--accent-gold);
}

.hours-panel .btn {
  transform: translateZ(35px);
}

/* Reservation CTA */
.reservation-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}

.reservation-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(181, 67, 48, 0.15), transparent 35%);
  z-index: 1;
}

.reservation-cta__content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin: 0 auto;
}

.reservation-cta h2 {
  margin-bottom: 22px;
}

.reservation-cta p:not(.eyebrow) {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 38px;
  font-weight: 300;
}

.reservation-cta .hero__actions {
  justify-content: center;
}

/* Site Footer */
.site-footer {
  padding: 80px 0 40px;
  border-bottom: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}

.footer-brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: #ffffff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}

.footer-grid h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--accent-gold);
}

.footer-newsletter-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
  align-items: center;
}

.newsletter-form input {
  flex-grow: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  color: var(--accent-gold);
  padding: 4px;
}

.newsletter-form button:hover {
  color: var(--text-light);
  transform: translateX(4px);
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Responsive Styles */
@media (max-width: 1080px) {
  .site-header {
    width: calc(100% - 32px);
  }
  
  .dish-grid, .testimonials-grid, .journal-grid, .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero__facts {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  
  .hero-stat-card {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  body.nav-open .site-header {
    background: rgba(9, 24, 21, 0.96);
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .site-header {
    min-height: 64px;
  }
  
  .nav-toggle {
    display: inline-flex;
  }
  
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(9, 24, 21, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: none;
    box-shadow: var(--shadow-md);
  }
  
  body.nav-open .site-nav {
    display: flex;
  }
  
  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .site-nav a:hover {
    color: var(--accent-gold) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
  }
  
  .site-nav a:last-child {
    border-bottom: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .intro-band__grid, .story-grid, .visit-grid, .footer-grid, .section-heading--split, .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-heading--split {
    align-items: flex-start;
  }
  
  .story-media {
    height: 400px;
    transform: none;
  }
  
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .header-call-mobile {
    display: inline-flex;
    margin-right: 8px;
  }

  .nav-divider-mobile {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
    width: 100%;
  }

  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
  }

  .mobile-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 8px;
  }

  .site-nav a.mobile-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent-gold) !important;
    transition: var(--transition);
  }

  .site-nav a.mobile-social-icon:hover {
    background: rgba(207, 161, 92, 0.1) !important;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
  }

  .site-nav a.mobile-social-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 70px 0;
  }
  
  .hero {
    padding-top: 130px;
    min-height: auto;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .dish-grid, .testimonials-grid, .journal-grid, .gallery-strip, .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item--wide {
    grid-column: span 1;
  }
  
  .gallery-item--tall {
    grid-row: span 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-stat-card {
    padding: 12px 8px;
  }

  .hero-stat-card strong {
    font-size: 24px;
  }

  .hero-stat-card span {
    font-size: 9px;
  }

  .experience-card {
    min-height: 220px;
    padding: 28px 24px;
  }

  .experience-card svg {
    margin-bottom: 30px;
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tilt-card {
    transform: none !important;
    transition: none !important;
  }
  .tilt-card::after {
    display: none !important;
  }
}
