:root {
  --cream: #f9f5f0;
  --warm: #f2eae0;
  --blush: #e8d5c4;
  --terracota: #c0876a;
  --sage: #8a9e8c;
  --brown: #6b4f3a;
  --charcoal: #2c2420;
  --muted: #6f6057;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

section,
[id] {
  scroll-margin-top: 100px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5%;
  background: rgba(249, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 135, 106, 0.15);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(107, 79, 58, 0.08);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--terracota);
}

.nav-cta,
.btn-green,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: 0.25s;
  border: 0;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--terracota);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--brown);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--blush);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--terracota);
  background: rgba(192, 135, 106, 0.06);
  transform: translateY(-2px);
}

.btn-green {
  padding: 0.9rem 2rem;
  background: #3a7d5a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(58, 125, 90, 0.28);
}

.btn-green:hover,
.btn-green:focus-visible {
  background: #2d6347;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5% 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 196, 0.55) 0%, rgba(232, 213, 196, 0) 70%);
  pointer-events: none;
}

.hero-text,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terracota);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero h1 em,
.section-title em {
  font-style: italic;
  color: var(--terracota);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-region {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-region strong {
  color: var(--brown);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 135, 106, 0.18);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.hero-photo-wrap {
  width: min(400px, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(107, 79, 58, 0.18);
}

.hero-photo-wrap img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

section {
  padding: 6rem 5%;
}

.section-lg {
  padding: 7rem 5%;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--terracota);
}

.section-tag.centered {
  justify-content: center;
}

.section-tag.centered::before {
  display: none;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
}

.about-name em {
  color: var(--brown);
}

.section-center {
  text-align: center;
}

.with-space {
  margin-bottom: 1.5rem;
}

.space-top-sm {
  margin-top: 1.75rem;
}

.space-top-md {
  margin-top: 2rem;
}

.space-top-lg {
  margin-top: 3rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.empathy {
  background: var(--warm);
  border-radius: 2.5rem;
  margin: 0 3%;
  padding: 5rem 6%;
}

.empathy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.empathy-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: var(--brown);
  margin: 1.5rem 0 2rem;
}

.empathy-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

.empathy-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.empathy-item {
  background: rgba(249, 245, 240, 0.7);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(192, 135, 106, 0.12);
}

.empathy-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

.therapy-grid,
.orientation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.therapy-body,
.orientation-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.therapy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.therapy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.therapy-list li::before {
  content: "";
  margin-top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracota);
  flex: 0 0 auto;
}

.therapy-note,
.panel-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.therapy-panel {
  background: var(--warm);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(192, 135, 106, 0.15);
}

.therapy-panel-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.topic-chip {
  background: rgba(249, 245, 240, 0.8);
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--brown);
  border: 1px solid rgba(192, 135, 106, 0.14);
}

.how {
  background: var(--charcoal);
  color: var(--cream);
}

.how .section-tag,
.how .section-title {
  color: var(--blush);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 3.5rem auto 0;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
}

.step-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: rgba(232, 213, 196, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--blush);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.88rem;
  color: rgba(249, 245, 240, 0.78);
}

.orientation-card {
  background: linear-gradient(135deg, var(--warm) 0%, var(--blush) 100%);
  border-radius: 2rem;
  padding: 3rem;
}

.orientation-card h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--brown);
}

.orientation-points {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.orientation-points li::before {
  content: "✦ ";
  color: var(--terracota);
}

.about {
  background: var(--warm);
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(107, 79, 58, 0.15);
}

.about-role,
.about-body {
  color: var(--muted);
}

.about-role {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.about-body p + p {
  margin-top: 1rem;
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--warm);
  border-radius: 1.2rem;
  border: 1px solid rgba(192, 135, 106, 0.15);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
}

.faq-q .arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192, 135, 106, 0.15);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s var(--ease-out), padding 0.25s var(--ease-out);
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item.open .faq-a {
  max-height: 380px;
  padding: 0 1.5rem 1.25rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--brown) 0%, #4a3228 100%);
  border-radius: 2.5rem;
  margin: 0 3% 4rem;
  padding: 5rem 6%;
  text-align: center;
  color: var(--cream);
}

.cta-section .section-title,
.cta-section .section-tag {
  color: var(--blush);
}

.cta-desc {
  font-size: 1rem;
  color: rgba(249, 245, 240, 0.8);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

footer {
  background: var(--charcoal);
  color: rgba(249, 245, 240, 0.7);
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--blush);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 5% 3rem;
  }

  .therapy-grid,
  .orientation-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    margin: 0 auto;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: rgba(249, 245, 240, 0.97);
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(192, 135, 106, 0.15);
  }

  .nav-links.is-open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .empathy,
  .cta-section {
    margin: 0;
    border-radius: 0;
  }

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

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
