:root {
  --ivory: #f4f0e8;
  --paper: #fbf9f4;
  --white: #fffdf8;
  --ink: #202723;
  --ink-soft: #4d5650;
  --sage: #708078;
  --sage-deep: #30463c;
  --sage-dark: #1f352c;
  --mist: #c7d1cf;
  --line: rgba(32, 39, 35, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.2em; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
h2 { font-size: clamp(2.7rem, 5.4vw, 5.2rem); }
.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 880px; margin-inline: auto; }
.section { padding: clamp(88px, 12vw, 168px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; background: var(--ink); color: white; border-radius: 2px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 50; height: 92px; display: flex; align-items: center; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; line-height: 1.1; font-family: var(--serif); font-size: 1.15rem; }
.brand strong { font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .14em; vertical-align: 3px; margin-right: 4px; }
.brand small { display: block; margin-top: 4px; font-family: var(--sans); font-size: .56rem; text-transform: uppercase; letter-spacing: .2em; color: var(--ink-soft); }
.brand-mark { position: relative; width: 29px; height: 35px; display: inline-block; }
.brand-mark i { position: absolute; inset: 2px 9px 9px 2px; border: 1px solid var(--ink); border-radius: 50% 55% 45% 55%; transform: rotate(36deg); }
.brand-mark i + i { inset: 9px 2px 2px 9px; transform: rotate(-30deg); border-color: var(--sage); }
.header-cta { display: inline-flex; align-items: center; gap: 22px; padding: 12px 18px; color: var(--paper); background: var(--sage-dark); border: 1px solid var(--sage-dark); font-size: .72rem; font-weight: 650; letter-spacing: .025em; transition: .25s; }
.header-cta:hover { color: var(--sage-dark); background: transparent; }
.header-cta span { font-size: 1rem; font-weight: 400; }

.hero { position: relative; min-height: 780px; padding: 142px 0 82px; background: var(--ivory); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 46vw; height: 46vw; min-width: 560px; min-height: 560px; border-radius: 50%; left: -25vw; top: 110px; border: 1px solid rgba(112,128,120,.18); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(45px, 7vw, 110px); }
.hero-copy { position: relative; z-index: 2; padding-bottom: 28px; }
.eyebrow { margin-bottom: 28px; display: flex; align-items: center; gap: 11px; font-size: .68rem; font-weight: 650; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; color: var(--sage-deep); }
.eyebrow > span { width: 31px; height: 1px; background: currentColor; }
.eyebrow-light { color: #cad6d0; }
.hero h1 { max-width: 650px; font-size: clamp(3.7rem, 6.25vw, 6.6rem); text-wrap: balance; } 
.hero-lead { max-width: 610px; margin: 32px 0 18px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.68; }
.hero-body { max-width: 590px; color: #687069; font-size: .95rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 35px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 14px 21px; border: 1px solid transparent; border-radius: var(--radius); font-size: .75rem; font-weight: 650; letter-spacing: .025em; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1.1rem; font-weight: 400; }
.button-dark { background: var(--sage-dark); color: white; }
.button-dark:hover { background: #162b22; }
.button-whatsapp { background: #248a58; color: white; border-color: #248a58; }
.button-whatsapp:hover { background: #1c7148; border-color: #1c7148; }
.button-light { background: var(--paper); color: var(--sage-dark); }
.button-light:hover { background: white; }
.session-note { max-width: 170px; color: #69726c; font-size: .68rem; line-height: 1.45; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%,0 11%); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, transparent 65%, rgba(31,53,44,.18)); }
.hero-image-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.orb { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; backdrop-filter: blur(5px); }
.orb-one { width: 118px; height: 118px; right: 10%; top: 8%; }
.orb-two { width: 50px; height: 50px; right: 24%; top: 22%; background: rgba(244,240,232,.18); }
.image-caption { position: absolute; z-index: 4; bottom: 23px; left: -37px; width: 230px; margin: 0; padding: 18px 20px; background: rgba(251,249,244,.92); backdrop-filter: blur(8px); color: var(--ink-soft); font-size: .7rem; line-height: 1.55; }
.image-caption span { display: block; margin-bottom: 8px; color: var(--sage-deep); font-size: .6rem; letter-spacing: .18em; }
.hero-index { position: absolute; right: 3vw; bottom: 22px; writing-mode: vertical-rl; color: rgba(32,39,35,.28); font-size: .55rem; letter-spacing: .28em; }

.identification { position: relative; background: var(--sage-dark); color: #f2f0e9; overflow: hidden; }
.identification::after { content: ""; position: absolute; width: 460px; height: 460px; right: -230px; top: 12%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.identification h2 { max-width: 870px; font-size: clamp(2.8rem, 5.4vw, 5.35rem); }
.large-copy { max-width: 820px; margin-top: 40px; color: #bac5bf; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.55; }
.symptoms-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; margin-top: clamp(75px, 10vw, 125px); }
.section-number { display: block; margin-bottom: 18px; color: #8fa198; font-size: .63rem; letter-spacing: .24em; }
.section-number.dark { color: var(--sage); }
.symptoms-intro p { font-family: var(--serif); font-size: 1.5rem; }
.symptom-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.symptom-list li { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #d7dcd8; font-size: .9rem; }
.symptom-list li > span { color: #83968c; font-size: .62rem; letter-spacing: .12em; }
.quote-band { position: relative; z-index: 2; margin-top: 95px; padding: 42px max(24px, 5vw); border: 1px solid rgba(255,255,255,.15); text-align: center; }
.quote-band p { max-width: 830px; margin: auto; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.8rem); line-height: 1.35; }

.transformation { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; }
.split-heading h2 { max-width: 790px; }
.split-heading > div:last-child > p { max-width: 690px; margin: 38px 0 0; color: var(--ink-soft); font-size: 1.03rem; }
.pillar-grid { margin-top: 85px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillar { padding: 35px clamp(24px, 3vw, 44px) 48px; border-right: 1px solid var(--line); }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar-top { display: flex; align-items: center; gap: 14px; margin-bottom: 56px; color: var(--sage); font-size: .62rem; letter-spacing: .15em; }
.pillar-top i { height: 1px; flex: 1; background: var(--line); }
.pillar h3 { font-size: clamp(2rem, 3.4vw, 3.2rem); text-transform: lowercase; }
.pillar p { max-width: 260px; margin: 20px 0 0; color: var(--ink-soft); font-size: .87rem; }
.choice-panel { margin-top: 105px; display: grid; grid-template-columns: .78fr 1.22fr; min-height: 470px; background: #d7ddda; }
.choice-image { min-height: 350px; overflow: hidden; }
.choice-image img { width: 100%; height: 100%; object-fit: cover; }
.choice-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 88px); }
.micro-label { margin-bottom: 28px; color: var(--sage-deep); font-size: .66rem; font-weight: 650; letter-spacing: .17em; text-transform: uppercase; }
.choice-copy ul { margin: 0; padding: 0; list-style: none; }
.choice-copy li { display: grid; grid-template-columns: 30px 1fr; padding: 11px 0; font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2.6rem); line-height: 1.12; }
.choice-copy li span { color: var(--sage); font-family: var(--sans); font-size: 1rem; }

.approach { background: var(--ivory); }
.approach-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(55px, 9vw, 135px); align-items: center; }
.approach-image { position: relative; }
.approach-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; clip-path: polygon(0 0, 88% 0, 100% 10%, 100% 100%, 0 100%); }
.image-tag { position: absolute; right: -42px; bottom: 38px; padding: 15px 22px; background: var(--sage-dark); color: white; font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.approach-copy h2 { max-width: 680px; margin-bottom: 38px; }
.approach-copy > p:not(.eyebrow) { max-width: 630px; color: var(--ink-soft); font-size: .97rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.tag-list span { padding: 8px 12px; border: 1px solid var(--line); color: var(--sage-deep); font-size: .65rem; letter-spacing: .04em; }

.presence { background: #e8e5dc; overflow: hidden; }
.presence-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: start; }
.presence-heading .eyebrow { grid-row: 1 / span 2; }
.presence-heading h2 { max-width: 820px; font-size: clamp(2.7rem, 5vw, 4.9rem); }
.presence-heading > p:last-child { max-width: 660px; margin: 28px 0 0; color: var(--ink-soft); }
.photo-mosaic { display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; margin-top: 78px; }
.photo-mosaic figure { min-height: 480px; margin: 0; overflow: hidden; background: #ccd2cd; }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-mosaic figure:hover img { transform: scale(1.025); }

.about { background: #324b40; color: white; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 10vw, 145px); align-items: center; }
.about-statement h2 { margin-bottom: 38px; }
.about-statement > p:not(.eyebrow) { max-width: 610px; color: #c7d1cc; font-size: 1.02rem; }
.credentials-panel { padding: clamp(32px, 5vw, 58px); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); }
.credentials-panel > p { margin-bottom: 30px; color: #aebdb6; font-size: .62rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.credentials-panel ul { margin: 0; padding: 0; list-style: none; }
.credentials-panel li { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); color: #e1e7e3; font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
.credentials-panel li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }

.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.audience-heading { position: sticky; top: 110px; align-self: start; }
.audience-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.audience-list li { display: grid; grid-template-columns: 45px 1fr; gap: 25px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.audience-list li > span { color: var(--sage); font-size: .65rem; letter-spacing: .15em; }
.audience-list p { max-width: 600px; margin: 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 1.75rem); line-height: 1.4; }
.centered-quote { margin-top: 120px; padding: 74px 12%; border: 1px solid var(--line); text-align: center; }
.centered-quote p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2.4rem); line-height: 1.25; }

.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 125px); }
.faq-heading { position: sticky; top: 110px; align-self: start; }
.faq-heading > p:last-child { max-width: 330px; margin-top: 28px; color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: grid; grid-template-columns: 42px 1fr 22px; gap: 14px; align-items: center; padding: 27px 0; list-style: none; cursor: pointer; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.35; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary > span { color: var(--sage); font-family: var(--sans); font-size: .61rem; letter-spacing: .14em; }
.accordion summary i { position: relative; width: 18px; height: 18px; }
.accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; left: 2px; right: 2px; top: 8px; height: 1px; background: var(--ink); }
.accordion summary i::after { transform: rotate(90deg); transition: transform .25s; }
.accordion details[open] summary i::after { transform: rotate(0); }
.answer { padding: 0 35px 28px 56px; color: var(--ink-soft); font-size: .9rem; }
.answer p { max-width: 650px; margin: 0; }

.contact { background: #20362d; color: white; }
.contact-shell { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(55px, 9vw, 120px); }
.contact-copy h2 { max-width: 610px; }
.contact-copy > p:not(.eyebrow) { max-width: 550px; margin: 35px 0; color: #bdc9c3; font-size: 1rem; }
.contact-form-wrap { align-self: start; padding: clamp(25px, 4vw, 44px); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #d7dfdb; font-size: .64rem; letter-spacing: .1em; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0; outline: 0; padding: 11px 0; background: transparent; color: white; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #869a90; }
.contact-form input:focus, .contact-form textarea:focus { border-color: white; }
.consent { grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; }
.consent input { margin: 4px 0 0; accent-color: var(--mist); }
.consent span { letter-spacing: 0 !important; line-height: 1.45; }
.form-submit { width: 100%; margin-top: 3px; border: 0; }
.form-notice { margin: 0; color: #90a199; font-size: .61rem; line-height: 1.5; }
.form-message { margin-bottom: 20px; padding: 12px 15px; font-size: .78rem; }
.form-message.success { background: rgba(156,202,178,.15); border: 1px solid rgba(156,202,178,.35); }
.form-message.error { background: rgba(222,151,139,.14); border: 1px solid rgba(222,151,139,.35); }
.trap { position: absolute; left: -9999px; }

.site-footer { padding: 70px 0 25px; background: #182a23; color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr .7fr; gap: 60px; align-items: start; padding-bottom: 55px; }
.footer-brand .brand-mark i { border-color: white; }
.footer-brand .brand-mark i + i { border-color: #9db0a7; }
.footer-brand small { color: #9cafaa; }
.footer-top > p { max-width: 390px; color: #aebdb6; font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: .72rem; color: #bdc9c3; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #81968c; font-size: .58rem; }
.mobile-contact { display: none; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

@media (max-width: 960px) {
  :root { --container: min(100% - 36px, 720px); }
  .site-header { height: 76px; }
  .hero { padding-top: 120px; }
  .hero-grid, .approach-grid, .about-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { width: min(560px, 92%); justify-self: end; }
  .hero-image-wrap { aspect-ratio: 5 / 4; }
  .image-caption { left: -25px; }
  .symptoms-grid, .split-heading, .audience-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .presence-heading { grid-template-columns: 1fr; gap: 25px; }
  .presence-heading .eyebrow { grid-row: auto; }
  .photo-mosaic figure { min-height: 380px; }
  .audience-heading, .faq-heading { position: static; }
  .pillar-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .pillar, .pillar:first-child, .pillar:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar-top { margin-bottom: 25px; }
  .choice-panel { grid-template-columns: 1fr 1.2fr; }
  .approach-image { max-width: 520px; }
  .about-statement { max-width: 700px; }
  .credentials-panel { max-width: 650px; }
  .contact-form-wrap { width: 100%; max-width: 680px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  body { font-size: 15px; padding-bottom: 64px; }
  .section { padding: 88px 0; }
  .brand { font-size: 1.02rem; }
  .brand-mark { width: 25px; height: 31px; }
  .header-cta { gap: 10px; padding: 10px 12px; font-size: .64rem; }
  .hero { min-height: 0; padding: 112px 0 72px; }
  .hero::before { min-width: 350px; min-height: 350px; left: -230px; top: 120px; }
  .hero h1 { font-size: clamp(3rem, 14.8vw, 4.4rem); line-height: 1; } 
  .hero-lead { margin-top: 25px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .session-note { max-width: none; text-align: center; }
  .hero-visual { width: 94%; }
  .hero-image-wrap { aspect-ratio: 4 / 5; }
  .image-caption { left: -18px; bottom: 15px; width: 205px; padding: 15px; }
  .orb-one { width: 85px; height: 85px; }
  .orb-two { width: 38px; height: 38px; }
  .hero-index { display: none; }
  h2 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .symptoms-grid { margin-top: 65px; gap: 25px; }
  .symptom-list li { grid-template-columns: 32px 1fr; }
  .quote-band { margin-top: 65px; padding: 33px 18px; }
  .split-heading { gap: 30px; }
  .pillar-grid { margin-top: 55px; }
  .choice-panel { grid-template-columns: 1fr; margin-top: 70px; }
  .choice-image { min-height: 260px; }
  .choice-copy { padding: 38px 25px; }
  .approach-grid { gap: 52px; }
  .image-tag { right: -10px; bottom: 22px; }
  .photo-mosaic { grid-template-columns: 1fr; margin-top: 50px; }
  .photo-mosaic figure { min-height: 300px; }
  .audience-list li { grid-template-columns: 32px 1fr; gap: 12px; padding: 25px 0; }
  .centered-quote { margin-top: 70px; padding: 48px 20px; }
  .faq-grid { gap: 30px; }
  .accordion summary { grid-template-columns: 30px 1fr 18px; gap: 8px; }
  .answer { padding-left: 38px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-contact { position: fixed; z-index: 45; left: 12px; right: 12px; bottom: 10px; height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; background: var(--sage-dark); color: white; box-shadow: 0 8px 30px rgba(20,35,29,.28); font-size: .7rem; font-weight: 650; letter-spacing: .035em; }
}
