/* ─────────────────────────────────────────────────────────
   Vonetta E. Taylor — Light / Cream Design System
   ───────────────────────────────────────────────────────── */

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

:root {
  --bg:           #f5f0e6;
  --bg2:          #ede7d9;
  --bg3:          #e4dcd0;
  --border:       rgba(140,92,53,.18);
  --terracotta:   #8c5c35;
  --brown:        #5a3820;
  --dark:         #1c1710;
  --text:         #2c2418;
  --body:         #4a3f33;
  --muted:        #7a6f62;
  --muted2:       #5c5248;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(.16,1,.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(245,240,230,.88);
  transition: padding .4s var(--ease), background .4s;
}
.nav.scrolled { padding: 1rem 3rem; background: rgba(245,240,230,.97); }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: 1; }
.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-mobile-toggle { display: none; cursor: pointer; background: none; border: none; }
.nav-overlay-mark { display: none; }

/* ── Mobile fullscreen overlay ── */
.nav-fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.nav-fullscreen.open { display: flex; }
.nav-fullscreen a {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
}
.nav-fullscreen a:hover { color: var(--terracotta); }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--terracotta); margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* ── Section wrapper ── */
.section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-narrow { max-width: 820px; }

.section-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--dark);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.2rem; }

.italic { font-style: italic; }
.terracotta { color: var(--terracotta); }
.muted { color: var(--muted); }

.body-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.9;
  color: var(--body);
}

.body-copy {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--muted2);
}

/* ── Divider ── */
.divider {
  width: 48px; height: 1px;
  background: var(--terracotta);
  opacity: .4;
  margin: 2rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-size: .72rem;
  font-family: var(--sans);
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  font-weight: 500;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--terracotta);
  background: rgba(140,92,53,.06);
  transform: translateY(-2px);
}

/* ── Full-bleed image ── */
.img-full {
  width: 100%;
  height: 70vh;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}
.img-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Two-column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Testimonials Section ── */
.testimonials-section {
  background-color: #5a3820;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  padding: 0 0 7rem;
}

/* ── Rachel Pearl featured testimonial ── */
.rachel-feature {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 3rem 7rem;
  border-bottom: 1px solid rgba(245,240,230,.07);
}
.rachel-feature .section-tag { color: rgba(245,240,230,.65); display: block; margin-bottom: 3rem; font-size: .75rem; letter-spacing: .24em; }
.rachel-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.75;
  color: #f0ebe1;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  position: relative;
}
.rachel-quote::before {
  content: '\201C';
  color: rgba(245,240,230,.3);
  font-size: 6rem;
  line-height: 0;
  vertical-align: -.42em;
  margin-right: .1em;
}

.testimonials-section .section-tag { color: #e8d8bc; font-size: .75rem; letter-spacing: .24em; font-weight: 600; }
.testimonials-section h2 { color: #f0ebe0; }
.testimonials-section .body-copy { color: rgba(245,240,230,.5); }

/* ── Testimonials Grid ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 8px;
  background: rgba(245,240,230,.06);
}
.testimonial-card {
  background: #5a3820;
  padding: 4rem;
  transition: background .3s;
}
.testimonial-card:hover { background: #664228; }

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.9;
  color: #f0ebe1;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.testimonial-quote::before {
  content: '\201C';
  color: rgba(245,240,230,.28);
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -.35em;
  margin-right: .2em;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(245,240,230,.15);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .85rem;
  font-weight: 500;
  color: #ede8df;
  letter-spacing: .04em;
}
.testimonial-title {
  font-size: .78rem;
  color: rgba(245,240,230,.62);
  margin-top: .2rem;
  line-height: 1.5;
}

/* ── HR ── */
hr.rule {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Footer ── */
footer {
  background: var(--bg2);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.footer-mark {
  width: clamp(80px, 10vw, 140px);
  height: auto;
  color: var(--terracotta);
  opacity: .6;
}
.footer-logo {
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: .5rem;
}
.footer-links a {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-copy {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-delay-1 { transition-delay: .1s !important; }
.reveal-delay-2 { transition-delay: .2s !important; }
.reveal-delay-3 { transition-delay: .3s !important; }
.reveal-delay-4 { transition-delay: .4s !important; }

/* ── Image frame ── */
.img-frame { position: relative; overflow: hidden; }

/* ── Pill tag ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg2);
}
.pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 6px rgba(140,92,53,.5);
}

/* ── Practitioner pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  margin: 4rem 0;
}
.pillar {
  background: var(--bg);
  padding: 3rem 2.5rem;
  border-top: 2px solid transparent;
  transition: border-color .3s, background .3s;
}
.pillar:hover { border-color: var(--terracotta); background: var(--bg2); }

.pillar-label {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.pillar-body {
  font-size: .875rem;
  color: var(--muted2);
  line-height: 1.8;
}

/* ── Stats ── */
.stats-row {
  display: flex;
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Domains ── */
.domain-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 3rem;
  margin-top: 2rem;
}
.domain-list li {
  font-size: .875rem;
  color: var(--muted2);
  padding-left: 1.2rem;
  position: relative;
}
.domain-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: .7rem;
}

/* ── Contact form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: .9rem;
  padding: .9rem 1.2rem;
  outline: none;
  transition: border-color .25s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--terracotta); }
.form-field textarea { min-height: 160px; }

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,240,230,.1) 0%, rgba(245,240,230,.95) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
}

/* ── Philosophy verse ── */
.verse-stanza {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 2.4;
  color: var(--muted2);
  font-style: italic;
  margin-bottom: 2rem;
}
.phil-aside {
  border-left: 2px solid var(--terracotta);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  background: var(--bg2);
}
.phil-aside p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--body);
  font-style: italic;
  line-height: 1.9;
}

/* ── Blog card ── */
.post-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity .2s;
}
.post-card:hover { opacity: .75; }
.post-card:first-child { border-top: 1px solid var(--border); }
.post-date { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.post-read { font-size: .65rem; color: var(--muted); }
.post-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.post-excerpt { font-size: .9rem; color: var(--muted2); line-height: 1.8; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: .9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    z-index: 199;
    padding: 2rem;
    overflow: hidden;
  }
  .nav-links.open a {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color .2s;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active { color: var(--terracotta); }
  .nav-overlay-mark { display: flex; justify-content: center; margin-bottom: .5rem; }
  .nav-mobile-toggle { display: block; z-index: 301; position: relative; }
  /* Hamburger → X when open */
  .nav-mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .section { padding: 5rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .domain-list { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .stats-row { gap: 2.5rem; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .post-card { grid-template-columns: 1fr; gap: 1.5rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-quote { font-size: 1.25rem; line-height: 1.9; }
  .testimonial-card { padding: 3rem 2rem; }
  .testimonial-name { font-size: .9rem; }
  .testimonial-title { font-size: .82rem; }
  .testimonial-avatar { width: 54px; height: 54px; }
  .rachel-feature { padding: 5rem 1.5rem 4rem; }
  .rachel-quote { font-size: 1.3rem; line-height: 1.8; }
  .rachel-quote::before { font-size: 4rem; }
}
