*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --midnight-deep: #060e1a;
  --midnight: #0a1628;
  --midnight-light: #0f1f38;
  --midnight-lighter: #162a4a;
  --midnight-border: #1e3a5f;
  --mint: #4ecdc4;
  --mint-light: #7edcd5;
  --mint-dark: #3db8b0;
  --gold: #c9a84c;
  --gold-light: #e0c06e;
  --gold-dark: #a8872e;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --text-light: #f0ebe3;
  --text-muted: #a8b4c4;
  --text-dim: #6b7f96;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 80px;
}

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

body {
  font-family: var(--font-body);
  background: var(--midnight-deep);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  min-height: 100vh;
}

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

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

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(6, 14, 26, 0.92);
  box-shadow: 0 1px 0 var(--midnight-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

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

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

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

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--gold);
}

.mobile-menu-cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--midnight-deep);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(10, 22, 40, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(78, 205, 196, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gold-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  font-style: italic;
  color: var(--mint);
  font-size: 0.85em;
  margin: 0.1em 0;
}

.hero-title-main {
  font-weight: 600;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--midnight-border);
}

.btn-secondary:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-meta-value {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-meta-value:hover {
  color: var(--gold);
}

.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--midnight-border);
}

/* Hero Image Stack */
.hero-right {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 700px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 14, 26, 0.4) 100%);
  pointer-events: none;
}

.hero-img-primary {
  width: 380px;
  height: 520px;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero-img-secondary {
  width: 280px;
  height: 200px;
  bottom: 60px;
  left: 0;
  z-index: 2;
  border: 2px solid var(--midnight-border);
}

.hero-accent-card {
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 3;
  background: var(--midnight-light);
  border: 1px solid var(--midnight-border);
  padding: 1.5rem 2rem;
}

.hero-accent-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accent-card-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.accent-card-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ========== INTRO STRIP ========== */
.intro-strip {
  background: var(--midnight);
  border-top: 1px solid var(--midnight-border);
  border-bottom: 1px solid var(--midnight-border);
  padding: 4rem 2rem;
}

.intro-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.intro-quote {
  text-align: center;
}

.intro-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}

.intro-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
}

.intro-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gold-line-short {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-amp {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
}

/* ========== SECTION COMMON ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-eyebrow .gold-line {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== MENU ========== */
.menu-section {
  padding: 6rem 2rem;
  background: var(--midnight-deep);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-cat-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--midnight-border);
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--midnight);
  border: 1px solid var(--midnight-border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
}

.menu-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(78, 205, 196, 0.08);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.menu-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--midnight-border);
}

.menu-note p {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ========== ABOUT ========== */
.about-section {
  padding: 6rem 2rem;
  background: var(--midnight);
  border-top: 1px solid var(--midnight-border);
  border-bottom: 1px solid var(--midnight-border);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-left .section-eyebrow {
  justify-content: flex-start;
}

.about-left .section-title {
  text-align: left;
}

.about-content {
  margin: 2rem 0;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--midnight-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--midnight-border);
  margin-top: 0.5rem;
}

.about-right {
  position: relative;
}

.about-image-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-img {
  overflow: hidden;
  border-radius: 2px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-img-1 {
  height: 400px;
}

.about-img-2 {
  height: 200px;
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--midnight-deep);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 14, 26, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

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

.gallery-item:nth-child(1) {
  height: 350px;
}

.gallery-item:nth-child(2) {
  height: 250px;
}

.gallery-item:nth-child(3) {
  height: 250px;
}

.gallery-item:nth-child(4) {
  height: 250px;
}

.gallery-item:nth-child(5) {
  height: 350px;
}

/* ========== VISIT ========== */
.visit-section {
  padding: 6rem 2rem;
  background: var(--midnight);
  border-top: 1px solid var(--midnight-border);
}

.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-left .section-eyebrow {
  justify-content: flex-start;
}

.visit-left .section-title {
  text-align: left;
  margin-bottom: 2.5rem;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.visit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--midnight-border);
  border-radius: 2px;
  color: var(--gold);
}

.visit-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.visit-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.visit-info-value {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.visit-info-value:hover {
  color: var(--gold);
}

/* Reservation Form */
.reservation-form {
  background: var(--midnight-deep);
  border: 1px solid var(--midnight-border);
  padding: 2.5rem;
  border-radius: 2px;
}

.reservation-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.reservation-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--midnight);
  border: 1px solid var(--midnight-border);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1rem;
}

.form-success-icon svg {
  animation: checkPop 0.5s ease;
}

@keyframes checkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
}

.form-success-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--midnight-deep);
  border-top: 1px solid var(--midnight-border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-phone {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--gold-light);
}

.footer-divider {
  height: 1px;
  background: var(--midnight-border);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    display: none;
  }

  .hero-title-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-left .section-eyebrow,
  .about-left .section-title,
  .visit-left .section-eyebrow,
  .visit-left .section-title {
    text-align: center;
  }

  .about-left .section-eyebrow {
    justify-content: center;
  }

  .about-content {
    max-width: 600px;
    margin: 2rem auto;
  }

  .about-stats {
    justify-content: center;
  }

  .about-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .visit-left {
    max-width: 500px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: calc(var(--nav-height) + 1rem) 1.5rem 3rem;
    min-height: auto;
  }

  .hero-title-main {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-meta-divider {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    height: 250px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    padding: 1.5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-stat-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(var(--nav-height) + 1rem) 1.25rem 3rem;
  }

  .menu-section,
  .about-section,
  .gallery-section,
  .visit-section {
    padding: 4rem 1.25rem;
  }

  .menu-categories {
    gap: 0.4rem;
  }

  .menu-cat-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
