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

:root {
  --forest:   #1A4828;
  --jungle:   #255C33;
  --moss:     #3B7A48;
  --sage:     #7AAD87;
  --mist:     #C5DCC8;
  --cream:    #F1EBDD;
  --gold:     #B89A54;
  --line:     rgba(26,72,40,0.12);
  --line-l:   rgba(255,255,255,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--forest);
  overflow-x: hidden;
}

.leaf-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cellipse cx='30' cy='60' rx='18' ry='8' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='1.5' transform='rotate(-30 30 60)'/%3E%3Cellipse cx='90' cy='60' rx='18' ry='8' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='1.5' transform='rotate(30 90 60)'/%3E%3Cellipse cx='60' cy='20' rx='18' ry='8' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='1.5' transform='rotate(60 60 20)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 4rem;
  background: var(--cream);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,72,40,0.5);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  font-weight: 500;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--forest);
}

/* PAGES */
.page { display: none; padding-top: 88px; min-height: 100vh; }
.page.active { display: block; }

/* ════════════ BIO PAGE ════════════ */
.bio-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: calc(100vh - 88px);
  overflow: hidden;
}

.bio-left {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-left::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.bio-left::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.bio-portrait { position: relative; z-index: 2; text-align: center; padding: 2rem; }

/* Photo placeholder — swap src for a real image */
.portrait-img {
  width: 210px; height: 210px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.05), 0 30px 80px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, var(--jungle), var(--moss));
}

.portrait-initials {
  width: 210px; height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jungle), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.05), 0 30px 80px rgba(0,0,0,0.35);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.bio-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(232,226,210,0.5);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 auto;
}
.bio-quote::before { content: '\201C'; color: var(--gold); font-size: 2.2rem; line-height: 0.4; vertical-align: -0.45em; margin-right: 0.1em; }
.bio-quote::after  { content: '\201D'; color: var(--gold); font-size: 2.2rem; line-height: 0.4; vertical-align: -0.45em; margin-left: 0.1em; }

.bio-right {
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; }

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  color: var(--forest);
}
.bio-name em { font-style: italic; color: var(--jungle); }

.bio-role {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.bio-divider { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 2.5rem; }

.bio-text { font-size: 0.95rem; line-height: 1.9; color: #445040; margin-bottom: 1.4rem; font-weight: 300; }

.photo-note {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(74,124,89,0.1);
  color: var(--moss);
  border: 1px dashed var(--sage);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.bio-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--jungle); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 500; }

.services-strip {
  background: var(--forest);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.services-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.services-strip .eyebrow { color: var(--gold); }
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 3.5rem;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.svc-card { background: var(--forest); padding: 2.5rem 2rem; transition: background 0.35s; }
.svc-card:hover { background: var(--jungle); }
.svc-icon { font-size: 1.6rem; margin-bottom: 1.2rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.75rem; font-weight: 400; }
.svc-card p { font-size: 0.875rem; color: rgba(197,220,200,0.65); line-height: 1.75; font-weight: 300; }

/* ════════════ TESTIMONIALS PAGE ════════════ */
.testi-top {
  background: var(--forest);
  padding: 6rem 4rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-top .eyebrow { color: var(--gold); justify-content: center; }
.testi-top .eyebrow::before { display: none; }
.testi-top h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem,5vw,3.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.testi-top h1 em { font-style: italic; color: var(--sage); }
.testi-top p {
  font-size: 0.95rem;
  color: rgba(232,226,210,0.58);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
  position: relative; z-index: 2;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--line);
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 4rem;
}

.tcard {
  background: var(--cream);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.tcard:hover { background: var(--mist); }

.tcard-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--sage);
  line-height: 0.6;
  margin-bottom: 1.2rem;
  opacity: 0.5;
}

.tcard p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--forest);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.tcard-name { font-size: 0.85rem; font-weight: 500; color: var(--forest); }
.tcard-detail { font-size: 0.75rem; color: var(--sage); margin-top: 0.15rem; }

.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

.testi-cta {
  text-align: center;
  padding: 3rem 4rem 6rem;
}
.testi-cta p {
  font-size: 0.95rem;
  color: var(--sage);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ════════════ CONTACT PAGE ════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: calc(100vh - 88px);
}

.contact-panel {
  background: var(--jungle);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-panel-inner { position: relative; z-index: 2; }
.contact-panel .eyebrow { color: var(--gold); }
.contact-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.contact-panel h2 em { font-style: italic; }
.contact-panel .intro-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(232,226,210,0.6);
  margin-bottom: 3rem;
  font-weight: 300;
}
.cinfo { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.cinfo-dot {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold); flex-shrink: 0;
}
.cinfo-text strong { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; font-weight: 500; }
.cinfo-text span { font-size: 0.88rem; color: rgba(232,226,210,0.7); font-weight: 300; }

.contact-form-area {
  padding: 6rem 5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-area .eyebrow { color: var(--moss); }
.contact-form-area h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--forest); margin-bottom: 2.5rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fg { margin-bottom: 1.8rem; }
.fg label { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.6rem; font-weight: 500; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--forest);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--jungle); }
.fg textarea { resize: none; height: 110px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-weight: 500;
}
.btn:hover { background: var(--jungle); transform: translateY(-2px); }
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(5px); }

.success-toast {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(74,124,89,0.1);
  border-left: 3px solid var(--moss);
  font-size: 0.875rem;
  color: var(--jungle);
}

.formspree-note {
  font-size: 0.75rem;
  color: var(--sage);
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(74,124,89,0.07);
  border-left: 2px solid var(--sage);
}

/* ════════════ BOOK PAGE ════════════ */
.book-top {
  background: var(--forest);
  padding: 6rem 4rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-top .eyebrow { color: var(--gold); justify-content: center; }
.book-top .eyebrow::before { display: none; }
.book-top h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.book-top h1 em { font-style: italic; color: var(--sage); }
.book-top p {
  font-size: 0.95rem;
  color: rgba(232,226,210,0.58);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
  position: relative; z-index: 2;
}

.meeting-picker {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--line);
  max-width: 960px;
  margin: 4rem auto;
  padding: 0 4rem;
}

.mcard { background: var(--cream); padding: 2.5rem 2rem; cursor: pointer; transition: background 0.3s; position: relative; }
.mcard:hover { background: var(--mist); }
.mcard.sel { background: var(--forest); }
.mcard.sel h3 { color: var(--cream); }
.mcard.sel .mdur { color: rgba(232,226,210,0.55); }
.mcard.sel .mdesc { color: rgba(214,232,212,0.6); }
.mtag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); font-weight: 500; margin-bottom: 0.75rem; }
.mcard.sel .mtag { color: var(--gold); }
.mcard h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 0.4rem; color: var(--forest); }
.mdur { font-size: 0.8rem; color: var(--sage); margin-bottom: 0.9rem; font-weight: 500; }
.mdesc { font-size: 0.85rem; color: #445040; line-height: 1.7; font-weight: 300; }
.tick { position: absolute; top: 1.2rem; right: 1.2rem; width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 0.65rem; color: white; }
.mcard.sel .tick { display: flex; }

.booking-form-wrap { max-width: 680px; margin: 0 auto; padding: 0 4rem 6rem; }
.booking-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--forest); margin-bottom: 2rem; }

.slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem; margin-bottom: 1.5rem; }
.slot { padding: 0.65rem 0.5rem; border: 1px solid var(--line); text-align: center; font-size: 0.82rem; cursor: pointer; transition: all 0.2s; background: transparent; font-family: 'Jost', sans-serif; color: var(--forest); }
.slot:hover { border-color: var(--moss); color: var(--jungle); }
.slot.sel { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.cal-btn {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  transition: color 0.2s;
}
.mcard:hover .cal-btn { color: var(--jungle); }

.book-note {
  text-align: center;
  padding: 0 4rem 5rem;
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 300;
}
.book-note strong { color: var(--moss); font-weight: 500; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page.active .fu { animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.05s; opacity: 0; }
.d2 { animation-delay: 0.15s; opacity: 0; }
.d3 { animation-delay: 0.25s; opacity: 0; }
.d4 { animation-delay: 0.35s; opacity: 0; }
.d5 { animation-delay: 0.45s; opacity: 0; }
.d6 { animation-delay: 0.55s; opacity: 0; }

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { gap: 1.2rem; }
  .nav-logo span { display: none; }
  .bio-hero { grid-template-columns: 1fr; }
  .bio-left { height: 340px; }
  .bio-right { padding: 3.5rem 2rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-panel { padding: 4rem 2rem; }
  .contact-form-area { padding: 4rem 2rem; }
  .frow { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .meeting-picker { grid-template-columns: 1fr; padding: 0 2rem; }
  .booking-form-wrap { padding: 0 2rem 5rem; }
  .slots { grid-template-columns: repeat(3,1fr); }
  .book-top, .testi-top { padding: 4rem 2rem 3.5rem; }
  .services-strip { padding: 4rem 2rem; }
  .testi-grid { grid-template-columns: 1fr; padding: 0 2rem; }
  .testi-cta { padding: 2rem 2rem 4rem; }
}
