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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: 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-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--teal-700); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--teal-200); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}
.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--teal-600);
  border-color: var(--teal-600);
}
.btn--outline:hover {
  background: var(--teal-600);
  color: #fff;
}

.btn--nav {
  padding: 10px 22px;
  font-size: 0.85rem;
}

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

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-900);
}
.logo:hover { color: var(--slate-900); }

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--teal-600);
  border-radius: 6px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
  box-shadow: 0 6px 0 rgba(255,255,255,0.4);
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-600);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--slate-900); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-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;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.7) 60%,
    rgba(15, 23, 42, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FEATURES ─── */
.features {
  padding: 120px 0;
  background: var(--slate-50);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 10px;
  color: var(--teal-600);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--slate-900);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 4/5;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}
.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-200);
}

/* ─── MENU ─── */
.menu {
  padding: 120px 0;
  background: var(--slate-50);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.menu-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.menu-item:hover {
  border-color: var(--teal-200);
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.08);
}
.menu-item-image {
  overflow: hidden;
}
.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s var(--ease);
}
.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}
.menu-item-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-item-body h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.menu-item-body p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}
.menu-note {
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--slate-500);
}
.menu-note a {
  color: var(--teal-600);
  font-weight: 500;
}

/* ─── VISIT ─── */
.visit {
  padding: 120px 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.visit-info { display: flex;
  flex-direction: column;
}
.visit-info .section-title { margin-bottom: 40px; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
  flex: 1;
}
.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.visit-detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.visit-detail-value {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.7;
}
.visit-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--teal-600);
}
.visit-link:hover { color: var(--teal-700); }
.visit-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--slate-200);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ─── CTA ─── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content .section-title { margin-bottom: 20px; }
.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--slate-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title { margin-bottom: 20px; }
.contact-text p {
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--slate-700);
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-method:hover { color: var(--teal-600); }
.contact-method svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 8px;
  color: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { color: var(--teal-500); flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate-900);
  padding: 64px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
}
.footer-brand p,
.footer-brand a {
  font-size: 0.9rem;
  color: var(--slate-400);
}
.footer-brand a:hover { color: var(--teal-400); }
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--slate-400);
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  font-size: 0.8rem;
  color: var(--slate-600);
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  z-index: 95;
  background: #fff;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.nav-mobile.active { transform: translateX(0); }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--slate-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--teal-600); }
.nav-mobile .btn {
  margin-top: 24px;
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card { padding: 28px 24px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { max-height: 400px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }

  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item {
    grid-template-columns: 160px 1fr;
    gap: 16px;
  }
  .menu-item-body { padding: 16px; }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .features, .about, .menu, .visit, .cta, .contact { padding: 80px 0; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item-image { aspect-ratio: 16/9; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
