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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #1e293b;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
label { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: #475569; }

/* ── Utilities ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 640px; }
.text-center { text-align: center; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.headline-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: #0d9488;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,148,136,0.25);
}

.btn-ghost {
  background: transparent;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.btn-ghost:hover {
  border-color: #0d9488;
  color: #0d9488;
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ── Navbar ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203,213,225,0.5);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(15,23,42,0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.nav-logo-icon { color: #0d9488; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #475569;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #0d9488; background: #f0fdfa; }

.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #0f172a;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #f1f5f9; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.25rem;
  border-top: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #0d9488; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 5rem 0 3rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text { max-width: 520px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,23,42,0.1);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0d9488, #5eead4, #f0fdfa);
}

/* ── Section shared ─────────────────────────────────── */
.section {
  padding: 6rem 0;
}

/* ── About ──────────────────────────────────────────── */
.about { background: #f8fafc; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text .eyebrow { margin-bottom: 0.75rem; }
.split-text .headline-lg { margin-bottom: 1.25rem; }
.split-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1rem;
}

.split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,23,42,0.08);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Offerings ──────────────────────────────────────── */
.offerings { background: #ffffff; }
.offerings .headline-lg { margin-bottom: 0.5rem; }
.offerings .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  background: #ffffff;
}
.card:hover {
  border-color: #99f6e4;
  box-shadow: 0 8px 32px rgba(13,148,136,0.08);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f0fdfa;
  color: #0d9488;
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

/* ── Gallery ────────────────────────────────────────── */
.gallery { background: #f8fafc; }
.gallery .headline-lg { margin-bottom: 0.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 5; }

/* ── Visit ──────────────────────────────────────────── */
.visit { background: #ffffff; }

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visit-info .eyebrow { margin-bottom: 0.75rem; }
.visit-info .headline-lg { margin-bottom: 2rem; }

.visit-details { display: flex; flex-direction: column; gap: 1.5rem; }

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-detail svg {
  color: #0d9488;
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}
.visit-detail p {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.6;
}
.visit-detail a {
  color: #0d9488;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.visit-detail a:hover { border-bottom-color: #0d9488; }

.visit-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
}

/* ── Contact ────────────────────────────────────────── */
.contact { background: #f8fafc; }
.contact .headline-lg { margin-bottom: 0.5rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { margin-bottom: 0.125rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  color: #0f766e;
  font-size: 0.9375rem;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1e293b;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}
.footer-logo svg { color: #2dd4bf; }

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.9375rem;
  color: #94a3b8;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #2dd4bf; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.9375rem;
}
.footer-contact a {
  color: #94a3b8;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-contact a:hover { color: #2dd4bf; border-bottom-color: #2dd4bf; }

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: #475569;
}

/* ── Reveal (progressive enhancement) ──────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; }
  .split { gap: 2.5rem; }
  .offerings .cards { gap: 1rem; }
}

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

  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .hero-image-wrap { max-width: 480px; }

  .section { padding: 4rem 0; }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-image { order: -1; }

  .offerings .cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 240px; }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .visit-map { height: 280px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}
