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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --blush: #FDF2F2;
  --blush-mid: #F9E4E4;
  --cream: #FFFAF8;
  --charcoal: #1A1414;
  --warm-gray: #6B5E5E;
  --light-gray: #C4B5B5;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 242, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.2s ease !important;
}

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

.nav-cta:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  padding: 8px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 0.25s ease;
}

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 120px var(--space-md) var(--space-lg);
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-accent {
  color: var(--burgundy);
  font-style: italic;
  font-weight: 700;
}

.hero-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 440px;
  margin-bottom: var(--space-md);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 45, 59, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Images */
.hero-image-col {
  position: relative;
  height: 600px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(123, 45, 59, 0.15);
}

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

.hero-image-float {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.2);
  border: 4px solid var(--white);
}

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

/* Hero Stamp */
.hero-stamp {
  position: absolute;
  bottom: 40px;
  left: var(--space-md);
  background: var(--burgundy);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-3deg);
}

/* ── Marquee ── */
.marquee {
  background: var(--burgundy);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: var(--space-md);
  animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blush);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--blush-mid);
  flex-shrink: 0;
  font-size: 0.6rem;
  align-self: center;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Shared ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

/* ── Menu ── */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-md);
  border: 1px solid rgba(123, 45, 59, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

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

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--light-gray);
  font-style: italic;
}

/* ── Story ── */
.story {
  padding: var(--space-2xl) 0;
  background: var(--blush);
}

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

.story-image-col {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(123, 45, 59, 0.12);
}

.story-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 56/70;
}

.story-content .section-title {
  margin-bottom: var(--space-md);
}

.story-body {
  margin-bottom: var(--space-lg);
}

.story-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
}

.story-stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(123, 45, 59, 0.12);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

/* ── Visit ── */
.visit {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

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

.visit-info {
  padding-right: var(--space-md);
}

.visit-info .section-title {
  margin-bottom: var(--space-lg);
}

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

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

.visit-detail svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

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

.visit-detail a {
  color: var(--burgundy);
  transition: color 0.2s ease;
}

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

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: var(--blush);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blush);
  display: block;
  margin-bottom: var(--space-sm);
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: color 0.2s ease;
}

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

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

.footer-contact a {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--blush);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(253, 242, 242, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-image-col {
    height: 450px;
    max-width: 500px;
  }

  .hero-image-float {
    left: -20px;
    width: 180px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-image-col {
    max-width: 500px;
  }

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

  .visit-info {
    padding-right: 0;
  }

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

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-image-col {
    height: 380px;
  }

  .hero-image-float {
    width: 140px;
    left: -10px;
    bottom: -20px;
  }

  .hero-stamp {
    display: none;
  }

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

  .story-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

  .mobile-menu-link {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .hero-image-col {
    height: 300px;
  }

  .hero-image-float {
    width: 110px;
    left: 0;
    bottom: -15px;
  }
}
