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

:root {
  --color-burgundy: #7B2D3B;
  --color-burgundy-deep: #5C1F2C;
  --color-burgundy-light: #9A3D4E;
  --color-blush: #F4E8E6;
  --color-blush-light: #FBF6F5;
  --color-cream: #FDF8F7;
  --color-warm-white: #FEFAF9;
  --color-text: #1A1214;
  --color-text-soft: #5C4A4D;
  --color-text-muted: #8A7578;
  --color-line: #E8D8D5;
  --color-line-light: #F0E4E2;
  --color-white: #FFFFFF;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-warm-white);
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ─── Header ─────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--color-line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-burgundy);
  letter-spacing: -0.01em;
}

.logo-icon {
  color: var(--color-burgundy);
}

/* ─── Navigation ─────────────────────────── */

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

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-list a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-burgundy);
  transition: width var(--transition);
}

.nav-list a:hover {
  color: var(--color-burgundy);
}

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

/* ─── Mobile Nav Toggle ──────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Buttons ────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}

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

.btn-primary:hover {
  background: var(--color-burgundy-deep);
  border-color: var(--color-burgundy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 45, 59, 0.25);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ─── Hero ───────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 20, 0.72) 0%,
    rgba(92, 31, 44, 0.55) 50%,
    rgba(26, 18, 20, 0.68) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 72px;
  padding-bottom: var(--space-3xl);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-blush);
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: float 2.5s ease-in-out infinite;
}

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

/* ─── Section Shared ─────────────────────── */

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: var(--space-sm);
}

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

.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--color-burgundy);
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-soft);
  max-width: 560px;
  font-weight: 300;
}

/* ─── About ──────────────────────────────── */

.about {
  padding: var(--space-4xl) 0;
  background: var(--color-warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--color-burgundy);
  margin: var(--space-xl) 0;
}

.about-stats {
  display: flex;
  gap: var(--space-lg);
}

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

.stat-divider {
  border-left: 1px solid var(--color-line);
  padding-left: var(--space-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-burgundy);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ─── Menu ───────────────────────────────── */

.menu {
  padding: var(--space-4xl) 0;
  background: var(--color-blush-light);
  border-top: 1px solid var(--color-line-light);
  border-bottom: 1px solid var(--color-line-light);
}

.menu .container > .section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.menu .section-desc {
  margin: 0 auto;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.menu-column {
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line-light);
}

.menu-column-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-burgundy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-line);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.menu-item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xl);
  font-weight: 300;
  font-style: italic;
}

/* ─── Divider / Testimonial ──────────────── */

.divider {
  padding: var(--space-4xl) 0;
  background: var(--color-burgundy);
  text-align: center;
}

.divider-content {
  max-width: 640px;
  margin: 0 auto;
}

.divider svg {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-lg);
}

.divider-text {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.divider-source {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Visit ──────────────────────────────── */

.visit {
  padding: var(--space-4xl) 0;
  background: var(--color-warm-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.visit-desc {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visit-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-blush);
  color: var(--color-burgundy);
}

.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.6;
}

.visit-detail-value a {
  color: var(--color-burgundy);
  transition: color var(--transition);
}

.visit-detail-value a:hover {
  color: var(--color-burgundy-deep);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  max-height: 480px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-blush);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: var(--space-xl);
}

.map-placeholder svg {
  color: var(--color-burgundy);
  opacity: 0.6;
}

.map-label {
  font-size: 0.9375rem;
  color: var(--color-text-soft);
  font-weight: 400;
}

/* ─── CTA ────────────────────────────────── */

.cta {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-line-light);
  text-align: center;
}

.cta-eyebrow {
  margin-bottom: var(--space-sm);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.75;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ─── Footer ─────────────────────────────── */

.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.site-footer .logo {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.site-footer .logo-icon {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  font-weight: 300;
}

.footer-nav-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  font-weight: 300;
}

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

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  font-weight: 300;
}

.footer-link {
  color: var(--color-blush) !important;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--color-white) !important;
}

.footer-bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ─── Scroll Animations ──────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Responsive ─────────────────────────── */

@media (max-width: 1024px) {
  .about-grid,
  .visit-grid {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-list a {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-image {
    aspect-ratio: 16/10;
  }

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

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

  .visit-map {
    aspect-ratio: 16/9;
    max-height: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stat-divider {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    padding-top: var(--space-md);
  }
}
