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

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --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-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --nav-height: 72px;
  --container: 1200px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography ── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}

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

.section-title em {
  font-style: italic;
  color: var(--teal-600);
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  height: var(--nav-height);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled { box-shadow: 0 1px 0 var(--slate-200); }

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-600);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--slate-900); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--teal-600);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ── 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(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(13, 148, 136, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-200);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-200);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-300);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--teal-600);
  color: white;
}
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub { margin: 0 auto; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover img { transform: scale(1.03); }

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--teal-200);
  border-radius: 50%;
  pointer-events: none;
}

.about-text .section-sub { margin-bottom: 24px; }

.about-text p {
  color: var(--slate-600);
  margin-bottom: 16px;
  font-size: 0.975rem;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--slate-700);
}

.about-features li svg { color: var(--teal-600); flex-shrink: 0; }

/* ── Menu ── */
.menu { background: white; }

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

.menu-card {
  padding: 40px;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.menu-card:hover {
  border-color: var(--teal-400);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
}

.menu-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--teal-600);
  transition: border-color 0.3s, background 0.3s;
}

.menu-card:hover .menu-card-icon {
  border-color: var(--teal-600);
  background: var(--teal-50);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.menu-list { display: flex; flex-direction: column; gap: 10px; }

.menu-list li {
  font-size: 0.875rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--teal-400);
}

/* ── Visit ── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-info .section-sub { margin-bottom: 40px; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: start;
}

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

.visit-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--slate-900);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.visit-detail p {
  font-size: 0.925rem;
  color: var(--slate-500);
  line-height: 1.6;
}

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

.visit-detail a:hover { color: var(--teal-700); }

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--teal-600);
  color: white;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}

.map-btn:hover { background: var(--teal-700); transform: translateY(-2px); }

.visit-map {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.visit-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-size: 0.875rem;
  color: var(--slate-800);
  font-weight: 400;
}

.map-overlay svg { color: var(--teal-600); }

/* ── Footer ── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.footer-brand a {
  color: var(--teal-400);
  transition: color 0.2s;
}

.footer-brand a:hover { color: var(--teal-200); }

.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-600);
}

/* ── Animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: 280px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 0;
    border-left: 1px solid var(--slate-200);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
  }

  .nav-links.active { transform: translateX(0); }
  .nav-toggle { display: flex; }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap img { height: 360px; }

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

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

  .section { padding: 80px 0; }

  .footer-inner { flex-direction: column; gap: 32px; }
}

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