/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fef8f8;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Tokens ────────────────────────────────────────── */
:root {
  --burgundy: #800020;
  --burgundy-deep: #5c0017;
  --blush: #f4c2c2;
  --blush-light: #fdf0f0;
  --cream: #fef8f8;
  --gold: #d4a843;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --thin: 200;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── Typography ────────────────────────────────────── */
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}
.label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(254, 248, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(128, 0, 32, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .logo { color: var(--burgundy); }
.logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.4) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.nav.scrolled .nav-cta {
  border-color: var(--burgundy) !important;
  color: var(--burgundy) !important;
}
.nav-cta:hover {
  background: var(--burgundy) !important;
  border-color: var(--burgundy) !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--burgundy); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--burgundy-deep) 0%, var(--burgundy) 35%, #b8325a 70%, var(--blush) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(128, 0, 32, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(244, 194, 194, 0.3) 0%, transparent 50%);
}
.hero-frost {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-headline .serif-italic {
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #fff;
  color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--blush);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ──────────────────────────────────────── */
.section {
  padding: 7rem 0;
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── About ─────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(128, 0, 32, 0.1);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(128, 0, 32, 0.15);
}

/* ── Menu ──────────────────────────────────────────── */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.1);
}
.menu-card-visual {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-visual img { transform: scale(1.05); }
.menu-card-body {
  padding: 1.75rem;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Experience ────────────────────────────────────── */
.experience { background: var(--cream); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.experience-text p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.experience-list { display: flex;
  flex-direction: column;
  gap: 1rem;
}
.experience-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
}
.experience-list li svg {
  color: var(--burgundy);
  flex-shrink: 0;
}
.experience-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 6/7;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-image:hover img { transform: scale(1.03); }

/* ── Visit ─────────────────────────────────────────── */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-detail svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}
.visit-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.visit-detail p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.visit-detail a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(128, 0, 32, 0.2);
  transition: border-color 0.3s;
}
.visit-detail a:hover { border-color: var(--burgundy); }
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 350px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--burgundy-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.footer-contact p {
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, border-color 0.3s;
}
.footer-contact a:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

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

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .experience-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image,
  .experience-image { aspect-ratio: 16/9; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(254, 248, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2.5rem, 12vw, 4rem); }
  .section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 260px; }
}
