@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #FFFFFF;
  --surface: #F5FAFA;
  --surface-2: #EBF4F3;
  --text: #0D1F1F;
  --muted: #5A7878;
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #F0FDFA;
  --border: #DDE8E7;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.0; }
.headline { font-size: clamp(2rem, 4vw, 3rem); }
.subheadline { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { line-height: 1.78; color: var(--muted); }
p.dark { color: var(--text); }

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-sm { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 5vw, 3rem);
  max-width: 1080px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--teal);
  color: white;
  padding: 0.6rem 1.35rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--text); }

.nav-mobile a.cta-mobile {
  margin-top: 1rem;
  text-align: center;
  background: var(--teal);
  color: white;
  border-radius: 2rem;
  border: none;
  padding: 0.75rem;
  font-weight: 500;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-photo {
  aspect-ratio: 4/5;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── Section label ── */
.section-label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ── Divider ── */
.divider {
  width: 2.5rem;
  height: 1.5px;
  background: var(--teal);
  margin: 1.5rem 0;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(13,148,136,0.08);
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Tag ── */
.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.28rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ── Step number ── */
.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── Testimonial ── */
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Surface sections ── */
.bg-surface { background: var(--surface); }
.bg-teal-light { background: var(--teal-light); }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #A8BCBC; }

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--teal); }

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

/* ── CTA band ── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: 2px;
  position: sticky;
  top: 6rem;
  overflow: hidden;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q:hover { color: var(--teal); }
.faq-icon { font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; color: var(--teal); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.95rem;
}

.faq-item.open .faq-a { display: block; }

/* ── Footer ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: white;
  text-decoration: none;
}

.footer-logo span { color: var(--teal); }

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4/3; order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 4/3; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .btn { justify-content: center; }
}
