:root {
    --green: #637f44;
    --green-dark: #3f552c;
    --green-deep: #26341d;
    --green-soft: #eef2e8;
    --sage: #a7b894;
    --cream: #f8f7f1;
    --paper: #fffef9;
    --ink: #1d2119;
    --muted: #667064;
    --line: #dfe4d7;
    --white: #ffffff;

    --shadow: 0 20px 55px rgba(47, 63, 35, 0.10);
    --shadow-lg: 0 30px 80px rgba(44, 61, 33, 0.18);

    --serif: Georgia, "Times New Roman", serif;

    --sans: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-soft {
    background: var(--cream);
}

.eyebrow {
    margin-bottom: 15px;

    color: var(--green);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.20em;
    line-height: 1.3;

    text-transform: uppercase;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.founder-copy h2,
.consultation-copy h2 {
    font-family: var(--serif);

    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 500;

    letter-spacing: -0.035em;
}

.section-heading h2 em,
.founder-copy h2 em,
.consultation-copy h2 em {
    color: var(--green);
    font-style: italic;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin-top: 20px;

    color: var(--muted);
}

.centered > p:last-child {
    margin-inline: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 50px;

    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;

    cursor: pointer;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease,
        opacity 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);

    box-shadow:
        0 12px 28px rgba(99, 127, 68, 0.25);
}

.button-primary:hover {
    background: var(--green-dark);

    box-shadow:
        0 15px 32px rgba(99, 127, 68, 0.32);
}

.button-outline {
    color: var(--green-dark);

    border-color: var(--green);
    background: transparent;
}

.button-outline:hover {
    color: var(--white);
    background: var(--green);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(255, 254, 249, 0.88);

    border-bottom:
        1px solid rgba(223, 228, 215, 0.8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--green-dark);
}

.brand img {
    width: 39px;
    height: 39px;

    object-fit: contain;
}

.brand span {
    font-family: var(--serif);

    font-size: 1.02rem;
    font-weight: 700;

    letter-spacing: 0.07em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    color: #4f594c;

    font-size: 0.82rem;
    font-weight: 700;
}

.nav-links a {
    transition: color 180ms ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--green);
}

.nav-cta {
    padding: 10px 17px;

    border-radius: 999px;

    color: var(--white);
    background: var(--green);

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px 0;

    background: var(--green-dark);

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    background: var(--paper);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(167, 184, 148, 0.30),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 20%,
            rgba(238, 242, 232, 0.85),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffef9 0%,
            #f5f6ef 55%,
            #edf1e7 100%
        );
}

.hero-background::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(99, 127, 68, 0.14);
    border-radius: 50%;
}

.hero-background::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -160px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(99, 127, 68, 0.10);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: 760px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 60px;
}

.hero-copy {
    position: relative;
    z-index: 3;

    padding: 60px 0;
}

.hero-copy h1 {
    max-width: 700px;

    font-family: var(--serif);

    font-size: clamp(3.7rem, 6.6vw, 6.5rem);
    line-height: 0.91;
    font-weight: 500;

    letter-spacing: -0.055em;
}

.hero-copy h1 em {
    color: var(--green);
    font-style: italic;
}

.hero-text {
    max-width: 580px;

    margin: 30px 0;

    color: var(--muted);

    font-size: 1.03rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;

    flex-wrap: wrap;
}

.text-link {
    color: var(--green-dark);

    font-size: 0.86rem;
    font-weight: 800;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.text-link:hover {
    color: var(--green);
    transform: translateX(3px);
}

.text-link span {
    margin-left: 8px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 50px;

    color: #788070;

    font-size: 0.76rem;
}

.note-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 6px rgba(99, 127, 68, 0.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    min-height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 25px 8px 45px;
}

.hero-image-card {
    position: relative;

    width: min(650px, 100%);

    aspect-ratio: 1.08;

    border-radius: 12px;
}

.hero-image-card::before {
    content: "";

    position: absolute;

    inset: -18px -18px 18px 18px;

    border:
        1px solid rgba(99, 127, 68, 0.30);

    border-radius: 12px;

    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: var(--shadow-lg);

    filter: saturate(0.94);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(36, 50, 27, 0.02) 25%,
            rgba(36, 50, 27, 0.16) 100%
        );

    pointer-events: none;
}

.hero-image-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -45px;
    bottom: -40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(167, 184, 148, 0.55),
            rgba(167, 184, 148, 0) 70%
        );

    z-index: -1;
}


/* =========================================================
   HERO INFO CARD
========================================================= */

.hero-info-card {
    position: absolute;

    right: -35px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    min-width: 245px;

    padding: 20px 22px;

    background: rgba(255, 254, 249, 0.95);

    border:
        1px solid rgba(99, 127, 68, 0.18);

    box-shadow:
        0 18px 45px rgba(47, 63, 35, 0.15);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 5;
}

.hero-info-card span {
    color: var(--green);

    font-size: 0.58rem;
    font-weight: 900;

    letter-spacing: 0.17em;
}

.hero-info-card strong {
    color: var(--green-dark);

    font-family: var(--serif);

    font-size: 0.98rem;
    font-weight: 500;
}


/* =========================================================
   HERO CAPTION
========================================================= */

.hero-caption {
    position: static;

    width: 100%;
    margin-top: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;

    text-align: right;
}

.hero-caption span {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
}

.hero-caption strong {
    font-size: 0.9rem;
    letter-spacing: 0.07em;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.principle-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.principle-card {
    position: relative;

    min-height: 285px;

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--line);

    box-shadow: var(--shadow);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.principle-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 28px 65px rgba(47, 63, 35, 0.13);
}

.card-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #a9b59e;

    font-size: 0.68rem;
    font-weight: 800;
}

.card-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 50%;

    color: var(--green);
    background: var(--green-soft);

    font-size: 1.5rem;
}

.principle-card h3 {
    margin-bottom: 10px;

    font-family: var(--serif);

    font-size: 1.65rem;
    font-weight: 500;
}

.principle-card p {
    color: var(--muted);

    font-size: 0.92rem;
}


/* =========================================================
   OFFERINGS
========================================================= */

.offer-grid {
    display: grid;

    grid-template-columns:
        1.25fr 1fr 1fr;

    gap: 18px;
}

.offer-card {
    min-height: 380px;

    padding: 38px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--line);

    background: var(--paper);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.offer-featured {
    color: var(--white);

    background: var(--green-deep);

    border-color: var(--green-deep);
}

.offer-tag {
    color: var(--green);

    font-size: 0.66rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.offer-featured .offer-tag {
    color: #bdcbaa;
}

.offer-card h3 {
    max-width: 340px;

    margin: 45px 0 15px;

    font-family: var(--serif);

    font-size: 2rem;
    line-height: 1.08;
    font-weight: 500;
}

.offer-card p {
    color: var(--muted);

    font-size: 0.9rem;
}

.offer-featured p {
    color: #c6cec0;
}

.card-link {
    margin-top: auto;
    padding-top: 30px;

    color: var(--green);

    font-size: 0.78rem;
    font-weight: 800;

    transition: transform 180ms ease;
}

.card-link:hover {
    transform: translateX(4px);
}

.offer-featured .card-link {
    color: #d6e0ca;
}


/* =========================================================
   EDUCATION
========================================================= */

.levels {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.level-card {
    overflow: hidden;

    border: 1px solid var(--line);

    background: var(--white);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.level-dark {
    color: var(--white);

    background: var(--green-deep);

    border-color: var(--green-deep);
}

.level-top {
    padding: 17px 22px;

    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid var(--line);

    color: var(--green);

    font-size: 0.63rem;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.level-dark .level-top {
    color: #b8c8a9;

    border-color:
        rgba(255, 255, 255, 0.13);
}

.level-content {
    padding: 30px 28px 35px;
}

.level-content h3 {
    margin-bottom: 12px;

    font-family: var(--serif);

    font-size: 1.75rem;
    line-height: 1.1;
    font-weight: 500;
}

.level-content p {
    margin-bottom: 25px;

    color: var(--muted);

    font-size: 0.86rem;
}

.level-dark .level-content p {
    color: #c4ccc0;
}

.level-content ul {
    list-style: none;

    display: grid;
    gap: 11px;
}

.level-content li {
    position: relative;

    padding-left: 20px;

    color: #4f594c;

    font-size: 0.82rem;
}

.level-dark .level-content li {
    color: #d4dbd0;
}

.level-content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.62em;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);
}

.professional-note {
    margin-top: 20px;

    padding: 28px 32px;

    background: var(--green-soft);

    border: 1px solid #dce5d3;
}

.professional-list {
    color: #53604d;

    font-size: 0.88rem;
}


/* =========================================================
   CONSULTATION
========================================================= */

.consultation-grid {
    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 70px;

    align-items: center;
}

.consultation-mark {
    min-height: 420px;

    display: grid;
    place-items: center;

    background: var(--white);

    border: 1px solid var(--line);
}

.consultation-mark img {
    width: 55%;
    opacity: 0.85;
}

.consultation-copy > p:not(.eyebrow) {
    max-width: 650px;

    margin: 24px 0;

    color: var(--muted);
}

.consultation-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 30px;

    margin-bottom: 30px;
}

.consultation-points span {
    color: #4f594c;

    font-size: 0.85rem;
}

.consultation-points span::before {
    content: "✓";

    margin-right: 8px;

    color: var(--green);

    font-weight: 900;
}


/* =========================================================
   FOUNDER
========================================================= */

.founder-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 85px;

    align-items: center;
}

.founder-image-wrap {
    position: relative;

    padding: 25px 25px 45px 0;
}

.image-frame {
    position: absolute;

    inset: 0 0 20px 25px;

    border: 1px solid #cbd5c0;

    background: var(--green-soft);
}

.founder-image {
    position: relative;

    width: 100%;

    aspect-ratio: 0.78;

    object-fit: cover;
    object-position: center top;

    filter: saturate(0.92);
}

.founder-badge {
    position: absolute;

    right: -15px;
    bottom: 8px;

    min-width: 180px;

    padding: 17px 22px;

    color: var(--white);

    background: var(--green-deep);

    box-shadow: var(--shadow);
}

.founder-badge span {
    display: block;

    margin-bottom: 3px;

    color: #b9c7aa;

    font-size: 0.6rem;

    letter-spacing: 0.18em;
    font-weight: 800;
}

.founder-badge strong {
    font-family: var(--serif);

    font-size: 1.1rem;
    font-weight: 500;
}

.founder-copy > p:not(.eyebrow) {
    max-width: 650px;

    margin: 18px 0;

    color: var(--muted);
}

.founder-copy blockquote {
    margin-top: 30px;

    padding: 22px 25px;

    border-left: 3px solid var(--green);

    background: var(--green-soft);

    color: var(--green-dark);

    font-family: var(--serif);

    font-size: 1.15rem;
    font-style: italic;
}


/* =========================================================
   WAITLIST
========================================================= */

.waitlist {
    color: var(--white);

    background: var(--green-deep);
}

.waitlist-box {
    position: relative;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 60px;

    align-items: center;

    padding: 65px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(151, 177, 124, 0.18),
            transparent 25%
        ),
        rgba(255, 255, 255, 0.025);
}

.waitlist-emblem {
    display: grid;
    place-items: center;
}

.waitlist-emblem img {
    width: 150px;

    filter: brightness(0) invert(1);

    opacity: 0.86;
}

.waitlist-copy .eyebrow {
    color: #b8c8a9;
}

.waitlist-copy h2 {
    font-family: var(--serif);

    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1;
    font-weight: 500;

    letter-spacing: -0.035em;
}

.waitlist-copy > p:not(.eyebrow):not(.form-message) {
    max-width: 650px;

    margin: 18px 0 25px;

    color: #c5cdc0;
}

.waitlist-form {
    max-width: 670px;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 10px;
}

.waitlist-form input[type="email"] {
    min-width: 0;

    height: 52px;

    padding: 0 18px;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 999px;

    outline: none;

    background: rgba(255, 255, 255, 0.07);

    color: var(--white);
}

.waitlist-form input[type="email"]::placeholder {
    color: #aab4a5;
}

.waitlist-form input[type="email"]:focus {
    border-color: #a9bd93;

    box-shadow:
        0 0 0 3px rgba(169, 189, 147, 0.10);
}

.form-message {
    min-height: 24px;

    margin-top: 10px;

    font-size: 0.82rem;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.form-message.success {
    color: #cfe8b8;
}

.form-message.error {
    color: #f0b5b5;
}

.form-message.loading {
    color: #c5cdc0;
}

.waitlist-copy small {
    color: #879485;

    font-size: 0.68rem;
}


/* =========================================================
   WEB3FORMS
========================================================= */

.hidden-botcheck {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;

    clip: rect(0, 0, 0, 0) !important;
}

.waitlist-form button:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   SCREEN READER
========================================================= */

.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;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.js .reveal {
    opacity: 0;

    transform: translateY(26px);

    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.js .reveal.is-visible {
    opacity: 1;

    transform: translateY(0);
}

.js .reveal-delay {
    transition-delay: 120ms;
}

.js .reveal-delay-2 {
    transition-delay: 240ms;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: #cbd2c5;

    background: #182016;
}

.footer-main {
    padding: 38px 0 28px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 40px;
}


/* Footer brand */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 50px;
    height: 50px;

    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--white);

    font-family: var(--serif);

    font-size: 0.95rem;

    letter-spacing: 0.08em;
}

.footer-brand span {
    margin-top: 3px;

    color: #8f9b8a;

    font-size: 0.72rem;
}


/* Footer contact */

.footer-contact {
    display: flex;
    flex-direction: row;

    align-items: center;

    gap: 14px;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--green);

    color: var(--white);

    transition:
        transform 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-icon:hover {
    transform: translateY(-3px);

    background: var(--green-dark);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-icon svg {
    width: 20px;
    height: 20px;

    display: block;
}

.footer-icon[aria-label="Instagram"] {
    background:
        linear-gradient(
            45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%
        );
}

.footer-icon[aria-label="Instagram"]:hover {
    background:
        linear-gradient(
            45deg,
            #d9801f 0%,
            #c7542e 25%,
            #b81f38 50%,
            #a81d56 75%,
            #961570 100%
        );
}


/* Footer navigation */

.footer-links {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 20px;

    color: #9ca79a;

    font-size: 0.72rem;
}

.footer-links a {
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--white);
}


/* Footer bottom */

.footer-bottom {
    padding: 18px 0 26px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #778273;

    font-size: 0.68rem;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns:
            0.95fr 1.05fr;

        gap: 35px;
    }

    .hero-copy h1 {
        font-size:
            clamp(3.5rem, 6vw, 5.5rem);
    }

    .hero-info-card {
        right: -10px;
    }

    .hero-image-card::before {
        inset: -12px -12px 12px 12px;
    }

    .founder-grid {
        gap: 55px;
    }

    .consultation-grid {
        gap: 45px;
    }

    .waitlist-box {
        gap: 40px;
        padding: 50px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 980px) {

    .section {
        padding: 90px 0;
    }


    /* Header */

    .nav-links {
        gap: 18px;
    }


    /* Hero */

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 60px;
        padding-bottom: 70px;
    }

    .hero-copy {
        padding: 20px 0 0;

        max-width: 760px;
    }

    .hero-copy h1 {
        max-width: 700px;

        font-size:
            clamp(4rem, 9vw, 6.5rem);
    }

    .hero-text {
        max-width: 650px;
    }

    .hero-visual {
        min-height: auto;

        padding: 30px 30px 50px;
    }

    .hero-image-card {
        width: min(720px, 100%);
    }

    .hero-info-card {
        right: 0;
    }

    .hero-caption {
        right: 25px;
        bottom: 0;
    }


    /* Content grids */

    .principle-grid,
    .offer-grid,
    .levels {
        grid-template-columns: 1fr;
    }

    .principle-card,
    .offer-card,
    .level-card {
        min-height: auto;
    }

    .offer-card {
        min-height: 330px;
    }


    /* Consultation */

    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-mark {
        min-height: 300px;
    }

    .consultation-mark img {
        width: 180px;
    }


    /* Founder */

    .founder-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .founder-image-wrap {
        max-width: 560px;

        margin-inline: auto;
    }


    /* Waitlist */

    .waitlist-box {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;
    }

    .waitlist-copy > p:not(.eyebrow):not(.form-message) {
        margin-inline: auto;
    }

    .waitlist-form {
        margin-inline: auto;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

        gap: 28px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-contact {
        order: 2;
    }

    .footer-links {
        order: 3;

        justify-content: center;

        flex-wrap: wrap;
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 720px) {

    .container {
        width:
            min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 75px 0;
    }


    /* Header */

    .nav-wrap {
        min-height: 68px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand span {
        font-size: 0.86rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 59;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 20px;

        padding: 26px 20px 32px;

        background: rgba(255, 254, 249, 0.97);

        border-bottom:
            1px solid rgba(223, 228, 215, 0.9);

        box-shadow:
            0 22px 40px rgba(47, 63, 35, 0.12);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .menu-toggle {
        display: block;

        position: relative;

        z-index: 60;
    }


    /* Hero */

    .hero-grid {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .hero-copy h1 {
        font-size:
            clamp(3.4rem, 16vw, 5rem);

        line-height: 0.92;
    }

    .hero-text {
        margin: 25px 0;

        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

    .hero-note {
        margin-top: 35px;

        align-items: flex-start;

        line-height: 1.5;
    }

    .hero-visual {
        padding: 25px 8px 45px;
    }

    .hero-image-card {
        width: 100%;

        aspect-ratio: 0.95;
    }

    .hero-image-card::before {
        inset: -8px -8px 8px 8px;
    }

    .hero-info-card {
        right: 0;
        bottom: 20px;

        min-width: 0;

        width: min(240px, 72%);

        padding: 16px 18px;
    }

    .hero-info-card strong {
        font-size: 0.88rem;
    }

    .hero-caption {
        right: 5px;
        bottom: -5px;
    }

    .hero-caption strong {
        font-size: 0.9rem;
    }


    /* Headings */

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .founder-copy h2,
    .consultation-copy h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.5rem);
    }


    /* Cards */

    .principle-card {
        padding: 32px;
    }

    .offer-card {
        padding: 30px;
    }

    .offer-card h3 {
        margin-top: 35px;

        font-size: 1.8rem;
    }

    .level-content {
        padding: 28px 24px 32px;
    }


    /* Professional note */

    .professional-note {
        padding: 24px;
    }

    .professional-list {
        line-height: 1.8;
    }


    /* Consultation */

    .consultation-mark {
        min-height: 260px;
    }

    .consultation-points {
        grid-template-columns: 1fr;
    }


    /* Founder */

    .founder-image-wrap {
        padding: 15px 15px 42px 0;
    }

    .image-frame {
        inset: 0 0 20px 15px;
    }

    .founder-badge {
        right: -5px;
        bottom: 5px;

        min-width: 155px;

        padding: 14px 17px;
    }

    .founder-copy blockquote {
        padding: 18px 20px;

        font-size: 1.02rem;
    }


    /* Waitlist */

    .waitlist-box {
        padding: 38px 24px;
    }

    .waitlist-emblem img {
        width: 110px;
    }

    .waitlist-copy h2 {
        font-size:
            clamp(2.6rem, 13vw, 4rem);
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .waitlist-form input[type="email"] {
        width: 100%;
    }

    .waitlist-form .button {
        width: 100%;
    }


    /* Footer */

    .footer-main {
        padding: 40px 0 30px;

        gap: 30px;
    }

    .footer-brand {
        flex-direction: column;

        gap: 10px;
    }

    .footer-brand img {
        width: 55px;
        height: 55px;
    }

    .footer-contact {
        width: 100%;

        justify-content: center;
    }

    .footer-links {
        width: 100%;

        justify-content: center;

        gap: 15px 20px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 8px;

        padding: 18px 0 25px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-copy h1 {
        font-size: 3.25rem;
    }

    .hero-image-card {
        aspect-ratio: 0.9;
    }

    .hero-info-card {
        width: 75%;
        right: -2px;
    }

    .hero-caption {
        display: none;
    }

    .button {
        min-height: 48px;

        padding-inline: 20px;
    }

    .principle-card {
        padding: 28px;
    }

    .offer-card {
        min-height: 310px;

        padding: 26px;
    }

    .level-content {
        padding: 25px 22px 30px;
    }

    .waitlist-box {
        padding: 32px 20px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}