

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

:root {

  --ink:      #2b3d40;
  --body:     #4c5a5c;
  --muted:    #7c8789;
  --line:     #dfe0d9;
  --white:    #ffffff;

  --page:     #f5f2ec;
  --surface:  #ffffff;
  --tint:     #eef1ee;
  --tint-2:   #e7ece9;
  --accent:   #5b8a86;
  --accent-deep: #3f6b67;
  --on-accent:#ffffff;
  --gold:     #c79a52;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 18px 40px -28px rgba(40,55,55,.45);
  --shadow-soft: 0 10px 30px -22px rgba(40,55,55,.4);
}

.theme-burnout { --page:#f4f1eb; --tint:#eef1ef; --tint-2:#e6ece9;
  --accent:#5e8d88; --accent-deep:#41706b; --gold:#cda35a; --ink:#2c3f40; }
.theme-anxiety { --page:#eaf0f0; --tint:#eef3f2; --tint-2:#e4edec;
  --accent:#c79a52; --accent-deep:#b07f33; --gold:#c79a52; --ink:#2f4a52; }
.theme-codep   { --page:#f3eee5; --tint:#efe9df; --tint-2:#eadfce;
  --accent:#c08a3e; --accent-deep:#a4742e; --gold:#c08a3e; --ink:#3a3128; }
.theme-divorce { --page:#f4efe7; --tint:#efe9df; --tint-2:#ece2d4;
  --accent:#c2873f; --accent-deep:#a8702c; --gold:#c2873f; --ink:#3a342c; }
.theme-family  { --page:#eef3f2; --tint:#eef2f1; --tint-2:#e1ece9;
  --accent:#2f7d86; --accent-deep:#216069; --gold:#c9a25b; --ink:#27434a; }

body {
  font-family: 'PT Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body);
  background: var(--page);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--ink); line-height: 1.15; font-weight: 600; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px); }

.section { padding-block: clamp(48px, 8vw, 88px); }
.section--tint { background: var(--tint); }
.section-head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(1.5rem, 1rem + 2.4vw, 2.3rem); }
.section-head p { color: var(--muted); margin-top: 10px; max-width: 60ch; margin-inline: auto; }
.eyebrow { color: var(--accent-deep); font-weight: 700; letter-spacing: .04em;
  font-family: 'PT Sans', sans-serif; }

.ic { display: inline-flex; }
.ic svg { width: 1em; height: 1em; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 1rem/1 'PT Sans', sans-serif; padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: .22s ease;
  text-align: center; }
.btn .ic { font-size: 1.15em; }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-soft); }
.btn--gold:hover { filter: brightness(.94); transform: translateY(-2px); }
.btn--ghost { background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--ink); border-color: color-mix(in srgb, var(--ink) 22%, transparent); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn--sm { padding: 11px 18px; font-size: .92rem; }
.btn .arr { transition: transform .22s ease; }
.btn:hover .arr { transform: translateX(4px); }

.site-header { position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--page) 86%, #fff);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); }
.nav { display: flex; align-items: center; gap: 18px;
  min-height: 64px; padding-block: 8px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center;
  border: 1.5px solid var(--gold); border-radius: 50%; color: var(--gold);
  font-family: 'Lora', serif; font-weight: 600; font-size: .95rem; letter-spacing: .02em; }
.brand__name { font-family: 'Lora', serif; color: var(--ink); font-size: 1.02rem;
  font-weight: 600; line-height: 1.15; }
.brand__role { font-size: .72rem; color: var(--muted); letter-spacing: .01em; }
.nav__links { display: none; gap: clamp(10px, 1.6vw, 20px); margin-inline: auto;
  list-style: none; padding: 0; flex-wrap: wrap; }
.nav__links a { font-size: .9rem; color: var(--body); padding: 6px 2px;
  border-bottom: 2px solid transparent; transition: .18s; white-space: nowrap; }
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--ink); border-color: var(--gold); }
.nav__cta { display: none; gap: 10px; flex-shrink: 0; }
.nav__toggle { margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: .25s; }
.nav.open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 8px 0 18px; }
.nav.open + .mobile-menu { display: flex; }
.mobile-menu a { padding: 11px 4px; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn { margin-top: 12px; }

@media (min-width: 1000px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .nav.open + .mobile-menu { display: none; }
}

.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(22px, 4vw, 44px); align-items: center;
  padding-block: clamp(28px, 5vw, 60px); }
.hero__title { font-size: clamp(2rem, 1.1rem + 4.6vw, 3.7rem); letter-spacing: -.01em; }
.hero__lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); color: var(--ink);
  font-weight: 700; margin-top: 18px; }
.hero__body + .hero__lead { margin-top: 20px; }
.hero__body { margin-top: 14px; color: var(--body); }
.hero__body p { margin-top: 10px; }
.hero__accent { color: var(--accent-deep); font-weight: 700; }
.hero__rule { width: 64px; height: 3px; background: var(--gold); border-radius: 3px;
  margin: 18px 0; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; align-items: stretch; }
.hero__media { position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 520px){ .hero__cta { flex-direction: row; flex-wrap: wrap; } .hero__cta .btn{ flex: 1 1 auto; } }
@media (min-width: 860px){
  .hero__grid { grid-template-columns: 1.04fr 1fr; }
  .hero--media-right .hero__media { aspect-ratio: 5/6; }
  .hero__cta .btn { flex: 0 0 auto; }
}

.sym-grid { display: grid; gap: clamp(10px, 1.6vw, 16px);
  grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px){ .sym-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px){ .sym-grid--5 { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 920px){ .sym-grid--7 { grid-template-columns: repeat(7, 1fr); } }
@media (min-width: 920px){ .sym-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.sym { text-align: center; padding: clamp(14px, 2vw, 22px) 12px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sym .ic { font-size: clamp(30px, 4vw, 38px); color: var(--accent);
  line-height: 1; }
.sym__txt { font-size: clamp(.84rem, .8rem + .2vw, .96rem); color: var(--body);
  line-height: 1.35; }
.sym-grid--cards .sym { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); transition: .2s; }
.sym-grid--cards .sym:hover { border-color: var(--accent);
  box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.panel { background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: clamp(18px, 3vw, 34px); }

.cols { display: grid; gap: clamp(22px, 3.5vw, 44px); align-items: start; }
@media (min-width: 860px){ .cols--2 { grid-template-columns: 1fr 1fr; } }
.block-title { font-size: clamp(1.4rem, 1rem + 1.8vw, 1.95rem); margin-bottom: 16px; }
.lead-list { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 9px; }
.lead-list li { position: relative; padding-left: 24px; }
.lead-list li::before { content: ""; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.callout { background: var(--surface); border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow-soft); }
.callout--accent { background: var(--accent); color: #fff; }
.callout--accent h3, .callout--accent strong { color: #fff; }
.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li .ic { position: absolute; left: 0; top: 1px; color: var(--accent);
  font-size: 20px; }

.cycle { display: grid; gap: 6px; }
.cycle__ring { position: relative; width: min(440px, 92%); aspect-ratio: 1; margin-inline: auto; }
.cycle__ring::before { content: ""; position: absolute; inset: 14%;
  border: 1.5px dashed color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 50%; }
.cycle__center { position: absolute; inset: 0; display: grid; place-content: center;
  text-align: center; }
.cycle__center span { font-family: 'Lora', serif; color: var(--ink);
  font-size: clamp(1rem, .8rem + .8vw, 1.3rem); }
.cycle__node { position: absolute; left: calc(50% + 42% * cos(var(--a)));
  top: calc(50% + 42% * sin(var(--a))); transform: translate(-50%, -50%);
  width: 30%; text-align: center; }
.cycle__node .ic { font-size: 24px; color: var(--accent); }
.cycle__node span { display: block; font-size: clamp(.62rem, .55rem + .3vw, .76rem);
  color: var(--body); line-height: 1.25; margin-top: 3px; }
.cycle__note { text-align: center; color: var(--muted); font-size: .9rem;
  max-width: 46ch; margin: 10px auto 0; }
@media (max-width: 560px){
  .cycle__ring { width: 100%; aspect-ratio: auto; display: grid; gap: 6px; }
  .cycle__ring::before { display: none; }
  .cycle__center { position: static; order: -1; margin-bottom: 6px; }
  .cycle__node { position: static; transform: none; width: 100%;
    display: flex; align-items: center; gap: 12px; text-align: left;
    padding: 9px 12px; background: var(--surface); border-radius: 10px; }
  .cycle__node .ic { font-size: 22px; flex-shrink: 0; }
  .cycle__node span { margin-top: 0; font-size: .9rem; }
}

.faq { display: grid; gap: clamp(18px, 3vw, 30px); }
@media (min-width: 760px){ .faq { grid-template-columns: repeat(3, 1fr); } }
.faq__item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.faq__item .ic { font-size: 30px; color: var(--accent); }
.faq__q { font-family: 'Lora', serif; color: var(--ink); font-weight: 600;
  font-size: 1.02rem; margin-bottom: 5px; }
.faq__a { font-size: .92rem; color: var(--body); }

.closing { position: relative; overflow: hidden; color: #fff; }
.closing__bg { position: absolute; inset: 0; z-index: 0; }
.closing__bg img { width: 100%; height: 100%; object-fit: cover; }
.closing__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, color-mix(in srgb, var(--accent-deep) 88%, #000) 0%,
    color-mix(in srgb, var(--accent-deep) 55%, transparent) 70%); }
.closing__inner { position: relative; z-index: 1; padding-block: clamp(44px, 7vw, 80px);
  max-width: 720px; }
.closing--light { color: var(--ink); }
.closing--light .closing__bg::after { background:
  linear-gradient(100deg, color-mix(in srgb, var(--page) 92%, transparent) 0%,
   color-mix(in srgb, var(--page) 55%, transparent) 75%); }
.closing--light h2, .closing--light p { color: var(--ink); }
.closing h2 { color: #fff; font-size: clamp(1.5rem, 1rem + 2.6vw, 2.4rem); }
.closing p { margin-top: 14px; opacity: .95; max-width: 56ch; }
.closing__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.trust { background: var(--surface); border-top: 1px solid var(--line); }
.trust__row { display: grid; gap: 18px 24px; padding-block: 28px;
  grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px){ .trust__row { grid-template-columns: repeat(4, 1fr); } }
.trust__item { display: flex; align-items: center; gap: 12px; }
.trust__item .ic { font-size: 30px; color: var(--accent); flex-shrink: 0; }
.trust__item span { font-size: .88rem; color: var(--body); line-height: 1.3; }

.site-foot { background: var(--ink); color: #cdd6d6; }
.site-foot__row { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  justify-content: space-between; padding-block: 22px; font-size: .86rem; }
.site-foot a:hover { color: #fff; }

.sprig { position: absolute; color: var(--gold); opacity: .5; pointer-events: none;
  width: clamp(60px, 9vw, 130px); z-index: 0; }
.sprig svg { width: 100%; height: auto; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

.center { text-align: center; }
.mt-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
