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

: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;
  --teal-950: #042f2e;

  --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;
  --slate-950: #020617;

  --cream: #fefdf8;
  --warm-white: #fefcf7;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(4,47,46,.06), 0 1px 2px rgba(4,47,46,.04);
  --shadow-md: 0 4px 16px rgba(4,47,46,.08), 0 2px 4px rgba(4,47,46,.04);
  --shadow-lg: 0 12px 40px rgba(4,47,46,.12), 0 4px 12px rgba(4,47,46,.06);
  --shadow-xl: 0 24px 60px rgba(4,47,46,.14);

  --transition: 280ms cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--teal-700); color: white;
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 200; font-size: .875rem; font-weight: 600;
}
.skip-link:focus { top: 16px; }

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

/* ── Typography ───────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-600);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400; line-height: 1.2;
  color: var(--slate-900); margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem; color: var(--slate-500);
  max-width: 520px; line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9375rem;
  padding: 13px 28px; border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: .875rem; }

.btn-primary {
  background: var(--teal-600); color: white;
  box-shadow: 0 4px 14px rgba(13,148,136,.3);
}
.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: 0 6px 20px rgba(13,148,136,.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--teal-700);
  border: 1.5px solid var(--teal-200);
}
.btn-ghost:hover {
  background: var(--teal-50); border-color: var(--teal-400);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255,255,255,.15); color: white;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254,253,248,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4,47,46,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex; align-items: center;
  height: 72px; gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--slate-900); flex-shrink: 0;
}
.logo-dot { color: var(--teal-600); }

.nav-menu {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-menu a {
  padding: 8px 16px; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  color: var(--slate-600); transition: all var(--transition);
}
.nav-menu a:hover { color: var(--teal-700); background: var(--teal-50); }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm); margin-left: auto;
}
.nav-toggle:hover { background: var(--teal-50); }
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block; width: 18px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--teal-50) 50%, var(--slate-50) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,234,212,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600;
  color: var(--teal-700); background: white;
  border: 1px solid var(--teal-100);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400; line-height: 1.15;
  color: var(--slate-900); margin-bottom: 24px;
}
.hero-title em {
  font-style: italic; color: var(--teal-600);
}

.hero-desc {
  font-size: 1.1rem; color: var(--slate-500);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--teal-700); line-height: 1;
}
.stat-label { font-size: .8125rem; color: var(--slate-400); font-weight: 500; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--slate-200); flex-shrink: 0;
}

.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 6/7;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  background: var(--teal-200); border-radius: var(--radius-lg);
  z-index: -1; opacity: .6;
}

/* ── Features ─────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: white;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius-md); margin-bottom: 20px;
  color: var(--teal-600);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--slate-900);
  margin-bottom: 10px;
}
.feature-card p { font-size: .9375rem; color: var(--slate-500); line-height: 1.7; }

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--teal-50) 100%);
}
.menu .section-header { text-align: center; margin-bottom: 56px; }
.menu .section-desc { margin: 0 auto; }

.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  aspect-ratio: 4/3; overflow: hidden;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 28px; }
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--slate-900); margin-bottom: 8px;
}
.menu-card-body p { font-size: .9375rem; color: var(--slate-500); line-height: 1.7; }

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: white;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5/6;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -20px;
  width: 55%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--teal-100); border-radius: 50%;
  z-index: -1; opacity: .5;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
  font-size: 1rem; color: var(--slate-500); line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 32px;
}
.value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500; color: var(--slate-700);
}
.value-item svg { color: var(--teal-500); flex-shrink: 0; }

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--slate-50);
}
.gallery .section-header { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) { aspect-ratio: 4/3.5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: white;
}
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.visit-info .section-tag { margin-bottom: 16px; }
.visit-info .section-title { margin-bottom: 12px; }
.visit-desc { font-size: 1rem; color: var(--slate-500); line-height: 1.75; margin-bottom: 36px; }

.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.visit-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm); color: var(--teal-600);
}
.visit-detail strong {
  display: block; font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--slate-400); margin-bottom: 4px;
}
.visit-detail p { font-size: .9375rem; color: var(--slate-700); line-height: 1.6; }
.visit-detail a {
  color: var(--teal-600); font-weight: 500;
  transition: color var(--transition);
}
.visit-detail a:hover { color: var(--teal-700); text-decoration: underline; }

.visit-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 400px;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-950) 60%, var(--slate-900) 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,234,212,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta .section-tag { background: rgba(94,234,212,.15); border-color: rgba(94,234,212,.25); color: var(--teal-300); }
.cta .section-title { color: white; margin-bottom: 16px; }
.cta .cta-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.75;
}
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--slate-950);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-300); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact strong {
  font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.footer-contact p { font-size: .9rem; line-height: 1.6; }
.footer-contact a {
  color: rgba(255,255,255,.6); transition: color var(--transition);
}
.footer-contact a:hover { color: var(--teal-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); text-align: center; }

/* ── Scroll to top ────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-600); color: white;
  border-radius: 50%; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 50;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--teal-700); transform: translateY(-2px); }

/* ── Reveal animations (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal { /* default visible for no-JS */ opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-title { font-size: clamp(2rem, 4vw, 3rem); }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(254,253,248,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-menu a { padding: 12px 16px; font-size: 1rem; width: 100%; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center; padding: 40px 0 60px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-img-accent { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 72px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
