:root {
--emerald-deep: #082a20;
--emerald: #0c4030;
--emerald-mid: #11583f;
--emerald-bright: #1c7a58;
--gold: #c6a15b;
--gold-light: #e0c489;
--gold-deep: #a07e3c;
--cream: #f6f0e4;
--paper: #fcf9f2;
--marble: #ece5d6;
--ink: #1c1c18;
--ink-soft: #4a4a42;
--line: rgba(12, 64, 48, 0.14);
--shadow-lg: 0 40px 80px -30px rgba(8, 42, 32, 0.45);
--shadow-md: 0 24px 50px -24px rgba(8, 42, 32, 0.35);
--r: 18px;
--maxw: 1200px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: 'Hanken Grotesk', sans-serif;
background: var(--paper);
color: var(--ink);
line-height: 1.65;
font-size: 17px;
overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
font-family: 'Fraunces', serif;
line-height: 1.04;
font-weight: 600;
letter-spacing: -0.01em;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
.wrap {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 28px;
}
.eyebrow {
font-family: 'Hanken Grotesk', sans-serif;
font-weight: 700;
font-size: 0.74rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold-deep);
display: inline-flex;
align-items: center;
gap: 0.6em;
}
.eyebrow::before {
content: '';
width: 30px;
height: 1.5px;
background: var(--gold);
display: inline-block;
}
.eyebrow.center::after {
content: '';
width: 30px;
height: 1.5px;
background: var(--gold);
display: inline-block;
}
.eyebrow.center {
justify-content: center;
}

/* Buttons */
.btn {
display: inline-flex;
align-items: center;
gap: 0.6em;
font-family: 'Hanken Grotesk', sans-serif;
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.01em;
padding: 16px 30px;
border-radius: 100px;
cursor: pointer;
border: none;
transition:
transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
box-shadow 0.25s,
background 0.25s;
position: relative;
}
.btn-gold {
background: linear-gradient(135deg, var(--gold-light), var(--gold));
color: var(--emerald-deep);
box-shadow: 0 14px 30px -12px rgba(198, 161, 91, 0.7);
}
.btn-gold:hover {
transform: translateY(-3px);
box-shadow: 0 22px 40px -14px rgba(198, 161, 91, 0.85);
}
.btn-ghost {
background: transparent;
color: var(--cream);
border: 1.5px solid rgba(224, 196, 137, 0.45);
}
.btn-ghost:hover {
border-color: var(--gold-light);
background: rgba(224, 196, 137, 0.08);
}
.btn-dark {
background: var(--emerald);
color: var(--cream);
}
.btn-dark:hover {
transform: translateY(-3px);
background: var(--emerald-mid);
box-shadow: var(--shadow-md);
}
.btn .arr {
transition: transform 0.25s;
}
.btn:hover .arr {
transform: translateX(4px);
}

/* Announcement bar */
.announce {
background: var(--emerald-deep);
color: var(--gold-light);
text-align: center;
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.04em;
padding: 9px 16px;
position: relative;
z-index: 60;
}
.announce strong {
color: #fff;
}

/* Nav */
header.nav {
position: sticky;
top: 0;
z-index: 50;
background: rgba(252, 249, 242, 0.82);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--line);
transition: box-shadow 0.3s;
}
header.nav.scrolled {
box-shadow: 0 10px 30px -18px rgba(8, 42, 32, 0.3);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 74px;
}
.brand {
display: flex;
align-items: center;
font-family: 'Fraunces', serif;
font-weight: 600;
font-size: 1.28rem;
letter-spacing: -0.02em;
color: var(--emerald);
}
.brand .mark {
width: 50px;
height: 50px;
flex-shrink: 0;
}
.nav-links {
display: flex;
align-items: center;
gap: 34px;
}
.nav-link {
font-weight: 600;
font-size: 0.95rem;
color: var(--ink-soft);
transition: color 0.2s;
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 2px;
background: var(--gold);
transition: width 0.25s;
}
.nav-link:hover {
color: var(--emerald);
}
.nav-link:hover::after {
width: 100%;
}
.nav-cta {
padding: 11px 22px;
font-size: 0.88rem;
}
.burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.burger span {
width: 24px;
height: 2px;
background: var(--emerald);
border-radius: 2px;
transition: 0.3s;
}

/* Hero */
.hero {
position: relative;
background: var(--emerald-deep);
color: var(--cream);
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(900px 500px at 88% 8%, rgba(28, 122, 88, 0.45), transparent 60%), radial-gradient(700px 600px at 5% 95%, rgba(198, 161, 91, 0.16), transparent 55%);
pointer-events: none;
}
.hero-grid {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
gap: 40px;
align-items: center;
position: relative;
}
.hero h1 {
font-size: clamp(2.7rem, 6vw, 4.6rem);
font-weight: 600;
color: #fff;
margin: 22px 0 0;
}
.hero h1 em {
font-style: italic;
color: var(--gold-light);
font-weight: 500;
}
.hero .lede {
font-size: 1.18rem;
color: rgba(246, 240, 228, 0.85);
margin: 24px 0 34px;
max-width: 33ch;
}
.hero-ctas {
display: flex;
flex-wrap: wrap;
gap: 14px;
align-items: center;
margin-top: 20px;
}
.hero-trust {
display: flex;
gap: 30px;
margin-top: 42px;
flex-wrap: wrap;
}
.hero-trust .t {
display: flex;
flex-direction: column;
}
.hero-trust .n {
font-family: 'Fraunces', serif;
font-size: 1.9rem;
font-weight: 600;
color: var(--gold-light);
line-height: 1;
}
.hero-trust .l {
font-size: 0.8rem;
color: rgba(246, 240, 228, 0.7);
letter-spacing: 0.04em;
margin-top: 6px;
text-transform: uppercase;
font-weight: 600;
}
.hero-photo {
position: relative;
}
.hero-photo .frame {
border-radius: 20px;
overflow: hidden;
position: relative;
box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.6);
border: 1px solid rgba(224, 196, 137, 0.25);
}
.hero-photo img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 1152/928;
}
.hero-photo .badge {
position: absolute;
left: -22px;
bottom: 34px;
background: var(--paper);
color: var(--emerald);
padding: 16px 22px;
border-radius: 14px;
box-shadow: var(--shadow-md);
max-width: 230px;
border-left: 4px solid var(--gold);
}
.hero-photo .badge .bt {
font-family: 'Fraunces', serif;
font-weight: 600;
font-size: 1.05rem;
line-height: 1.15;
}
.hero-photo .badge .bs {
font-size: 0.8rem;
color: var(--ink-soft);
margin-top: 3px;
}

/* Marquee / trust strip */
.strip {
background: var(--cream);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
padding: 22px;
}
.strip-inner {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px 48px;
text-align: center;
}
.strip-item {
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
color: var(--emerald);
font-size: 0.92rem;
}
.strip-item svg {
flex-shrink: 0;
}

/* Section base */
section {
padding: 96px 0;
}
.sec-head {
max-width: 680px;
margin-bottom: 54px;
}
.sec-head.center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.sec-head h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin: 16px 0 18px;
}
.sec-head p {
font-size: 1.12rem;
color: var(--ink-soft);
}

/* About */
.about {
background: var(--paper);
}
.about-grid {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 60px;
align-items: center;
}
.about-photo {
position: relative;
}
.about-photo .frame {
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
border: 1px solid var(--line);
}
.about-photo img {
width: 100%;
aspect-ratio: 1000/1249;
object-fit: cover;
}
.about-photo .ribbon {
position: absolute;
right: -18px;
bottom: 40px;
background: var(--emerald);
color: var(--gold-light);
font-family: 'Fraunces', serif;
font-style: italic;
padding: 14px 22px;
border-radius: 12px;
box-shadow: var(--shadow-md);
font-size: 1.05rem;
}
.about h2 {
font-size: clamp(2rem, 4vw, 2.9rem);
margin: 16px 0 20px;
}
.about p {
color: var(--ink-soft);
margin-bottom: 18px;
font-size: 1.06rem;
}
.about .sig {
font-family: 'Fraunces', serif;
font-style: italic;
font-size: 1.3rem;
color: var(--emerald);
margin-top: 8px;
}
.pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
margin-top: 34px;
}
.pillar {
background: var(--cream);
border-radius: 14px;
padding: 22px;
border: 1px solid var(--line);
}
.pillar .pi {
width: 42px;
height: 42px;
border-radius: 11px;
background: var(--emerald);
display: grid;
place-items: center;
color: var(--gold-light);
margin-bottom: 14px;
}
.pillar h4 {
font-size: 1.08rem;
margin-bottom: 6px;
color: var(--emerald);
}
.pillar p {
font-size: 0.9rem;
margin: 0;
}

/* Programs */
.programs {
background: var(--emerald-deep);
color: var(--cream);
position: relative;
overflow: hidden;
}
.programs::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(800px 500px at 80% 0%, rgba(28, 122, 88, 0.4), transparent 60%);
pointer-events: none;
}
.programs .sec-head h2 {
color: #fff;
}
.programs .sec-head p {
color: rgba(246, 240, 228, 0.78);
}
.prog-card {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
border: 1px solid rgba(224, 196, 137, 0.22);
border-radius: 24px;
overflow: hidden;
margin-bottom: 30px;
position: relative;
}
.prog-top {
display: grid;
grid-template-columns: 1fr;
gap: 0;
}
.prog-card.has-img .prog-top {
grid-template-columns: 1.4fr 0.9fr;
}
.prog-body {
padding: 44px;
}
.prog-tag {
display: inline-block;
font-size: 0.74rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--emerald-deep);
background: var(--gold-light);
padding: 6px 13px;
border-radius: 100px;
margin-bottom: 18px;
}
.prog-card h3 {
font-size: clamp(1.7rem, 3vw, 2.4rem);
color: #fff;
margin-bottom: 14px;
}
.prog-card .pd {
color: rgba(246, 240, 228, 0.82);
font-size: 1.05rem;
margin-bottom: 26px;
max-width: 60ch;
}
.acc-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px 28px;
margin-bottom: 30px;
}
.acc-item {
display: flex;
gap: 13px;
align-items: flex-start;
}
.acc-item .ck {
flex-shrink: 0;
width: 24px;
height: 24px;
border-radius: 7px;
background: rgba(28, 122, 88, 0.3);
border: 1px solid rgba(224, 196, 137, 0.4);
display: grid;
place-items: center;
color: var(--gold-light);
margin-top: 2px;
}
.acc-item b {
color: #fff;
font-weight: 700;
display: block;
font-size: 0.98rem;
}
.acc-item span {
color: rgba(246, 240, 228, 0.7);
font-size: 0.86rem;
line-height: 1.5;
}
.prog-foot {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 22px;
padding-top: 8px;
}
.price-tag {
display: flex;
align-items: baseline;
gap: 8px;
}
.price-tag .amt {
font-family: 'Fraunces', serif;
font-size: 2.6rem;
font-weight: 600;
color: var(--gold-light);
}
.price-tag .cur {
font-family: 'Fraunces', serif;
font-size: 1.3rem;
color: var(--gold-light);
}
.price-tag .note {
font-size: 0.82rem;
color: rgba(246, 240, 228, 0.65);
}
.prog-img {
position: relative;
min-height: 340px;
}
.prog-img img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.prog-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(8, 42, 32, 0.6), transparent 30%);
}
.limited {
font-size: 0.82rem;
color: var(--gold-light);
font-weight: 600;
}

/* Community / network */
.network {
background: var(--cream);
}
.net-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 22px;
}
.net-card {
background: var(--paper);
border: 1px solid var(--line);
border-radius: 18px;
padding: 30px;
transition:
transform 0.3s,
box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.net-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--gold), var(--gold-light));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s;
}
.net-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}
.net-card:hover::before {
transform: scaleX(1);
}
.net-card .ni {
width: 50px;
height: 50px;
border-radius: 13px;
background: var(--emerald);
display: grid;
place-items: center;
color: var(--gold-light);
margin-bottom: 18px;
}
.net-card h4 {
font-size: 1.22rem;
color: var(--emerald);
margin-bottom: 10px;
}
.net-card p {
font-size: 0.94rem;
color: var(--ink-soft);
margin: 0;
}

/* Bonuses */
.bonus {
background: var(--paper);
}
.bonus-band {
background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
border-radius: 26px;
padding: 54px;
color: var(--cream);
position: relative;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.bonus-band::before {
content: '';
position: absolute;
right: -80px;
top: -80px;
width: 300px;
height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(198, 161, 91, 0.25), transparent 70%);
}
.bonus-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 48px;
align-items: center;
position: relative;
}
.bonus h2 {
color: #fff;
font-size: clamp(1.9rem, 3.5vw, 2.7rem);
margin-bottom: 24px;
}
.bonus-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}
.bonus-list li {
display: flex;
gap: 14px;
align-items: flex-start;
font-size: 1.05rem;
}
.bonus-list .ck {
flex-shrink: 0;
width: 26px;
height: 26px;
border-radius: 8px;
background: var(--gold);
color: var(--emerald-deep);
display: grid;
place-items: center;
font-weight: 900;
margin-top: 2px;
}
.bonus-cta {
text-align: center;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(224, 196, 137, 0.25);
border-radius: 20px;
padding: 38px;
}
.bonus-cta .big {
font-family: 'Fraunces', serif;
font-size: 3rem;
font-weight: 600;
color: var(--gold-light);
line-height: 1;
}
.bonus-cta .sm {
font-size: 0.9rem;
color: rgba(246, 240, 228, 0.75);
margin: 8px 0 22px;
}

/* Choice / comparison */
.choice {
background: var(--cream);
}
.choice-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 26px;
}
.choice-card {
border-radius: 22px;
padding: 42px;
position: relative;
}
.choice-a {
background: var(--paper);
border: 1.5px solid var(--line);
}
.choice-b {
background: linear-gradient(160deg, var(--emerald), var(--emerald-deep));
color: var(--cream);
box-shadow: var(--shadow-lg);
}
.choice-card .opt {
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--gold-deep);
}
.choice-b .opt {
color: var(--gold-light);
}
.choice-card h3 {
font-size: 1.9rem;
margin: 10px 0 22px;
}
.choice-a h3 {
color: var(--ink-soft);
}
.choice-b h3 {
color: #fff;
}
.choice-card ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 14px;
margin-bottom: 26px;
}
.choice-card li {
display: flex;
gap: 12px;
align-items: flex-start;
font-size: 1rem;
}
.choice-a li {
color: var(--ink-soft);
}
.choice-b li {
color: rgba(246, 240, 228, 0.9);
}
.choice-card li .ic {
flex-shrink: 0;
margin-top: 3px;
}
.choice-a .ic {
color: #b9543f;
}
.choice-b .ic {
color: var(--gold-light);
}

/* Testimonials */
.testi {
background: var(--emerald-deep);
color: var(--cream);
position: relative;
overflow: hidden;
}
.testi::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(700px 400px at 15% 10%, rgba(28, 122, 88, 0.35), transparent 60%);
pointer-events: none;
}
.testi .sec-head h2 {
color: #fff;
}
.testi .sec-head p {
color: rgba(246, 240, 228, 0.78);
}
.testi-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 22px;
}
.testi-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(224, 196, 137, 0.2);
border-radius: 18px;
padding: 32px;
}
.stars {
color: var(--gold-light);
font-size: 1rem;
letter-spacing: 2px;
margin-bottom: 14px;
}
.testi-card p {
font-size: 1.02rem;
color: rgba(246, 240, 228, 0.92);
font-style: italic;
margin-bottom: 20px;
font-family: 'Fraunces', serif;
font-weight: 400;
}
.testi-who {
display: flex;
align-items: center;
gap: 13px;
}
.testi-who .av {
width: 44px;
height: 44px;
border-radius: 50%;
background: linear-gradient(135deg, var(--emerald-bright), var(--emerald-mid));
display: grid;
place-items: center;
color: var(--gold-light);
font-weight: 800;
font-family: 'Fraunces', serif;
}
.testi-who b {
display: block;
color: #fff;
font-size: 0.95rem;
}
.testi-who span {
font-size: 0.82rem;
color: rgba(246, 240, 228, 0.6);
}

/* FAQ */
.faq {
background: var(--paper);
}
.faq-wrap {
max-width: 820px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid var(--line);
}
.faq-q {
width: 100%;
background: none;
border: none;
cursor: pointer;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
padding: 26px 4px;
font-family: 'Fraunces', serif;
font-size: 1.22rem;
font-weight: 600;
color: var(--emerald);
}
.faq-q .pm {
flex-shrink: 0;
width: 30px;
height: 30px;
border-radius: 50%;
border: 1.5px solid var(--gold);
display: grid;
place-items: center;
color: var(--gold-deep);
transition: transform 0.3s;
font-size: 1.3rem;
line-height: 1;
}
.faq-item.open .pm {
transform: rotate(45deg);
background: var(--gold);
color: #fff;
border-color: var(--gold);
}
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.faq-a p {
padding: 0 4px 26px;
color: var(--ink-soft);
font-size: 1.04rem;
}

/* Final CTA */
.final {
background: var(--cream);
text-align: center;
}
.final-card {
background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
border-radius: 30px;
padding: 80px 40px;
color: var(--cream);
position: relative;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.final-card::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(600px 400px at 50% -10%, rgba(198, 161, 91, 0.25), transparent 60%);
pointer-events: none;
}
.final-card h2 {
font-size: clamp(2.2rem, 5vw, 3.6rem);
color: #fff;
margin-bottom: 20px;
position: relative;
}
.final-card h2 em {
font-style: italic;
color: var(--gold-light);
}
.final-card p {
font-size: 1.18rem;
color: rgba(246, 240, 228, 0.85);
max-width: 48ch;
margin: 0 auto 34px;
position: relative;
}
.final-card .btn {
position: relative;
}
.guarantee {
margin-top: 20px;
font-size: 0.86rem;
color: rgba(246, 240, 228, 0.7);
position: relative;
}

/* Footer */
footer {
background: var(--emerald-deep);
color: rgba(246, 240, 228, 0.8);
padding: 64px 0 30px;
}
.foot-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr;
gap: 40px;
margin-bottom: 44px;
}
footer .brand {
color: #fff;
margin-bottom: 16px;
}
.foot-about {
font-size: 0.95rem;
max-width: 38ch;
color: rgba(246, 240, 228, 0.65);
}
footer h5 {
font-family: 'Hanken Grotesk';
font-size: 0.8rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--gold-light);
margin-bottom: 18px;
font-weight: 700;
}
footer ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 11px;
}
footer ul a {
font-size: 0.92rem;
color: rgba(246, 240, 228, 0.72);
transition: color 0.2s;
}
footer ul a:hover {
color: var(--gold-light);
}
.foot-bottom {
border-top: 1px solid rgba(224, 196, 137, 0.18);
padding-top: 24px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 14px;
font-size: 0.82rem;
color: rgba(246, 240, 228, 0.55);
}
.disclaimer {
font-size: 0.76rem;
color: rgba(246, 240, 228, 0.45);
max-width: var(--maxw);
margin: 22px auto 0;
padding: 0 28px;
line-height: 1.6;
}

/* reveal animation */
.reveal {
opacity: 0;
transform: translateY(28px);
transition:
opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
opacity: 1;
transform: none;
}

/* Responsive */
@media (max-width: 980px) {
.hero-grid,
.about-grid,
.bonus-grid,
.choice-grid {
grid-template-columns: 1fr;
gap: 42px;
}
.prog-card.has-img .prog-top {
grid-template-columns: 1fr;
}
.prog-img {
min-height: 240px;
order: -1;
}
.prog-img::after {
background: linear-gradient(0deg, rgba(8, 42, 32, 0.6), transparent 40%);
}
.about-photo {
max-width: 440px;
margin: 0 auto;
}
.hero-photo {
max-width: 480px;
margin: 0 auto;
width: 100%;
}
}
@media (max-width: 720px) {
body {
font-size: 16px;
}
section {
padding: 68px 0;
}
.nav-links {
position: fixed;
inset: 74px 0 auto 0;
background: var(--paper);
flex-direction: column;
gap: 0;
padding: 10px 0;
border-bottom: 1px solid var(--line);
box-shadow: var(--shadow-md);
transform: translateY(-130%);
transition: transform 0.35s;
}
.nav-links.open {
transform: none;
}
.nav-links a {
padding: 15px 28px;
width: 100%;
font-size: 1.05rem;
}
.nav-links a::after {
display: none;
}
.nav-cta {
display: none;
}
.burger {
display: flex;
}
.acc-grid {
grid-template-columns: 1fr;
}
.pillars {
grid-template-columns: 1fr;
}
.prog-body,
.bonus-band,
.choice-card,
.net-card {
padding: 30px;
}
.final-card {
padding: 54px 24px;
}
.foot-grid {
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.hero-photo .badge {
left: 0;
}
.prog-img {
min-height: 240px;
order: -1;
}
.prog-img img {
position: static;
height: auto;
}
}
@media (max-width: 480px) {
.wrap {
padding: 0 20px;
}
.foot-grid {
grid-template-columns: 1fr;
}
.hero-trust {
gap: 20px;
}
}

/* Page hero */
.page-hero {
background: var(--emerald-deep);
color: var(--cream);
position: relative;
overflow: hidden;
padding: 80px 0 90px;
}
.page-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(800px 500px at 85% 10%, rgba(28, 122, 88, 0.4), transparent 60%), radial-gradient(600px 500px at 5% 90%, rgba(198, 161, 91, 0.14), transparent 55%);
pointer-events: none;
}
.page-hero-inner {
position: relative;
max-width: 700px;
}
.page-hero .eyebrow {
color: var(--gold-light);
}
.page-hero .eyebrow::before {
background: var(--gold-light);
}
.page-hero h1 {
font-size: clamp(2.6rem, 5vw, 4rem);
color: #fff;
margin: 18px 0 0;
}
.page-hero h1 em {
font-style: italic;
color: var(--gold-light);
font-weight: 500;
}
.page-hero .lede {
font-size: 1.15rem;
color: rgba(246, 240, 228, 0.82);
margin-top: 20px;
max-width: 50ch;
}

/* Breadcrumb */
.breadcrumb {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
color: rgba(246, 240, 228, 0.55);
margin-bottom: 28px;
flex-wrap: wrap;
}
.breadcrumb a {
color: rgba(246, 240, 228, 0.55);
transition: color 0.2s;
}
.breadcrumb a:hover {
color: var(--gold-light);
}
.breadcrumb .sep {
color: rgba(246, 240, 228, 0.3);
}

/* Contact section */
.contact-section {
padding: 96px 0;
background: var(--paper);
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 64px;
align-items: start;
}

/* Contact info cards */
.contact-info {
display: flex;
flex-direction: column;
gap: 24px;
}
.info-card {
background: var(--cream);
border: 1px solid var(--line);
border-radius: 20px;
padding: 28px;
display: flex;
gap: 18px;
align-items: flex-start;
transition:
    transform 0.25s,
    box-shadow 0.25s;
position: relative;
overflow: hidden;
}
.info-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--gold), var(--gold-light));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s;
}
.info-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
.info-card:hover::before {
transform: scaleX(1);
}
.info-icon {
width: 50px;
height: 50px;
border-radius: 13px;
flex-shrink: 0;
background: linear-gradient(140deg, var(--emerald-mid), var(--emerald-deep));
display: grid;
place-items: center;
color: var(--gold-light);
box-shadow: inset 0 0 0 1.5px rgba(224, 196, 137, 0.25);
}
.info-card h4 {
font-size: 1.05rem;
color: var(--emerald);
margin-bottom: 5px;
}
.info-card p {
font-size: 0.94rem;
color: var(--ink-soft);
margin: 0;
line-height: 1.55;
}
.info-card a {
color: var(--emerald-bright);
font-weight: 600;
transition: color 0.2s;
}
.info-card a:hover {
color: var(--emerald);
}

/* Trust block under info */
.trust-block {
background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
border-radius: 22px;
padding: 32px;
color: var(--cream);
margin-top: 8px;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.trust-block::before {
content: '';
position: absolute;
right: -50px;
top: -50px;
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(198, 161, 91, 0.2), transparent 70%);
}
.trust-block h4 {
font-size: 1.2rem;
color: #fff;
margin-bottom: 16px;
position: relative;
}
.trust-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
position: relative;
}
.trust-list li {
display: flex;
gap: 12px;
align-items: flex-start;
font-size: 0.94rem;
color: rgba(246, 240, 228, 0.88);
}
.trust-list .ck {
flex-shrink: 0;
width: 22px;
height: 22px;
border-radius: 6px;
background: var(--gold);
color: var(--emerald-deep);
display: grid;
place-items: center;
font-weight: 900;
font-size: 0.7rem;
margin-top: 2px;
}

/* Contact form */
.form-card {
background: var(--paper);
border: 1.5px solid var(--line);
border-radius: 26px;
padding: 48px;
box-shadow: var(--shadow-md);
}
.form-card h2 {
font-size: clamp(1.7rem, 3vw, 2.3rem);
color: var(--emerald);
margin-bottom: 8px;
}
.form-card .sub {
font-size: 1.02rem;
color: var(--ink-soft);
margin-bottom: 34px;
}

.form-group {
margin-bottom: 22px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
margin-bottom: 22px;
}
label {
display: block;
font-weight: 700;
font-size: 0.86rem;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--emerald);
margin-bottom: 8px;
}
input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
width: 100%;
background: var(--cream);
border: 1.5px solid var(--line);
border-radius: 12px;
padding: 14px 18px;
font-family: 'Hanken Grotesk', sans-serif;
font-size: 0.97rem;
color: var(--ink);
transition:
    border-color 0.2s,
    box-shadow 0.2s;
outline: none;
appearance: none;
-webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
border-color: var(--emerald-bright);
box-shadow: 0 0 0 3px rgba(28, 122, 88, 0.12);
}
input::placeholder,
textarea::placeholder {
color: rgba(74, 74, 66, 0.45);
}
textarea {
resize: vertical;
min-height: 130px;
line-height: 1.6;
}
select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230c4030' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
padding-right: 46px;
cursor: pointer;
}

.radio-group {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 4px;
}
.radio-opt {
display: flex;
align-items: center;
gap: 12px;
cursor: pointer;
background: var(--cream);
border: 1.5px solid var(--line);
border-radius: 12px;
padding: 13px 18px;
transition:
    border-color 0.2s,
    background 0.2s;
}
.radio-opt:has(input:checked) {
border-color: var(--emerald-bright);
background: rgba(28, 122, 88, 0.06);
}
.radio-opt input[type='radio'] {
width: 18px;
height: 18px;
accent-color: var(--emerald);
flex-shrink: 0;
cursor: pointer;
}
.radio-opt span {
font-size: 0.96rem;
font-weight: 600;
color: var(--ink);
pointer-events: none;
}
.radio-opt .ro-sub {
font-size: 0.82rem;
color: var(--ink-soft);
font-weight: 400;
display: block;
margin-top: 1px;
}

.consent-row {
display: flex;
gap: 12px;
align-items: flex-start;
margin-top: 6px;
}
.consent-row input[type='checkbox'] {
width: 18px;
height: 18px;
accent-color: var(--emerald);
flex-shrink: 0;
margin-top: 3px;
cursor: pointer;
}
.consent-row span {
font-size: 0.88rem;
color: var(--ink-soft);
line-height: 1.55;
}
.consent-row a {
color: var(--emerald-bright);
font-weight: 600;
}
.consent-row a:hover {
text-decoration: underline;
}

.form-submit {
margin-top: 30px;
}
.btn-submit {
width: 100%;
justify-content: center;
padding: 18px 30px;
font-size: 1.02rem;
background: linear-gradient(135deg, var(--gold-light), var(--gold));
color: var(--emerald-deep);
border-radius: 100px;
font-weight: 800;
border: none;
cursor: pointer;
box-shadow: 0 14px 30px -12px rgba(198, 161, 91, 0.7);
transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s;
font-family: 'Hanken Grotesk', sans-serif;
letter-spacing: 0.01em;
display: flex;
align-items: center;
gap: 0.6em;
}
.btn-submit:hover {
transform: translateY(-3px);
box-shadow: 0 22px 40px -14px rgba(198, 161, 91, 0.85);
}
.form-note {
font-size: 0.82rem;
color: var(--ink-soft);
text-align: center;
margin-top: 14px;
}
.form-note a {
color: var(--emerald-bright);
font-weight: 600;
}

/* Success state */
.form-success {
display: none;
text-align: center;
padding: 40px 0;
}
.form-success.show {
display: block;
}
.success-icon {
width: 72px;
height: 72px;
border-radius: 50%;
background: linear-gradient(135deg, var(--emerald-bright), var(--emerald));
display: grid;
place-items: center;
margin: 0 auto 22px;
color: var(--gold-light);
font-size: 1.8rem;
box-shadow: 0 14px 30px -10px rgba(8, 42, 32, 0.35);
}
.form-success h3 {
font-size: 1.9rem;
color: var(--emerald);
margin-bottom: 12px;
}
.form-success p {
color: var(--ink-soft);
font-size: 1.05rem;
max-width: 38ch;
margin: 0 auto;
}

/* FAQ mini */
.faq-mini {
padding: 80px 0;
background: var(--cream);
}
.faq-mini .sec-head {
max-width: 600px;
margin-bottom: 44px;
}
.faq-mini .sec-head h2 {
font-size: clamp(1.9rem, 3.5vw, 2.6rem);
margin: 16px 0 14px;
}
.faq-mini .sec-head p {
font-size: 1.05rem;
color: var(--ink-soft);
}
.faq-wrap {
max-width: 820px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid var(--line);
}
.faq-q {
width: 100%;
background: none;
border: none;
cursor: pointer;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
padding: 24px 4px;
font-family: 'Fraunces', serif;
font-size: 1.18rem;
font-weight: 600;
color: var(--emerald);
}
.faq-q .pm {
flex-shrink: 0;
width: 30px;
height: 30px;
border-radius: 50%;
border: 1.5px solid var(--gold);
display: grid;
place-items: center;
color: var(--gold-deep);
transition: transform 0.3s;
font-size: 1.3rem;
line-height: 1;
}
.faq-item.open .pm {
transform: rotate(45deg);
background: var(--gold);
color: #fff;
border-color: var(--gold);
}
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.faq-a p {
padding: 0 4px 24px;
color: var(--ink-soft);
font-size: 1.02rem;
}

/* reveal */
.reveal {
opacity: 0;
transform: translateY(28px);
transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
opacity: 1;
transform: none;
}

/* Responsive */
@media (max-width: 900px) {
.contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-card {
    padding: 36px 28px;
}
}
@media (max-width: 720px) {
body {
    font-size: 16px;
}
.burger {
    display: flex;
}
.form-row {
    grid-template-columns: 1fr;
}
.page-hero {
    padding: 60px 0 70px;
}
}
@media (max-width: 480px) {
.wrap {
    padding: 0 20px;
}
.form-card {
    padding: 28px 20px;
}
}

/* Page hero */
.page-hero {
background: var(--emerald-deep);
color: var(--cream);
position: relative;
overflow: hidden;
padding: 70px 0 80px;
}
.page-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(800px 500px at 85% 10%, rgba(28, 122, 88, 0.4), transparent 60%), radial-gradient(600px 500px at 5% 90%, rgba(198, 161, 91, 0.14), transparent 55%);
pointer-events: none;
}
.page-hero-inner {
position: relative;
max-width: 760px;
}
.page-hero .eyebrow {
color: var(--gold-light);
}
.page-hero .eyebrow::before {
background: var(--gold-light);
}
.page-hero h1 {
font-size: clamp(2.2rem, 4.5vw, 3.4rem);
color: #fff;
margin: 18px 0 0;
}
.page-hero h1 em {
font-style: italic;
color: var(--gold-light);
font-weight: 500;
}
.page-hero .lede {
font-size: 1.08rem;
color: rgba(246, 240, 228, 0.78);
margin-top: 16px;
max-width: 55ch;
}
.breadcrumb {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
color: rgba(246, 240, 228, 0.5);
margin-bottom: 26px;
flex-wrap: wrap;
}
.breadcrumb a {
color: rgba(246, 240, 228, 0.5);
transition: color 0.2s;
}
.breadcrumb a:hover {
color: var(--gold-light);
}
.breadcrumb .sep {
color: rgba(246, 240, 228, 0.28);
}

/* Legal tab nav */
.legal-nav {
background: var(--cream);
border-bottom: 1px solid var(--line);
position: sticky;
top: 74px;
z-index: 40;
}
.legal-nav-inner {
display: flex;
overflow-x: auto;
gap: 0;
scrollbar-width: none;
}
.legal-nav-inner::-webkit-scrollbar {
display: none;
}
.legal-tab {
flex-shrink: 0;
padding: 16px 22px;
font-weight: 700;
font-size: 0.88rem;
color: var(--ink-soft);
cursor: pointer;
border: none;
background: none;
border-bottom: 2.5px solid transparent;
transition:
    color 0.2s,
    border-color 0.2s;
font-family: 'Hanken Grotesk', sans-serif;
white-space: nowrap;
}
.legal-tab:hover {
color: var(--emerald);
}
.legal-tab.active {
color: var(--emerald);
border-bottom-color: var(--gold);
}

/* Legal layout */
.legal-layout {
padding: 64px 0 96px;
background: var(--paper);
}
.legal-grid {
display: grid;
grid-template-columns: 260px 1fr;
gap: 52px;
align-items: start;
}

/* Sidebar TOC */
.legal-sidebar {
position: sticky;
top: calc(74px + 52px);
}
.sidebar-card {
background: var(--cream);
border: 1px solid var(--line);
border-radius: 18px;
padding: 24px;
}
.sidebar-card h5 {
font-family: 'Hanken Grotesk';
font-size: 0.74rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--gold-deep);
font-weight: 700;
margin-bottom: 16px;
}
.toc-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 4px;
}
.toc-list a {
display: block;
padding: 9px 14px;
border-radius: 10px;
font-size: 0.9rem;
font-weight: 600;
color: var(--ink-soft);
transition:
    background 0.2s,
    color 0.2s;
}
.toc-list a:hover,
.toc-list a.active {
background: rgba(12, 64, 48, 0.07);
color: var(--emerald);
}
.back-link {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.88rem;
font-weight: 600;
color: var(--ink-soft);
margin-top: 18px;
padding: 10px 14px;
border-radius: 10px;
transition:
    color 0.2s,
    background 0.2s;
}
.back-link:hover {
color: var(--emerald);
background: rgba(12, 64, 48, 0.07);
}
.back-link svg {
flex-shrink: 0;
}

/* Document pages */
.doc-page {
display: none;
}
.doc-page.active {
display: block;
}

/* Document typography */
.doc {
max-width: 780px;
}
.doc-header {
margin-bottom: 44px;
padding-bottom: 28px;
border-bottom: 1px solid var(--line);
}
.doc-header h2 {
font-size: clamp(1.9rem, 3.5vw, 2.8rem);
color: var(--emerald);
margin-bottom: 10px;
}
.doc-meta {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 14px;
}
.doc-meta span {
display: flex;
align-items: center;
gap: 7px;
font-size: 0.84rem;
font-weight: 600;
color: var(--ink-soft);
background: var(--cream);
border: 1px solid var(--line);
padding: 6px 14px;
border-radius: 100px;
}
.doc h3 {
font-family: 'Fraunces', serif;
font-size: 1.32rem;
font-weight: 600;
color: var(--emerald);
margin: 40px 0 14px;
padding-top: 4px;
}
.doc h3:first-of-type {
margin-top: 0;
}
.doc p {
color: var(--ink-soft);
font-size: 1.02rem;
margin-bottom: 16px;
line-height: 1.72;
}
.doc p:last-child {
margin-bottom: 0;
}
.doc ul,
.doc ol {
color: var(--ink-soft);
font-size: 1.02rem;
margin-bottom: 16px;
padding-left: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.doc li {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 14px 18px;
background: var(--cream);
border-radius: 11px;
border: 1px solid var(--line);
line-height: 1.6;
}
.doc li::before {
content: '';
flex-shrink: 0;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--gold);
margin-top: 9px;
}
.doc ol {
counter-reset: items;
}
.doc ol li {
counter-increment: items;
}
.doc ol li::before {
content: counter(items);
background: var(--emerald);
color: var(--gold-light);
border-radius: 6px;
width: 24px;
height: 24px;
display: grid;
place-items: center;
font-size: 0.8rem;
font-weight: 800;
font-family: 'Hanken Grotesk', sans-serif;
flex-shrink: 0;
margin-top: 0;
}
.doc strong {
color: var(--ink);
font-weight: 700;
}
.doc a {
color: var(--emerald-bright);
font-weight: 600;
}
.doc a:hover {
text-decoration: underline;
}

.doc-callout {
background: linear-gradient(145deg, rgba(12, 64, 48, 0.06), rgba(12, 64, 48, 0.03));
border: 1.5px solid rgba(12, 64, 48, 0.14);
border-left: 4px solid var(--gold);
border-radius: 14px;
padding: 20px 22px;
margin: 28px 0;
}
.doc-callout p {
margin: 0;
font-size: 0.97rem;
color: var(--ink-soft);
}
.doc-callout strong {
color: var(--emerald);
}

.doc-warn {
background: rgba(160, 126, 60, 0.07);
border: 1.5px solid rgba(160, 126, 60, 0.22);
border-left: 4px solid var(--gold-deep);
border-radius: 14px;
padding: 20px 22px;
margin: 28px 0;
}
.doc-warn p {
margin: 0;
font-size: 0.97rem;
color: var(--ink-soft);
}

/* Page switcher CTAs */
.doc-nav-footer {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: space-between;
align-items: center;
margin-top: 64px;
padding-top: 32px;
border-top: 1px solid var(--line);
}
.doc-nav-footer a {
font-weight: 700;
font-size: 0.9rem;
color: var(--emerald-bright);
display: inline-flex;
align-items: center;
gap: 6px;
}
.doc-nav-footer a:hover {
text-decoration: underline;
}

/* Responsive */
@media (max-width: 860px) {
.legal-grid {
    grid-template-columns: 1fr;
}
.legal-sidebar {
    position: static;
}
.sidebar-card {
    display: none;
}
}
@media (max-width: 720px) {
body {
    font-size: 16px;
}

.legal-nav {
    top: 74px;
}
.page-hero {
    padding: 52px 0 62px;
}
}
@media (max-width: 480px) {
.wrap {
    padding: 0 20px;
}
.legal-tab {
    padding: 14px 16px;
    font-size: 0.82rem;
}
}