* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FAF6F0;
  --sand: #E8D5BB;
  --tan: #C9A97A;
  --sienna: #A06B3C;
  --espresso: #5C3A1E;
  --bark: #3A2210;
  --sage: #8A9E7F;
  --sage-light: #C4D1BC;
  --warm-white: #FFFDF9;
  --text-dark: #2B1A0E;
  --text-mid: #6B4226;
  --text-muted: #9E7D62;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5vw;
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160,107,60,0.12);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sienna); }

.nav-cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--sienna) !important; color: var(--cream) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5vw 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55vw; height: 80vh;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,169,122,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 30% 70%, rgba(138,158,127,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--tan);
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 1rem;
}

.hero-name em {
  font-style: italic;
  font-weight: 600;
  color: var(--sienna);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 38ch;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--bark); transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid var(--tan);
  color: var(--espresso);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--sienna); background: rgba(160,107,60,0.05); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  width: 420px;
  height: 520px;
  position: relative;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  border-radius: 2px 120px 2px 120px;
  background: linear-gradient(145deg, var(--sand) 0%, var(--tan) 50%, var(--sienna) 100%);
  opacity: 0.25;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 2px 120px 2px 120px;
  background: linear-gradient(160deg, #E8D5BB 0%, #C9A97A 60%, #A06B3C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.hero-photo-silhouette {
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 85%;
  background: linear-gradient(to top, rgba(92,58,30,0.6) 0%, transparent 60%);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.photo-label {
  position: absolute;
  bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 24px rgba(92,58,30,0.08);
}

.badge-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text p { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.badge-text strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; display: block; }

.hero-stat {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
}

.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.06em;
}

/* ── SECTION BASE ── */
section { padding: 6rem 5vw; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: var(--tan);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title em { font-style: italic; font-weight: 600; color: var(--sienna); }

/* ── ABOUT ── */
.about {
  background: var(--warm-white);
  border-top: 1px solid rgba(201,169,122,0.2);
  border-bottom: 1px solid rgba(201,169,122,0.2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--espresso);
  padding-left: 1.5rem;
  border-left: 3px solid var(--tan);
}

.about-quote strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-top: 1.25rem;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--cream);
  border-radius: 0.75rem;
  padding: 1.1rem;
  border: 1px solid var(--sand);
}

.value-card .icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.value-card h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── TOPICS ── */
.topics { background: var(--cream); }

.topics-inner { max-width: 1200px; margin: 0 auto; }

.topics-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.topics-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.topic-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--tan), var(--sienna));
  opacity: 0;
  transition: opacity 0.2s;
}

.topic-card:hover {
  border-color: var(--tan);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(92,58,30,0.08);
}

.topic-card:hover::before { opacity: 1; }

.topic-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.topic-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.topic-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 3vw;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-label { color: var(--tan); }
.testimonials .section-label::before { background: rgba(201,169,122,0.4); }
.testimonials .section-title { color: var(--sand); }
.testimonials .section-title em { color: var(--tan); }

.testi-inner { max-width: 1200px; margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,122,0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: background 0.2s;
}

.testi-card:hover { background: rgba(255,255,255,0.08); }

.testi-stars {
  color: var(--tan);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250,246,240,0.9);
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bark);
  flex-shrink: 0;
}

.testi-author-info p { margin: 0; }
.testi-author-name { font-size: 0.85rem; font-weight: 500; color: var(--sand); }
.testi-author-role { font-size: 0.75rem; color: rgba(232,213,187,0.6); }

/* ── CONTACT ── */
.contact {
  background: var(--warm-white);
  border-top: 1px solid rgba(201,169,122,0.2);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.contact-link:hover {
  border-color: var(--sand);
  background: var(--cream);
  color: var(--espresso);
}

.contact-link-icon {
  width: 2rem; height: 2rem;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 0.6rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sienna);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--bark); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--bark);
  color: rgba(250,246,240,0.6);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sand);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(250,246,240,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sand); }

/* ── DIVIDER ── */
.leaf-divider {
  text-align: center;
  font-size: 1.5rem;
  color: var(--tan);
  opacity: 0.5;
  padding: 0.5rem 0;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 5vw 3rem; }
  .hero-visual { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .topics-header { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .topics-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
