/* ---------- Tokens ---------- */
:root {
    --bg: #f8f8f5;
    --bg-cream: #f3f3ee;
    --bg-band: #ca2751;
    --bg-band-dark: #a51d42;
    --ink: #002A41;
    --ink-soft: #1d3f54;
    --muted: #6f7e87;
    --rule: #d4d8db;
    --magenta: #ca2751;

    --pad-x: clamp(20px, 4.5vw, 80px);
    --max-w: 1200px;
    --max-prose: 720px;

    --serif: "Cormorant Garamond", "Times New Roman", Times, serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
em, i { font-style: italic; }

/* ---------- Nav ---------- */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px var(--pad-x);
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
}
.site-nav .brand { position: relative; z-index: 110; }
.site-nav .brand img {
    width: clamp(100px, 11vw, 140px);
    height: auto;
}
.site-nav nav {
    display: flex;
    gap: clamp(14px, 1.8vw, 30px);
    align-items: center;
}
.site-nav nav a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.site-nav nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--magenta);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.site-nav nav a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: transparent;
    color: var(--magenta);
    border: 1px solid var(--magenta);
    padding: 11px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    white-space: nowrap;
    position: relative;
    z-index: 110;
}
.nav-cta span { font-size: 11px; margin: 0 4px; }
.nav-cta:hover { background: var(--magenta); color: #fff; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    position: relative;
    z-index: 110;
    width: 32px;
    height: 32px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible { outline: 2px solid var(--magenta); outline-offset: 4px; }
.nav-toggle span {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease, top .3s cubic-bezier(.2,.7,.2,1);
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.is-active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    text-align: center;
    padding: clamp(140px, 18vw, 220px) var(--pad-x) clamp(56px, 8vw, 110px);
    max-width: 1400px;
    margin: 0 auto;
}
.hero .diamond--top { margin-bottom: clamp(28px, 3vw, 44px); }
.hero .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--ink);
    margin-bottom: clamp(28px, 3vw, 44px);
}
.hero-quote {
    font-family: var(--serif);
    font-size: clamp(40px, 7.2vw, 116px);
    line-height: 1.02;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin-bottom: clamp(28px, 3vw, 44px);
    font-weight: 400;
}
.hero-quote .i {
    font-style: italic;
    font-weight: 500;
    color: var(--magenta);
}
.hero-quote .r {
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--ink);
}
.hero-quote .quote-mark {
    color: var(--ink);
    font-style: normal;
    font-weight: 500;
}
.hero-sub {
    font-family: var(--sans);
    font-size: clamp(11px, 0.9vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.36em;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: clamp(40px, 5vw, 64px);
}
.diamond {
    display: flex;
    justify-content: center;
}
.diamond img {
    width: clamp(16px, 1.4vw, 22px);
    height: auto;
}

/* ---------- Feature sections (image + text) ---------- */
.feature {
    padding: clamp(60px, 8vw, 120px) var(--pad-x);
    background: var(--bg);
    border-top: 1px solid var(--ink);
}
.feature:first-of-type { margin-top: clamp(40px, 6vw, 80px); }

.feature-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.feature--right .feature-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
.feature--left  .feature-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }

.feature--right .feature-grid > .feature-text  { order: 1; }
.feature--right .feature-grid > .feature-image { order: 2; }
.feature--left  .feature-grid > .feature-image { order: 1; }
.feature--left  .feature-grid > .feature-text  { order: 2; }

.feature-text h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.012em;
    margin-bottom: clamp(24px, 2.6vw, 36px);
    color: var(--ink);
}
.feature-text h2 em {
    color: var(--magenta);
    font-style: italic;
}
.feature-text p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 14px;
    max-width: 56ch;
}
.feature-text p:last-child { margin-bottom: 0; }
.feature-text em { font-style: italic; color: var(--ink); }
.feature-text em.accent { color: var(--magenta); font-weight: 500; }
.feature-text strong { font-weight: 700; color: var(--ink); }

.feature-image {
    margin: 0;
}
.feature-image img,
.feature-image video {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- CTA Banner (magenta) ---------- */
.cta-banner {
    background: var(--magenta);
    color: #fff;
    padding: clamp(64px, 8vw, 110px) var(--pad-x);
    text-align: center;
}
.cta-inner {
    max-width: 820px;
    margin: 0 auto;
}
.cta-diamond, .cta-diamond-border {
    display: block;
    margin: 0 auto clamp(20px, 2vw, 32px);
    width: clamp(18px, 1.4vw, 24px);
    height: auto;
}
.cta-banner h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin-bottom: clamp(16px, 1.6vw, 24px);
    color: #fff;
}
.cta-banner h2 em { font-style: italic; }
.cta-sub {
    font-family: var(--sans);
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(32px, 4vw, 56px);
}
.cta-body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
    margin: 0 auto clamp(28px, 4vw, 48px);
}
.cta-body strong { font-weight: 700; color: #fff; }

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: clamp(28px, 3vw, 44px);
}
.cta-contacts p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
.cta-contacts .label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}
.cta-contacts a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 1px;
    transition: border-color .25s ease;
}
.cta-contacts a:hover { border-color: #fff; }

/* ---------- Benefits / Edut ---------- */
.benefits {
    padding: clamp(64px, 9vw, 130px) var(--pad-x);
    background: var(--bg-cream);
}
.benefits-inner {
    max-width: var(--max-prose);
    margin: 0 auto;
}
.benefits .lead {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: clamp(28px, 3vw, 44px);
    text-align: center;
    font-weight: 500;
}
.benefits .lead em {
    font-style: italic;
    color: var(--magenta);
    font-weight: 600;
}
.benefits > .benefits-inner > p:not(.lead) {
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px;
}
.benefits em { font-style: italic; }

.diamond-list {
    margin: clamp(28px, 3vw, 40px) 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.diamond-list li {
    position: relative;
    padding-left: 32px;
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
}
.diamond-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 16px;
    background: var(--magenta);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.ask-more {
    text-align: center;
    font-size: 14px;
    margin-top: clamp(28px, 3vw, 40px) !important;
    color: var(--ink);
}
.ask-more a {
    border-bottom: 1px solid var(--magenta);
    padding-bottom: 1px;
    color: var(--magenta);
    font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg);
    padding: clamp(64px, 8vw, 110px) var(--pad-x) clamp(32px, 4vw, 48px);
    text-align: center;
    border-top: 1px solid var(--rule);
}
.footer-logo {
    width: clamp(140px, 14vw, 200px);
    height: auto;
    margin: 0 auto clamp(20px, 2vw, 32px);
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(28px, 3vw, 44px);
}
.footer-contacts p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.footer-contacts .label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 2px;
}
.footer-contacts a {
    color: var(--magenta);
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: border-color .25s ease;
}
.footer-contacts a:hover { border-color: var(--magenta); }

.footer-motto {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--muted);
    margin-bottom: clamp(28px, 3vw, 44px);
}
.footer-cta {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background .25s ease, transform .25s ease;
    margin-bottom: clamp(40px, 5vw, 64px);
}
.footer-cta span { font-size: 11px; opacity: .9; margin: 0 2px; }
.footer-cta:hover { background: var(--bg-band-dark); transform: translateY(-1px); }
.footer-copy {
    font-family: var(--sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
}

/* ---------- Reveal ---------- */
.hero .eyebrow,
.hero-quote,
.hero-sub,
.diamond {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .eyebrow { animation-delay: 100ms; }
.hero-quote    { animation-delay: 260ms; }
.hero-sub      { animation-delay: 480ms; }
.diamond       { animation-delay: 620ms; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
    }
    .hero .eyebrow, .hero-quote, .hero-sub, .diamond { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .site-nav nav { gap: clamp(10px, 1.4vw, 20px); }
    .site-nav nav a { font-size: 12px; }
}

@media (max-width: 900px) {
    .site-nav {
        padding: 14px var(--pad-x);
    }
    .site-nav nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        padding: 80px var(--pad-x) 40px;
        gap: clamp(20px, 3.5vw, 32px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility 0s linear .35s;
        z-index: 105;
    }
    .site-nav nav.is-open {
        opacity: 1;
        visibility: visible;
        transition: opacity .35s ease, visibility 0s linear;
    }
    .site-nav nav a {
        font-size: clamp(20px, 4.5vw, 28px);
        font-family: var(--serif);
        font-weight: 500;
        padding: 8px 0;
    }
    .nav-cta {
        padding: 9px 14px;
        font-size: 11px;
    }
    .nav-toggle { display: block; }

    .feature--right .feature-grid,
    .feature--left  .feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature--left  .feature-grid > .feature-image,
    .feature--left  .feature-grid > .feature-text,
    .feature--right .feature-grid > .feature-image,
    .feature--right .feature-grid > .feature-text {
        order: initial;
    }
}

@media (max-width: 560px) {
    .nav-cta { display: none; }
}
