@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --navy:   #2c4a5a;
  --teal:   #3a8c7a;
  --teal-light: #5cb8a5;
  --bg:     #f7f5f0;
  --white:  #ffffff;
  --muted:  #6b6560;
  --border: #e5e0d8;
  --text:   #1a1a1a;
}

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

body {
  font-family: 'Hanken Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo svg { width: 36px; height: auto; }

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-wordmark-top {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.nav-wordmark-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 40px;
  text-align: center;
}

.hero-notice {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(140, 207, 193, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 24px;
}

.hero p {
  font-size: 18px;
  color: #c8d8e0;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.2s;
}

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

/* ── Page sections ── */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.service-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Contact strip ── */
.contact-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}

.contact-strip p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-strip a {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

/* ── Footer ── */
footer {
  padding: 32px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .hero { padding: 64px 20px; }
  .hero h1 { font-size: 30px; }
  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-strip { padding: 40px 20px; }
}
