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

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

:root {
  --forest:    #1A2E2C;
  --teal:      #2D6A5E;
  --gold:      #C8B89A;
  --cream:     #F8F5F0;
  --warm:      #F0EDE6;
  --border:    #D4CEC6;
  --muted:     #7A8B89;
  --body:      #5A6E6C;
  --darktext:  #3D5250;
}

body { font-family: 'DM Sans', sans-serif; color: var(--forest); background: var(--cream); }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 48px; background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--forest); text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; color: var(--muted); letter-spacing: .04em;
  text-decoration: none; padding-bottom: 2px; transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); border-bottom: 1.5px solid var(--teal); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--forest); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--cream); border-bottom: 0.5px solid var(--border);
  padding: 16px 24px; gap: 14px;
}
.nav-mobile a { font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: .04em; }
.nav-mobile a.active { color: var(--forest); }
.nav-mobile.open { display: flex; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 340px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: #8B9E8A;
}
.hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26,46,44,.62); }
.hero-content { position: relative; z-index: 2; padding: 48px; width: 100%; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(248,245,240,.6); margin-bottom: 10px;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; font-style: italic; line-height: 1.35;
  color: #F2EDE4; max-width: 560px; margin-bottom: 8px;
}
.hero-quote.sm { font-size: 23px; max-width: 460px; }
.hero-attr { font-size: 10px; color: rgba(248,245,240,.55); letter-spacing: .04em; margin-bottom: 24px; }
.hero-sub { font-size: 12px; color: rgba(248,245,240,.75); line-height: 1.7; max-width: 440px; margin-bottom: 24px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--forest);
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: 10px 22px; border-radius: 2px;
  text-decoration: none; transition: opacity .2s;
}
.btn-gold:hover { opacity: .85; }
.btn-ghost {
  display: inline-block; border: 0.5px solid rgba(248,245,240,.5);
  color: #F2EDE4; font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; padding: 10px 22px; border-radius: 2px;
  text-decoration: none; transition: opacity .2s;
}
.btn-ghost:hover { opacity: .7; }
.btn-dark {
  display: inline-block; background: var(--forest); color: var(--cream);
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: 10px 22px; border-radius: 2px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: opacity .2s;
}
.btn-dark:hover { opacity: .85; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  display: flex; border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border); background: var(--cream);
}
.trust-item {
  flex: 1; padding: 14px 0 14px 20px;
  border-right: 0.5px solid var(--border);
  font-size: 10px; color: var(--muted); letter-spacing: .03em;
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500; color: var(--forest); margin-bottom: 2px;
}

/* ── SERVICES STRIP ────────────────────────────────────── */
.services-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 0.5px solid var(--border); background: var(--cream);
}
.svc { padding: 24px; border-right: 0.5px solid var(--border); }
.svc:last-child { border-right: none; }
.svc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-bottom: 12px; }
.svc-name { font-size: 12px; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.svc-desc { font-size: 10px; color: var(--muted); line-height: 1.6; }
.svc-link { display: block; font-size: 10px; color: var(--teal); margin-top: 10px; text-decoration: none; }
.svc-link:hover { text-decoration: underline; }

/* ── CONTENT SECTION ───────────────────────────────────── */
.section { padding: 36px 48px; border-top: 0.5px solid var(--border); background: var(--cream); }
.section-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.section-h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; color: var(--forest); line-height: 1.2; margin-bottom: 14px;
}
.section-body { font-size: 12px; line-height: 1.8; color: var(--body); max-width: 580px; }

/* ── HBOX ──────────────────────────────────────────────── */
.hbox {
  background: var(--warm); border-left: 2px solid var(--teal);
  padding: 16px 18px; border-radius: 0 4px 4px 0;
  margin: 18px 0; font-size: 11px; line-height: 1.7; color: var(--darktext);
}
.hbox strong { color: var(--forest); font-weight: 500; }

/* ── CHECKLIST ─────────────────────────────────────────── */
.checklist { list-style: none; margin: 14px 0; display: flex; flex-direction: column; gap: 6px; }
.checklist li { font-size: 12px; color: var(--body); padding-left: 18px; position: relative; line-height: 1.6; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--teal);
}

/* ── ICARD GRID ────────────────────────────────────────── */
.icard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.icard { background: #fff; border: 0.5px solid var(--border); border-radius: 4px; padding: 16px; }
.icard-label { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.icard-title { font-size: 12px; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.icard-body { font-size: 10px; color: var(--body); line-height: 1.55; }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: var(--forest); padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band-text {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 400; font-style: italic; color: #F2EDE4; line-height: 1.35; flex: 1;
}

/* ── ABOUT SPLIT ───────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 300px; border-bottom: 0.5px solid var(--border);
}
.about-photo-col {
  background: #C8C4BC; background-size: cover; background-position: center top;
  /* swap background-image: url('images/kinnari.jpg') once you have the photo */
}
.about-text-col { padding: 36px 48px; background: var(--cream); }
.bio-name {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 400; color: var(--forest); margin-bottom: 2px;
}
.bio-title { font-size: 11px; color: var(--teal); letter-spacing: .04em; margin-bottom: 14px; }
.bio-body { font-size: 12px; line-height: 1.8; color: var(--body); }
.bio-meta { margin-top: 16px; font-size: 10px; color: var(--muted); line-height: 1.9; }
.bio-dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal); margin-right: 7px; vertical-align: 1px;
}

/* ── PRACTICE CARDS ────────────────────────────────────── */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.pcard { border: 0.5px solid var(--border); border-radius: 4px; padding: 14px 16px; background: #fff; }
.pcard-name { font-size: 11px; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.pcard-desc { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-header { background: var(--cream); padding: 48px 48px 36px; border-bottom: 0.5px solid var(--border); }
.contact-rule { width: 28px; height: 2px; background: var(--teal); margin-bottom: 18px; }
.contact-h1 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--forest); margin-bottom: 12px; }
.contact-intro { font-size: 12px; color: var(--body); line-height: 1.75; max-width: 480px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.cmethod { border-top: 2px solid var(--teal); padding-top: 14px; }
.cmethod-label { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cmethod-val { font-size: 13px; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.cmethod-note { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ── FORM ──────────────────────────────────────────────── */
.form-wrap { background: #fff; border: 0.5px solid var(--border); border-radius: 4px; padding: 24px; }
.form-title { font-size: 12px; font-weight: 500; color: var(--forest); margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-label { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea {
  background: var(--cream); border: 0.5px solid var(--border);
  border-radius: 3px; font-size: 12px; font-family: 'DM Sans', sans-serif;
  color: var(--forest); outline: none; transition: border-color .2s;
  padding: 0 10px;
}
.form-input { height: 36px; }
.form-textarea { height: 80px; padding: 10px; resize: vertical; }
.form-input:focus, .form-textarea:focus { border-color: var(--teal); }
.form-disclaimer { font-size: 10px; color: var(--muted); line-height: 1.6; margin-top: 14px; }
.form-success { display: none; background: #E8F2F0; border: 0.5px solid var(--teal); border-radius: 4px; padding: 16px; font-size: 12px; color: var(--teal); margin-top: 12px; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--warm); padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 0.5px solid var(--border);
}
.footer-copy { font-size: 10px; color: var(--muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 10px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--forest); }

/* ── MOBILE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { min-height: 280px; }
  .hero-content { padding: 32px 20px; }
  .hero-quote { font-size: 21px; }
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-bottom: 0.5px solid var(--border); }
  .services-strip { grid-template-columns: 1fr; }
  .svc { border-right: none; border-bottom: 0.5px solid var(--border); }
  .svc:last-child { border-bottom: none; }
  .section { padding: 28px 20px; }
  .icard-grid, .pgrid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 220px; }
  .about-text-col { padding: 24px 20px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px 20px; gap: 16px; }
  .contact-header { padding: 32px 20px 24px; }
  .footer { flex-direction: column; gap: 10px; padding: 16px 20px; text-align: center; }
}
