/* Lysia Henriques — Website V1 */
:root {
  --forest: #2f6d62;
  --forest-dark: #214f48;
  --teal: #3faeb2;
  --rose: #c92f68;
  --rose-dark: #9f214f;
  --plum: #522064;
  --plum-dark: #35133f;
  --gold: #b69552;
  --cream: #f7f3ec;
  --paper: #fcfaf7;
  --white: #fff;
  --ink: #2c2730;
  --muted: #6f6870;
  --line: rgba(44,39,48,.14);
  --shadow: 0 28px 80px rgba(53,19,63,.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 12px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.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: 9999; top: 12px; left: 12px; padding: 12px 18px; color: white; background: var(--plum); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.eyebrow { margin: 0 0 20px; color: var(--rose-dark); font-size: .76rem; line-height: 1.2; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #f4d9a5; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -.045em; }
h1 em { color: var(--rose); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); letter-spacing: -.02em; }
p { color: var(--muted); }
.large-text { font-size: clamp(1.18rem, 2vw, 1.55rem); line-height: 1.65; }
.hero-lead { max-width: 670px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.65; }
.small-note { font-size: .9rem; }
.small-note.light { color: rgba(255,255,255,.72); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.is-scrolled { background: rgba(252,250,247,.92); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(16px); }
.header-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 230px; flex: 0 0 auto; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; padding: 0; margin: 0; }
.nav-link { position: relative; font-size: .9rem; font-weight: 650; color: var(--ink); }
.nav-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--rose); transition: right .25s; }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--plum); margin: 6px 0; transition: .25s; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; font-size: .92rem; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--plum); box-shadow: 0 12px 30px rgba(82,32,100,.18); }
.button-primary:hover { background: var(--plum-dark); }
.button-secondary { color: var(--plum); border-color: rgba(82,32,100,.28); background: rgba(255,255,255,.55); }
.button-secondary:hover { background: white; }
.button-small { min-height: 44px; padding: 10px 18px; }
.button-light { color: var(--plum-dark); background: white; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.45); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--plum); font-weight: 800; border-bottom: 1px solid rgba(82,32,100,.25); padding-bottom: 4px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

/* Hero */
.hero, .page-hero { position: relative; overflow: hidden; }
.home-hero { min-height: 850px; padding: 190px 0 80px; background: linear-gradient(130deg, var(--cream), #fff 58%, #f5eef4); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 800px; margin-bottom: 28px; }
.hero-art { min-height: 520px; display: grid; place-items: center; position: relative; overflow: visible; }
.hero-art-frame { position: relative; width: min(100%, 470px); aspect-ratio: .9; border-radius: 46% 54% 52% 48% / 42% 39% 61% 58%; background: linear-gradient(160deg, rgba(63,174,178,.18), rgba(201,47,104,.08)); border: 1px solid rgba(82,32,100,.12); box-shadow: var(--shadow); }
.hero-mark { position: absolute; width: 56%; left: 17%; top: 13%; filter: drop-shadow(0 20px 28px rgba(82,32,100,.08)); }
.art-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(182,149,82,.55); }
.art-ring-one { width: 180px; height: 180px; right: -26px; top: 52px; }
.art-ring-two { width: 72px; height: 72px; left: -15px; bottom: 80px; background: rgba(201,47,104,.08); }
.art-note { position: absolute; right: 32px; bottom: 45px; color: var(--plum); font-family: var(--serif); font-size: 1.6rem; line-height: 1.05; }
.art-note span { color: var(--rose); font-style: italic; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 260px; height: 260px; left: -110px; top: 190px; background: rgba(63,174,178,.12); }
.hero-orb-two { width: 180px; height: 180px; right: 9%; bottom: -80px; background: rgba(201,47,104,.08); }
.hero-footnote { display: flex; align-items: center; gap: 16px; margin-top: 60px; }
.hero-footnote span { width: 70px; height: 1px; background: var(--gold); }
.hero-footnote p { margin: 0; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

/* Sections */
.intro-section { background: var(--paper); }
.intro-section h2 { margin-bottom: 28px; }
.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading.center { margin-inline: auto; }
.offers-section { padding-top: 30px; }
.offers-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 22px; }
.offer-card { position: relative; min-height: 520px; padding: 50px; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.offer-primary { color: white; background: var(--forest); }
.offer-primary p { color: rgba(255,255,255,.78); }
.offer-primary .text-link { color: white; border-color: rgba(255,255,255,.35); }
.offer-secondary { color: var(--ink); background: #eee4ed; border: 1px solid rgba(82,32,100,.08); }
.offer-number { font-family: var(--serif); font-size: 1.15rem; opacity: .75; }
.offer-content { position: relative; z-index: 2; max-width: 620px; }
.offer-content h3 { font-size: clamp(2.4rem, 4.2vw, 4rem); margin-bottom: 22px; }
.offer-content p { font-size: 1.06rem; margin-bottom: 28px; }
.offer-kicker { margin-bottom: 12px !important; text-transform: uppercase; font-weight: 800; font-size: .72rem !important; letter-spacing: .16em; }
.offer-shape { position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.22); border-radius: 48% 52% 42% 58%; right: -110px; top: -60px; }
.pillars-section { color: white; background: var(--plum-dark); }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.split-heading h2 { margin: 0; }
.split-heading > p { color: rgba(255,255,255,.68); font-size: 1.12rem; max-width: 480px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.18); }
.pillar { padding: 38px 24px 16px; border-right: 1px solid rgba(255,255,255,.18); }
.pillar:last-child { border: 0; }
.pillar span { color: #f4d9a5; font-size: .78rem; font-weight: 800; letter-spacing: .15em; }
.pillar h3 { margin: 72px 0 15px; font-size: 2rem; }
.pillar p { color: rgba(255,255,255,.65); }
.about-preview { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about-visual { position: relative; min-height: 500px; }
.experience-card { position: absolute; inset: 30px 40px auto 0; min-height: 370px; padding: 55px; border-radius: 48% 52% 45% 55%; display: flex; flex-direction: column; justify-content: center; color: white; background: var(--rose); box-shadow: var(--shadow); }
.experience-card strong { font-family: var(--serif); font-size: 7rem; line-height: .8; }
.experience-card span { max-width: 250px; margin-top: 28px; font-weight: 700; }
.visual-line { position: absolute; right: 20px; top: 0; width: 160px; height: 310px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); border-radius: 0 0 70px 0; }
.visual-circle { position: absolute; right: 2px; bottom: 15px; width: 78px; height: 78px; border: 1px solid var(--plum); border-radius: 50%; }
.about-copy h2 { margin-bottom: 30px; }
.about-copy p { font-size: 1.05rem; }
.steps-section { background: white; }
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; padding: 0; margin: 60px 0 0; counter-reset: step; }
.steps-grid li { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.steps-grid li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--plum); color: white; font-weight: 800; }
.steps-grid h3 { margin: 54px 0 14px; }
.final-cta { padding-top: 50px; }
.cta-panel { min-height: 340px; padding: 58px 68px; border-radius: var(--radius-lg); background: linear-gradient(135deg,var(--plum),var(--plum-dark)); color: white; display: flex; align-items: center; justify-content: space-between; gap: 60px; overflow: hidden; }
.cta-panel h2 { max-width: 760px; margin: 0; }
.cta-panel::after { content: ''; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; position: absolute; right: -90px; bottom: -120px; }

/* Page heroes */
.page-hero { padding: 190px 0 105px; background: var(--cream); }
.page-hero-grid, .contact-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.page-hero h1 { max-width: 900px; margin-bottom: 28px; }
.quote-card { padding: 42px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.quote-card p { margin: 0; color: var(--plum); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.story-grid { display: grid; grid-template-columns: .3fr 1.2fr; gap: 80px; }
.story-index { border-top: 1px solid var(--line); padding-top: 20px; }
.story-index span { color: var(--rose); font-family: var(--serif); font-size: 2.2rem; }
.story-index p { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.story-content { max-width: 800px; }
.dark-section { color: white; background: var(--forest-dark); }
.dark-section p { color: rgba(255,255,255,.72); }
.dark-section .story-index { border-color: rgba(255,255,255,.25); }
.value-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-list article { min-height: 260px; padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); }
.value-list article:nth-child(2) { background: #f1e7ef; }
.value-list article:nth-child(3) { background: #e7f0ed; }
.value-list h3 { margin-top: 58px; }
.paths-band { color: white; background: var(--plum); }
.paths-band-grid { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.button-stack { display: flex; flex-wrap: wrap; gap: 12px; }

/* Services */
.service-hero { min-height: 720px; display: flex; align-items: center; }
.service-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.service-hero h1 { max-width: 760px; font-size: clamp(2.6rem, 4.9vw, 4.6rem); }
.service-symbol { position: relative; width: min(440px,100%); aspect-ratio: 1; margin-left: auto; border-radius: 50%; border: 1px solid rgba(82,32,100,.16); display: grid; place-items: center; }
.service-symbol > span { position: absolute; border-radius: 50%; border: 1px solid; }
.service-symbol > span:nth-child(1) { width: 82%; height: 82%; border-color: rgba(63,174,178,.45); transform: translate(-6%,4%); }
.service-symbol > span:nth-child(2) { width: 58%; height: 58%; border-color: rgba(201,47,104,.45); transform: translate(7%,-6%); }
.service-symbol > span:nth-child(3) { width: 32%; height: 32%; border-color: rgba(182,149,82,.7); }
.symbol-center { z-index: 2; font-family: var(--serif); font-size: 2rem; color: var(--plum); font-style: italic; }
.two-column { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.sticky-label { position: sticky; top: 150px; }
.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; }
.callout { margin-top: 42px; padding: 28px; border-left: 3px solid var(--gold); background: var(--cream); }
.callout strong { display: block; color: var(--plum); margin-bottom: 8px; }
.callout p { margin: 0; font-size: .95rem; }
.situations-section { background: var(--cream); }
.situation-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.situation-grid article { min-height: 230px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.situation-grid span { color: var(--rose); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.situation-grid p { margin-top: 70px; color: var(--ink); font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; }
.process-line { list-style: none; max-width: 850px; padding: 0; margin: 70px auto 0; }
.process-line li { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding-bottom: 48px; }
.process-line li:not(:last-child)::after { content: ''; position: absolute; left: 25px; top: 55px; bottom: 0; width: 1px; background: var(--line); }
.process-line li > span { z-index: 1; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--plum); color: white; font-weight: 800; }
.process-line h3 { margin: 4px 0 10px; }
.observer-section { padding-top: 20px; }
.observer-panel { position: relative; display: grid; grid-template-columns: .35fr 1.65fr; gap: 60px; align-items: center; padding: 70px; border: 1px solid rgba(182,149,82,.55); border-radius: var(--radius-lg); background: linear-gradient(135deg,#fff,#fbf5e8); }
.observer-icon { position: relative; width: 170px; height: 170px; }
.observer-icon span { position: absolute; border-radius: 50%; border: 1px solid var(--forest); }
.observer-icon span:first-child { inset: 0 35px 0 0; }
.observer-icon span:last-child { inset: 20px 0 20px 55px; border-color: var(--rose); }
.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; }
.accordion-item { border-top: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; padding: 25px 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 24px; text-align: left; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; }
.plus { font-family: var(--sans); color: var(--rose); transition: transform .2s; }
.accordion-item.is-open .plus { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel p { overflow: hidden; margin: 0; padding-right: 30px; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel p { padding-bottom: 24px; }

/* Purpose */
.purpose-hero { background: linear-gradient(140deg,#f7f0f5,#fff 60%,#edf4f1); }
.purpose-art { min-height: 430px; position: relative; border-radius: 50%; border: 1px solid rgba(82,32,100,.18); display: grid; place-items: center; }
.purpose-line { position: absolute; inset: 50%; width: 1px; height: 62%; background: var(--gold); transform: translateY(-50%); }
.purpose-art span { position: absolute; padding: 8px 15px; border-radius: 999px; background: white; box-shadow: 0 10px 28px rgba(53,19,63,.08); color: var(--plum); font-family: var(--serif); font-size: 1.15rem; }
.purpose-art span:nth-of-type(1) { top: 12%; left: 18%; }
.purpose-art span:nth-of-type(2) { top: 31%; right: 9%; }
.purpose-art span:nth-of-type(3) { bottom: 28%; left: 10%; }
.purpose-art span:nth-of-type(4) { bottom: 8%; right: 20%; }
.audience-section { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.audience-list article { display: grid; grid-template-columns: 18px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.audience-list span { width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--rose); }
.audience-list p { margin: 0; color: var(--ink); font-size: 1.08rem; }
.topic-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 980px; margin: 50px auto 0; }
.topic-cloud span { padding: 14px 22px; border: 1px solid rgba(82,32,100,.2); border-radius: 999px; color: var(--plum); background: white; font-family: var(--serif); font-size: 1.15rem; }
.mentorship-panel { padding: 65px; border-radius: var(--radius-lg); background: var(--forest-dark); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.mentorship-panel p { color: rgba(255,255,255,.75); font-size: 1.08rem; }
.purpose-cta { background: linear-gradient(135deg,var(--rose-dark),var(--plum)); }

/* Contact */
.contact-hero { background: linear-gradient(140deg,var(--cream),#fff); }
.contact-mini-card { padding: 38px; border-radius: 50% 50% 45% 55%; background: var(--forest); color: white; min-height: 270px; display: flex; flex-direction: column; justify-content: center; }
.contact-mini-card p { color: white; font-family: var(--serif); font-size: 1.8rem; line-height: 1.2; }
.contact-mini-card span { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-aside { position: sticky; top: 140px; }
.interest-cards { display: grid; gap: 12px; margin-top: 38px; }
.interest-cards button { width: 100%; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; text-align: left; transition: border .2s, transform .2s, background .2s; }
.interest-cards button:hover, .interest-cards button.is-selected { transform: translateX(5px); border-color: var(--rose); background: #fff8fb; }
.interest-cards strong, .interest-cards span { display: block; }
.interest-cards strong { color: var(--plum); margin-bottom: 5px; }
.interest-cards span { color: var(--muted); font-size: .88rem; }
.form-card { padding: 48px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.form-row { margin-bottom: 22px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; color: var(--ink); font-size: .86rem; font-weight: 750; margin-bottom: 8px; }
input,select,textarea { width: 100%; border: 1px solid rgba(44,39,48,.2); border-radius: 10px; background: var(--paper); padding: 14px 15px; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
input:focus,select:focus,textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(82,32,100,.1); }
[aria-invalid="true"] { border-color: #b42318; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 500; color: var(--muted); line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.consent a { color: var(--plum); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-submit { margin-top: 24px; }
.form-status { min-height: 26px; margin: 18px 0 0; font-size: .9rem; }
.form-status.is-error { color: #9f2f2a; }
.form-status.is-success { color: var(--forest-dark); }
.review-note { margin-top: 16px; font-size: .8rem; }

/* Links page */
.links-page { min-height: 100vh; background: radial-gradient(circle at 15% 20%,rgba(63,174,178,.16),transparent 32%),radial-gradient(circle at 85% 80%,rgba(201,47,104,.12),transparent 35%),var(--cream); }
.links-shell { min-height: 100vh; padding: 42px 20px; display: grid; place-items: center; }
.links-card { width: min(100%,520px); padding: 38px; border: 1px solid rgba(82,32,100,.12); border-radius: 36px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); backdrop-filter: blur(16px); text-align: center; }
.links-logo { width: min(100%,360px); margin: 0 auto 20px; }
.links-intro { max-width: 390px; margin: 0 auto 28px; }
.links-nav { display: grid; gap: 12px; }
.links-nav a { padding: 17px 20px; border: 1px solid var(--line); border-radius: 16px; text-align: left; background: var(--paper); transition: transform .2s,border .2s; }
.links-nav a:hover { transform: translateY(-2px); border-color: var(--rose); }
.links-nav .links-primary { color: white; background: var(--plum); border-color: var(--plum); }
.links-nav span,.links-nav small { display: block; }
.links-nav span { font-family: var(--serif); font-size: 1.2rem; }
.links-nav small { color: var(--muted); margin-top: 3px; }
.links-nav .links-primary small { color: rgba(255,255,255,.68); }
.instagram-link { display: inline-block; margin-top: 26px; color: var(--plum); font-weight: 750; }

/* Legal */
.compact-hero { padding-bottom: 70px; }
.legal-copy h2 { font-size: 1.8rem; margin: 38px 0 10px; }
.legal-copy p { font-size: 1.02rem; }

/* Footer */
.site-footer { padding: 75px 0 28px; background: #211827; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .7fr; gap: 80px; }
.footer-brand img { width: 250px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.58); }
.footer-title { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: #f4d9a5; }
.footer-links { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 30px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.7); }

@media (max-width: 1000px) {
  .hero-grid,.service-hero-grid,.page-hero-grid,.contact-hero-grid,.about-grid,.two-column,.faq-grid,.audience-grid,.contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 430px; }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .story-grid { grid-template-columns: .2fr 1fr; gap: 45px; }
  .situation-grid { grid-template-columns: repeat(2,1fr); }
  .observer-panel { grid-template-columns: 1fr; }
  .observer-icon { width: 130px; height: 130px; }
  .sticky-label,.contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .header-inner { min-height: 86px; position: relative; }
  .brand { width: 190px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled,
  .site-header.menu-active,
  .site-header.menu-active.is-scrolled {
    z-index: 1002;
    background: #fcfaf7;
    background-color: #fcfaf7;
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .main-nav {
    position: fixed;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    padding: 28px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    background: #fcfaf7;
    background-color: #fcfaf7;
    background-image: none;
    opacity: 1;
    box-shadow: inset 0 1px 0 var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    isolation: isolate;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .3s ease, visibility 0s linear .3s;
  }
  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform .3s ease, visibility 0s;
  }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .nav-link { display: block; padding: 18px 0; font-family: var(--serif); font-size: 1.65rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 22px; }
  .home-hero { padding-top: 145px; }
  .page-hero { padding-top: 150px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid,.value-list { grid-template-columns: 1fr; }
  .about-visual { min-height: 420px; }
  .experience-card { inset-right: 20px; }
  .mentorship-panel { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.75rem,14vw,4.2rem); }
  h2 { font-size: clamp(2.05rem,10vw,3.2rem); }
  .home-hero { min-height: auto; padding-bottom: 45px; }
  .hero-grid { gap: 35px; }
  .hero-art { min-height: 365px; }
  .hero-art-frame { width: 330px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .offers-section { padding-top: 20px; }
  .offer-card { padding: 32px; min-height: 410px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .pillar h3 { margin-top: 38px; }
  .about-grid { gap: 35px; }
  .about-visual { min-height: 350px; }
  .experience-card { min-height: 300px; padding: 42px; }
  .experience-card strong { font-size: 5rem; }
  .cta-panel,.paths-band-grid { padding: 38px 28px; flex-direction: column; align-items: flex-start; }
  .story-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-index { display: flex; gap: 15px; align-items: center; }
  .story-index p { margin: 0; }
  .service-hero { min-height: auto; }
  .service-symbol,.purpose-art { width: 300px; min-height: 300px; margin: 30px auto 0; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-grid article { min-height: 190px; }
  .situation-grid p { margin-top: 45px; }
  .observer-panel { padding: 38px 28px; }
  .process-line li { grid-template-columns: 58px 1fr; gap: 15px; }
  .faq-grid { gap: 35px; }
  .form-card { padding: 28px; }
  .form-two { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Professional photography */
.hero-photo-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: .82;
  overflow: visible;
  border-radius: 46% 54% 48% 52% / 40% 42% 58% 60%;
  background: #e8ece8;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(53,19,63,.34));
  border-radius: inherit;
  pointer-events: none;
}
.hero-photo-frame picture,
.hero-photo-frame .hero-photo {
  width: 100%;
  height: 100%;
}
.hero-photo {
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-photo-mark {
  display: block;
  position: absolute;
  z-index: 3;
  top: 20%;
  right: -22px;
  left: auto;
  width: clamp(80px, 8vw, 112px);
  height: auto;
  pointer-events: none;
  opacity: .92;
  filter: brightness(0) saturate(100%) invert(82%) sepia(59%) saturate(62%) hue-rotate(282deg) brightness(100%) contrast(93%);
}
.hero-photo-frame picture { display: block; width: 100%; height: 100%; overflow: hidden; border-radius: inherit; }
.hero-photo-caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 44px;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  color: white;
  text-align: center;
  white-space: nowrap;
  font-size: .6rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.about-photo {
  position: absolute;
  inset: 0 55px 0 0;
  width: calc(100% - 55px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 38% 62% 46% 54% / 40% 38% 62% 60%;
  box-shadow: var(--shadow);
}
.experience-badge {
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: 28px;
  width: 205px;
  min-height: 205px;
  padding: 34px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: var(--rose);
  box-shadow: 0 20px 50px rgba(159,33,79,.24);
}
.experience-badge strong {
  font-family: var(--serif);
  font-size: 4.7rem;
  line-height: .85;
}
.experience-badge span {
  margin-top: 18px;
  font-size: .8rem;
  font-weight: 750;
  line-height: 1.35;
}
.page-photo-card {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: .86;
  margin-left: auto;
  overflow: hidden;
  border-radius: 48% 52% 46% 54% / 38% 42% 58% 62%;
  box-shadow: var(--shadow);
}
.page-photo-card picture,
.page-photo-card img {
  width: 100%;
  height: 100%;
}
.page-photo-card img {
  object-fit: cover;
  object-position: 50% 18%;
}
.page-photo-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(53,19,63,.6));
}
.page-photo-card p {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 42px;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  color: white;
  text-align: center;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: .92rem;
  line-height: 1.18;
}
.service-photo-frame {
  position: relative;
  width: min(430px,100%);
  aspect-ratio: .82;
  margin-left: auto;
  overflow: hidden;
  border-radius: 46% 54% 49% 51% / 38% 40% 60% 62%;
  box-shadow: var(--shadow);
  background: #e8ece8;
}
.service-photo-frame picture,
.service-photo-frame img {
  width: 100%;
  height: 100%;
}
.service-photo-frame img {
  object-fit: cover;
}
.const-photo img { object-position: 50% 24%; }
.purpose-photo img { object-position: 50% 22%; }
.service-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(53,19,63,.55));
}
.service-photo-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 44px;
  width: max-content;
  max-width: calc(100% - 48px);
  color: white;
  text-align: center;
  white-space: nowrap;
  font-size: .6rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.links-portrait {
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 14px 35px rgba(53,19,63,.16);
}

@media (max-width: 1000px) {
  .page-photo-card,
  .service-photo-frame {
    margin: 35px auto 0;
  }
  .about-photo {
    inset-right: 40px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 680px) {
  .hero-photo-frame {
    width: min(100%, 345px);
  }
  .hero-photo-mark {
    top: 19%;
    right: -12px;
    left: auto;
    width: 84px;
    opacity: .88;
  }
  .hero-photo-caption {
    bottom: 34px;
    max-width: calc(100% - 32px);
    font-size: .5rem;
    letter-spacing: .08em;
  }
  .about-photo {
    inset: 0 26px 0 0;
    width: calc(100% - 26px);
  }
  .experience-badge {
    left: -5px;
    bottom: 12px;
    width: 155px;
    min-height: 155px;
    padding: 24px;
  }
  .experience-badge strong {
    font-size: 3.5rem;
  }
  .experience-badge span {
    margin-top: 12px;
    font-size: .68rem;
  }
  .page-photo-card,
  .service-photo-frame {
    width: min(100%, 350px);
  }
  .page-photo-card p {
    bottom: 34px;
    max-width: calc(100% - 28px);
    font-size: .76rem;
    line-height: 1.16;
  }
  .service-photo-label {
    bottom: 34px;
    max-width: calc(100% - 32px);
    font-size: .5rem;
    letter-spacing: .08em;
  }
}

/* V2 — positioning around development-human trajectory and processes of consciousness */
.v2-hero .hero-copy h1 { max-width: 760px; font-size: clamp(2.7rem, 5.4vw, 4.9rem); }
.v2-hero .hero-lead { max-width: 760px; }
.v2-pillars .pillar h3 { font-size: clamp(1.55rem, 2vw, 2rem); line-height: 1.12; margin-top: 58px; }
.page-hero-about h1 { max-width: 700px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.contact-hero h1 { max-width: 700px; font-size: clamp(2.5rem, 4.8vw, 4.4rem); }

.authority-section { background: #fff; }
.authority-section.about-authority { background: var(--cream); }
.authority-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.authority-card { min-height: 330px; padding: 40px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.authority-card:nth-child(2) { background: #f1e7ef; }
.authority-card:nth-child(3) { background: #e7f0ed; }
.authority-card > span { color: var(--rose); font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.authority-card h3 { margin: auto 0 16px; font-size: clamp(1.75rem,2.4vw,2.35rem); }
.authority-card p { margin-bottom: 0; }
.authority-badge { background: var(--forest); }
.authority-badge strong { font-size: 3.45rem; line-height: .9; }
.authority-badge span { max-width: 140px; }
.context-copy { padding-left: 18px; border-left: 2px solid var(--gold); font-size: .94rem !important; }
.professional-section { padding-top: 40px; background: var(--cream); }
.professional-panel { padding: 64px; border-radius: var(--radius-lg); background: var(--forest-dark); color: white; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.professional-panel h2 { margin-bottom: 0; }
.professional-panel p { color: rgba(255,255,255,.74); font-size: 1.08rem; }
.text-link-light { color: white; border-color: rgba(255,255,255,.35); }
.constellation-essence { background: var(--cream); }
.essence-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.essence-grid article { min-height: 250px; padding: 34px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); }
.essence-grid article:nth-child(2) { background: #fff7fa; }
.essence-grid article:nth-child(3) { background: #f6f0e4; }
.essence-grid article:nth-child(4) { background: #edf4f1; }
.essence-grid h3 { margin: 58px 0 14px; font-size: 1.8rem; }
.communication-context { padding-top: 40px; background: var(--paper); }
.context-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 52px 58px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.context-panel h2 { font-size: clamp(2rem,3.4vw,3.3rem); margin-bottom: 0; }
.context-panel > p { margin: 0; font-size: 1.06rem; }

@media (max-width: 1000px) {
  .authority-grid { grid-template-columns: 1fr; }
  .authority-card { min-height: 240px; }
  .professional-panel,.context-panel { grid-template-columns: 1fr; gap: 28px; }
  .essence-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .v2-hero .hero-copy h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .page-hero-about h1 { font-size: clamp(2.35rem, 10.5vw, 3.45rem); }
  .contact-hero h1 { font-size: clamp(2.2rem, 9.5vw, 3.2rem); }
  .service-hero h1 { font-size: clamp(2.25rem, 9.5vw, 3.3rem); }
  .authority-card { min-height: 220px; padding: 30px; }
  .professional-panel,.context-panel { padding: 38px 28px; }
  .essence-grid { grid-template-columns: 1fr; }
  .essence-grid article { min-height: 210px; }
  .authority-badge strong { font-size: 2.7rem; }
}


