:root {
  --sage: #7a9e87;
  --sage-dark: #5a7d67;
  --warm-white: #faf9f7;
  --cream: #f2ede8;
  --taupe: #e8e0d8;
  --navy: #2c3e35;
  --body-font: 'Lato', sans-serif;
  --heading-font: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.75;
  background: var(--warm-white);
}

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

.center { text-align: center; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: var(--sage-dark); }

/* ── Headings ── */

.heading {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--sage-dark);
}

/* ── Nav ── */

.site-nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--taupe);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.2;
}

.nav-brand span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

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

/* ── Hero ── */

.hero {
  background: var(--cream);
  padding: 72px 0 64px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 8px;
}

.hero-text .subtitle {
  font-size: 1rem;
  color: var(--sage-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hero-text p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.btn {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  margin-top: 8px;
}

.btn:hover {
  background: var(--sage-dark);
  color: #fff;
}

/* ── Section shared ── */

section {
  padding: 72px 0;
}

section:nth-of-type(even) {
  background: var(--cream);
}

/* ── Bio section ── */

.bio .container {
  max-width: 720px;
}

.bio p {
  margin: 0 0 16px;
}

/* ── Contact Form ── */

.contact {
  background: var(--warm-white);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--taupe);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  background: var(--warm-white);
  color: var(--navy);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

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

.form-submit {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit:hover {
  background: var(--sage-dark);
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-status.success { color: var(--sage-dark); }
.form-status.error   { color: #c00; }

/* ── Fees & Insurance ── */

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fees-box h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin: 0 0 12px;
}

.fee-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.insurance-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.insurance-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--taupe);
  font-size: 0.95rem;
}

.insurance-list li:last-child {
  border-bottom: none;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag {
  background: var(--taupe);
  color: var(--navy);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Education ── */

.edu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}

.edu-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--taupe);
}

.edu-item:first-child { padding-top: 0; }
.edu-item:last-child  { border-bottom: none; }

.edu-item h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 4px;
}

.edu-item .edu-years {
  font-size: 0.9rem;
  color: var(--sage-dark);
  font-weight: 600;
  margin: 0 0 4px;
}

.edu-item .edu-addr {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ── Page hero (inner pages) ── */

.page-hero {
  background: var(--cream);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--taupe);
}

.page-hero h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  margin: 0;
}

/* ── Footer ── */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.875rem;
}

.site-footer p { margin: 0 0 4px; }

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.site-footer a:hover { color: #fff; }



/* ── Responsive ── */

@media (max-width: 760px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image { order: -1; }

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

  .nav-links {
    gap: 20px;
  }
}
