/* ==========================================================================
   Power of Platinum
   Static site stylesheet
   ========================================================================== */


/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    --blue: #1d4782;
    --gold: #d3af37;
    --ink: #282828;
    --muted: #5d6570;
    --light: #e7eaf0;
    --soft: #f6f7f9;
    --white: #ffffff;

    --max: 1080px;
    --radius: 8px;
    --shadow: 0 18px 45px rgba(20, 31, 48, 0.12);
}


/* ==========================================================================
   2. Base / Reset
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--ink);
    font-family: "Outfit", Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: var(--blue);
}


/* ==========================================================================
   3. Shared Layout Helpers
   ========================================================================== */

.shell {
    width: 80%;
    max-width: var(--max);
    margin-inline: auto;
}

.narrow {
    max-width: var(--max);
}

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: #ffffff;
}


/* ==========================================================================
   4. Header
   ========================================================================== */

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;

    display: flex;
    align-items: center;
    height: 120px;

    transition:
        background 0.25s,
        height 0.25s,
        box-shadow 0.25s;
}

.site-header.scrolled,
.site-header.solid {
    position: fixed;
    height: 76px;
    background: rgba(40, 40, 40, 0.97);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #ffffff;
    text-decoration: none;
}

.brand img {
    width: min(330px, 46vw);
    max-height: 74px;
    object-fit: contain;
    object-position: left center;
}

.brand-fallback {
    display: none;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-cta {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-cta:hover {
    color: #ffffff;
}


/* ==========================================================================
   5. Hero
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 0;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #3b3b3b 0%,
        var(--blue) 100%
    );
}

.hero-video {
    position: absolute;
    inset: -2%;

    width: 104%;
    height: 104%;

    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.03);
}

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

    background: linear-gradient(
        to bottom,
        rgba(59, 59, 59, 0.90),
        rgba(29, 71, 130, 0.90)
    );

    mix-blend-mode: multiply;
}

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

    max-width: 700px;
    padding: 10vw 0;

    color: #ffffff;
    text-align: center;
}

.eyebrow {
    margin: 100px 0 18px;

    font-family: "Cinzel", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size: clamp(40px, 5.2vw, 66px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.08;
}

.hero-copy {
    margin-top: 36px;

    font-size: 28px;
    line-height: 1.4;
}

.hero-copy p {
    margin: 0;
}


/* ==========================================================================
   6. Program Announcement Banner
   ========================================================================== */

.program-banner {
    position: relative;
    z-index: 4;

    padding: 54px 0;

    background: var(--light);
}

.banner-inner {
    position: relative;
    top: auto;

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

    width: 80%;
    max-width: 1280px;
    min-height: 0;

    margin: -150px auto 0;
    padding: 36px;

    background: #b87333;
    border-radius: 4px;
    box-shadow: 0 40px 60px -10px rgba(0, 0, 0, 0.03);
}

.banner-inner .prose {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.banner-inner .prose p {
    margin: 0;
}


/* ==========================================================================
   7. Shared Sections / Typography
   ========================================================================== */

.section {
    padding: 54px 0;
}

.section-light {
    background: var(--light);
}

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

.section-dark {
    background: var(--blue);
    color: #ffffff;
}

.section-title {
    margin: 0 auto 30px;

    color: var(--blue);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
}

.light-title {
    color: #ffffff;
}

.section-lead {
    max-width: var(--max);
    margin: 0 auto 28px;

    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

.intro-secondary {
    margin-top: 38px;
}

.prose p {
    margin: 0 0 1em;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose ul,
.prose ol {
    margin: 0;
    padding-left: 1.25rem;
}

.prose li {
    margin: 0.45rem 0;
}

.wide-copy {
    max-width: var(--max);
    margin: 45px auto 0;

    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.emphasis {
    font-weight: 600;
}

.cta-block {
    margin: 42px auto 50px;
    text-align: center;
}

.cta-block .prose {
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 700;
}


/* ==========================================================================
   8. Buttons
   ========================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: auto;
    padding: 16px 32px;

    background: var(--gold);
    border: 0;
    border-radius: 4px;

    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.18s,
        background 0.18s,
        color 0.18s,
        border-color 0.18s;
}

.button:hover,
.button-blue:hover,
.button-gold:hover {
    background: var(--ink);
    color: var(--gold);
    transform: translateY(-1px);
}

/* These classes intentionally use the same gold treatment. */

.button-blue,
.button-gold {
    min-height: auto;
    padding: 16px 32px;

    background: var(--gold);
    border: 0;
    border-radius: 4px;

    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* The "Read More Testimonials" button is intentionally blue/white. */

.button-outline {
    padding: 16px 32px;

    background: var(--blue);
    border: 0;
    border-radius: 4px;

    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.button-outline:hover {
    background: var(--ink);
    color: var(--gold);
}

/* White-outline phone button in the dark contact band. */

.button-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.button-outline-light:hover {
    background: #ffffff;
    color: var(--blue);
}

.button.small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
}


/* ==========================================================================
   9. Intro Benefit Cards
   ========================================================================== */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin: 42px 0;
}

.icon-card {
    min-height: 250px;
    padding: 28px 22px;

    background: #ffffff;
    border-radius: 4px;
    box-shadow: none;

    text-align: center;
}

.icon-card .prose {
    font-size: 16px;
    letter-spacing: 1px;
}

.icon-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

/* Original-style 48px benefit icons, implemented as inline SVGs. */

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

    width: 58px;
    height: 48px;

    margin: 0 auto 36px;

    color: rgba(40, 40, 40, 0.60);
}

.icon-wrap svg {
    width: auto;
    max-width: 58px;
    height: 48px;

    fill: currentColor;
    stroke: none;
}


/* Coloured intro message cards. */

.intro .icon-grid + .wide-copy {
    max-width: var(--max);
    margin-top: 36px;
    padding: 24px;

    background: #b87333;
    border-radius: 4px;

    color: #ffffff;
}

.intro .wide-copy.emphasis {
    max-width: var(--max);
    margin-top: 24px;
    padding: 24px;

    background: rgba(29, 71, 130, 0.10);
    border-radius: 4px;

    color: var(--ink);
}


/* ==========================================================================
   10. Testimonial Carousels
   ========================================================================== */

.carousel {
    max-width: var(--max);
    margin: 52px auto 28px;
}

.carousel-viewport {
    display: grid;
    overflow: hidden;

    background: #ffffff;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.section-dark .carousel-viewport {
    background: #ffffff;
    color: var(--ink);
}

.carousel-slide {
    grid-area: 1 / 1;

    padding: 42px 52px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);

    transition:
        opacity 0.3s,
        transform 0.3s,
        visibility 0.3s;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.carousel-slide h3 {
    margin: 0 0 20px;

    color: var(--blue);
    font-size: 22px;
    line-height: 1.25;
}

.carousel-slide .prose {
    font-size: 17px;
    letter-spacing: 1px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    margin-top: 18px;
}

.carousel-btn {
    width: 42px;
    height: 42px;

    background: #ffffff;
    border: 1px solid rgba(29, 71, 130, 0.28);
    border-radius: 50%;

    color: var(--blue);
    font-size: 20px;

    cursor: pointer;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    background: #aab5c5;
    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.carousel-dot.active {
    background: var(--gold);
}


/* ==========================================================================
   11. Team Section
   ========================================================================== */

/*
   The full team area is dark.
   Mark and Emelia sit inside centered 80% coloured panels.
*/

.team {
    padding-top: 90px;
    padding-bottom: 80px;
    background: var(--ink);
}

.team-heading-band {
    margin-bottom: 35px;
    background: var(--ink);
}

.team-heading-band .section-title {
    color: #ffffff;
}

.team-band {
    width: 80%;
    max-width: var(--max);
    margin: 0 auto;
}

/*
   Shared internal layout for Mark and Emelia.
   Padding lives INSIDE the coloured panel so text and photos
   do not touch the panel edges.
*/

.team-bio-grid {
    display: grid;
    align-items: end;
    gap: 58px;

    width: 100%;
    margin: 0;
    padding: 40px 5% 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 58px;
}

.bio-grid.reverse {
    grid-template-columns: 2fr 3fr;
}

.bio-copy h3 {
    margin: 0;

    color: var(--blue);
    font-size: 40px;
}

.credentials {
    margin: 0.4rem 0 1.4rem;

    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.bio-copy .prose {
    font-size: 17px;
    letter-spacing: 1px;
}

.bio-social-link {
    margin: 1em 0 0;
    padding-bottom: 20px;
}

.text-link {
    font-weight: 700;
    text-decoration: none;
}

.portrait-wrap {
    display: flex;
    justify-content: center;
}

.portrait {
    display: block;

    width: 100%;
    max-width: 410px;
    height: auto;

    object-fit: contain;

    border-radius: 4px;
    box-shadow: var(--shadow);
}


/* ----- Mark ----- */

.team-mark {
    margin-bottom: 30px;
    padding: 0;

    background: var(--blue);
    color: #ffffff;
}

.team-mark .team-bio-grid {
    grid-template-columns: 3fr 2fr;
}

.team-mark .bio-copy h3,
.team-mark .bio-copy .prose,
.team-mark .text-link {
    color: #ffffff;
}

.team-mark .portrait-wrap {
    align-self: end;
    margin-bottom: 0;
}

.team-mark .portrait {
    margin-bottom: 0;
}


/* ----- Emelia ----- */

.team-emelia {
    margin-bottom: 0;
    padding: 0;

    background: #6d6d6d;
    color: #ffffff;
}

.team-emelia .team-bio-grid {
    grid-template-columns: 2fr 3fr;
}

.team-emelia .bio-copy {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #ffffff;
}

.team-emelia .bio-copy h3,
.team-emelia .bio-copy .prose,
.team-emelia .bio-copy .prose p,
.team-emelia .bio-copy a {
    color: #ffffff;
}

/* Emelia's image is pinned to the lower-left of her image column. */

.team-emelia .portrait-wrap {
    align-self: end;
    justify-content: flex-start;

    width: 100%;
    margin: 0;
}

.team-emelia .portrait {
    margin: 0;
}


/* ==========================================================================
   12. How It Works / Feature Cards
   ========================================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-top: 40px;
}

.feature-card {
    position: relative;

    min-height: 300px;
    padding: 30px 22px 26px;

    background: #ffffff;
    border: 1px solid rgba(29, 71, 130, 0.08);
    border-radius: 4px;
}

.feature-number {
    display: block;
    margin-bottom: 16px;

    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 700;
}

.feature-card .prose {
    letter-spacing: 1px;
}

.feature-card .prose strong {
    color: var(--blue);
}

.section-cta {
    margin-top: 36px;
}

.talk-block {
    max-width: var(--max);
    margin: 70px auto 0;
    text-align: center;
}

.talk-block > .prose {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
}


/* ==========================================================================
   13. Video
   ========================================================================== */

.video-frame {
    position: relative;

    aspect-ratio: 16 / 9;
    overflow: hidden;

    background: #111111;
    border-radius: 4px;
}

.video-frame iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.featured-video {
    box-shadow: var(--shadow);
}


/* ==========================================================================
   14. Promise Section
   ========================================================================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
}

.promise-cols {
    margin-top: 46px;
}

.promise-cols h3,
.candidate-card h3,
.contact-panel h2 {
    margin: 0 0 20px;

    color: var(--blue);
    font-size: 25px;
}

.check-list ul {
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 0.7rem 0;
    padding-left: 28px;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;

    content: "✓";

    color: var(--gold);
    font-weight: 800;
}

.recorded-note {
    max-width: 820px;
    margin: 48px auto 28px;
    padding: 24px 28px;

    background: var(--light);
    border-left: 4px solid var(--gold);

    font-weight: 600;
    text-align: center;
}


/* ==========================================================================
   15. Results / Video Testimonials
   ========================================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    margin: 38px 0 54px;
}

.video-card {
    padding: 12px;

    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    color: var(--ink);
}

.video-card p {
    margin: 12px 6px 5px;
    font-weight: 600;
}


/* ==========================================================================
   16. Right Fit Section
   ========================================================================== */

.fit-cols {
    margin-top: 42px;
}

.fit-cols > article:first-child {
    font-size: 18px;
    letter-spacing: 1px;
}

.candidate-card {
    padding: 30px;

    background: var(--soft);
    border-top: 5px solid var(--gold);
    border-radius: 4px;
}

.right-fit .center {
    margin-top: 40px;
}


/* ==========================================================================
   17. Program / Investment
   ========================================================================== */

.program-list {
    font-size: 18px;
    letter-spacing: 1px;
}

.program-list ol {
    padding: 0;
    list-style: none;
    counter-reset: item;
}

.program-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;

    margin: 0;
    padding: 16px 0;

    border-bottom: 1px solid #dce1e8;

    counter-increment: item;
}

.program-list li::before {
    content: counter(item, decimal-leading-zero);

    color: var(--gold);
    font-family: "Cinzel", serif;
    font-weight: 700;
}

.program-close {
    margin: 34px 0 24px;

    font-weight: 700;
    text-align: center;
}

.program .narrow,
.investment .narrow,
.contact-strip .narrow {
    max-width: var(--max);
}


/* ==========================================================================
   18. Contact Strip
   ========================================================================== */

.contact-strip {
    background: var(--blue);
    color: #ffffff;
}

.contact-strip .prose a {
    color: #ffffff;
}

.contact-card {
    margin: 20px 0;
    font-size: 18px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 28px;
}

.contact-actions.left {
    justify-content: flex-start;
}


/* ==========================================================================
   19. Footer
   ========================================================================== */

.site-footer {
    background: var(--ink);
    color: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    min-height: 110px;
}

.footer-inner p {
    margin: 0;
}

.footer-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}


/* ==========================================================================
   20. Contact Page
   ========================================================================== */

.contact-page {
    padding-top: 76px;
}

.contact-hero {
    padding: 44px 0 52px;

    background: linear-gradient(
        135deg,
        var(--blue),
        #18365f
    );

    color: #ffffff;
}

.contact-hero .eyebrow {
    margin: 0 0 10px;
}

.contact-hero h1 {
    margin: 0px;
    font-size: clamp(42px, 6vw, 68px);
}

.contact-hero p:last-child {
    font-size: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 28px;
}

.contact-panel {
    padding: 36px;

    border: 1px solid #e1e5ea;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(20, 31, 48, 0.06);
}

.contact-panel.accent {
    background: var(--blue);
    border: 0;
    color: #ffffff;
}

.contact-panel.accent h2 {
    color: #ffffff;
}

.contact-panel a:not(.button) {
    font-weight: 600;
}

.contact-form-wrap {
    margin-bottom: 28px;
}

.contact-form-panel {
    max-width: var(--max);
    margin-inline: auto;
}

.contact-form-panel > p {
    margin: 0 0 22px;
    color: var(--muted);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
}

.contact-form-field {
    width: auto;
    margin: 0;
}

.contact-form-field-half {
    width: auto;
}

.contact-form-field-half.contact-form-field-last {
    margin-right: 0;
}

.contact-form-field:not(.contact-form-field-half),
.contact-form-actions {
    grid-column: 1 / -1;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-form-label {
    display: block;
    margin-bottom: 8px;

    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.contact-form-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;

    background: #ffffff;
    border: 1px solid #d6dde7;
    border-radius: 4px;

    color: var(--ink);
    font-family: "Outfit", Arial, sans-serif;
    font-size: 17px;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.contact-form-input::placeholder {
    color: #7a8593;
}

.contact-form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 71, 130, 0.14);
    outline: none;
}

.contact-form-actions {
    width: auto;
    margin-top: 6px;
}

.contact-form-submit {
    min-height: 52px;
    padding: 14px 34px;

    background: var(--gold);
    border: 0;
    border-radius: 4px;

    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.18s,
        background 0.18s,
        color 0.18s;
}

.contact-form-submit:hover {
    background: var(--ink);
    color: var(--gold);
    transform: translateY(-1px);
}


/* ==========================================================================
   21. Responsive: <= 980px
   ========================================================================== */

@media (max-width: 980px) {

    .shell {
        width: 80%;
    }

    .section {
        padding: 50px 0;
    }

    .hero-content {
        padding: 10vw 0;
    }

    .program-banner {
        padding: 50px 0;
    }

    .banner-inner {
        top: auto;
        margin-top: -150px;
        margin-bottom: 0;
    }
}


/* ==========================================================================
   22. Responsive: <= 900px
   ========================================================================== */

@media (max-width: 900px) {

    .site-header {
        height: 92px;
    }

    .brand img {
        width: min(290px, 55vw);
    }

    .hero-copy {
        font-size: 22px;
    }

    .eyebrow {
        font-size: 28px;
    }

    .icon-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bio-grid,
    .bio-grid.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .portrait {
        max-width: 360px;
    }


    /* ----- Team: shared mobile layout ----- */

    .team-bio-grid,
    .team-mark .team-bio-grid,
    .team-emelia .team-bio-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .team-mark .bio-copy,
    .team-emelia .bio-copy {
        order: 1;

        margin-bottom: 0;
        padding-bottom: 0;
    }

    .team-mark .bio-copy .prose p:last-child,
    .team-emelia .bio-copy .prose p:last-child {
        margin-bottom: 0;
    }

    /*
       Both portraits move below the text at 40% width.
       Mark aligns right; Emelia mirrors him on the left.
    */

    .team-mark .portrait-wrap,
    .team-emelia .portrait-wrap {
        order: 2;

        width: 100%;
        margin-top: -10px;
    }

    .team-mark .portrait-wrap {
        justify-content: flex-end;
    }

    .team-emelia .portrait-wrap {
        justify-content: flex-start;
    }

    .team-mark .portrait,
    .team-emelia .portrait {
        width: 40%;
        max-width: none;
        height: auto;
    }
}


/* ==========================================================================
   23. Responsive: <= 767px
   ========================================================================== */

@media (max-width: 767px) {

    .shell {
        width: 80%;
    }

    .section {
        padding: 50px 0;
    }

    .hero-content {
        padding: 10vw 0;
    }

    .program-banner {
        padding: 50px 0;
    }

    .banner-inner {
        top: auto;

        width: 80%;
        margin-top: -150px;
        margin-bottom: 0;
        padding: 36px;
    }

    .banner-inner .prose {
        font-size: 22px;
        line-height: 1.3;
    }

    .button,
    .button-blue,
    .button-gold,
    .button-outline {
        font-size: 16px;
    }
}


/* ==========================================================================
   24. Responsive: <= 700px
   ========================================================================== */

@media (max-width: 700px) {

    .site-header,
    .site-header.scrolled,
    .site-header.solid {
        height: 72px;
    }

    .brand img {
        width: 210px;
    }

    .header-cta {
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .eyebrow {
        font-size: 22px;
    }

    .banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 34px;
    }

    .section-lead {
        font-size: 17px;
    }

    .icon-grid,
    .feature-grid,
    .video-grid,
    .two-col,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .icon-card,
    .feature-card {
        min-height: auto;
    }

    .carousel-slide {
        padding: 30px 24px;
    }

    .bio-copy h3 {
        font-size: 34px;
    }

    .footer-inner {
        flex-direction: column;

        padding: 26px 0;

        text-align: center;
    }

    .contact-form-field-half {
        width: auto;
        margin-right: 0;
    }

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


/* ==========================================================================
   25. Responsive: <= 470px
   ========================================================================== */

@media (max-width: 470px) {

    .brand img {
        display: none;
    }

    .brand-fallback {
        display: block;
        font-size: 13px;
    }

    .header-cta {
        font-size: 11px;
    }

    .button {
        width: 100%;
    }

    .contact-actions {
        flex-direction: column;
    }
}


/* ==========================================================================
   26. Next Cohort Page
   ========================================================================== */

.next-cohort-page {
    padding-top: 76px;
    background: var(--soft);
}

.cohort-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background: linear-gradient(135deg, #16335a, var(--blue));
    color: #ffffff;
    text-align: center;
}

.cohort-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(211, 175, 55, 0.22), transparent 62%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 52px 52px, 52px 52px;
    pointer-events: none;
}

.cohort-hero .shell {
    position: relative;
    z-index: 1;
}

.cohort-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.cohort-logo img {
    width: 138px;
    height: auto;
    border: 3px solid rgba(211, 175, 55, 0.5);
    border-radius: 50%;
}

.cohort-kicker {
    margin: 0 0 12px;
    color: #f0d88a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cohort-title {
    margin: 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.1;
}

.cohort-title-accent {
    color: #f0d88a;
}

.cohort-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: #dce6f5;
    font-size: clamp(18px, 2.5vw, 25px);
    line-height: 1.5;
}

.cohort-divider {
    width: 90px;
    height: 1px;
    margin: 30px auto;
    background: linear-gradient(90deg, transparent, #f0d88a, transparent);
}

.cohort-description {
    max-width: 760px;
    margin: 0 auto;
    color: #f2f6ff;
    font-size: 17px;
    line-height: 1.8;
}

.cohort-description strong {
    font-weight: 700;
}

.cohort-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 10px 24px;
    background: rgba(211, 175, 55, 0.2);
    border: 1px solid rgba(211, 175, 55, 0.48);
    border-radius: 999px;
    color: #ffe8a0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cohort-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.cohort-pricing {
    padding: 62px 0 74px;
}

.cohort-label {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.cohort-heading {
    margin: 10px 0 14px;
    color: var(--blue);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    text-align: center;
}

.cohort-heading-accent {
    color: #b18410;
}

.cohort-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}

.cohort-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 18px 24px;
    background: rgba(29, 71, 130, 0.05);
    border: 1px solid rgba(29, 71, 130, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.cohort-note-icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
}

.cohort-note p {
    margin: 0;
    color: var(--ink);
    line-height: 1.7;
}

.cohort-row-title {
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 4px solid var(--gold);
    color: var(--blue);
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
}

.cohort-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}

.cohort-plan-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.cohort-plan-card {
    height: 100%;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(20, 31, 48, 0.08);
}

.cohort-plan-card.featured {
    border-color: rgba(211, 175, 55, 0.8);
    background: linear-gradient(165deg, #ffffff 0%, #fbf6e9 100%);
}

.cohort-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: var(--gold);
    border-radius: 999px;
    color: #1b1b1b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cohort-plan-name {
    margin: 0 0 12px;
    color: var(--blue);
    font-family: "Cinzel", Georgia, serif;
    font-size: 32px;
}

.cohort-plan-price {
    margin: 0;
    color: #9e790f;
    font-family: "Cinzel", Georgia, serif;
    font-size: 48px;
    line-height: 1;
}

.cohort-plan-period {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
}

.cohort-plan-subtext {
    margin: 10px 0 20px;
    color: var(--muted);
    line-height: 1.6;
}

.cohort-plan-divider {
    height: 1px;
    margin-bottom: 18px;
    background: #dfe5ee;
}

.cohort-plan-note {
    margin: 0 0 16px;
    color: var(--ink);
    line-height: 1.7;
}

.cohort-tax-note {
    margin: 0;
    color: #9e790f;
    font-size: 13px;
    font-weight: 600;
}

.cohort-alumni-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 auto;
    max-width: 900px;
    padding: 22px 24px;
    background: rgba(29, 71, 130, 0.05);
    border: 1px solid rgba(29, 71, 130, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.cohort-alumni-icon {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
}

.cohort-alumni-title {
    margin: 0 0 6px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
}

.cohort-alumni-text {
    margin: 0;
    color: var(--ink);
    line-height: 1.7;
}

.cohort-footer {
    padding: 34px 0 44px;
    background: var(--ink);
    color: #ffffff;
    text-align: center;
}

.cohort-footer-title {
    margin: 0 0 14px;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
}

.cohort-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 14px;
}

.cohort-footer-links a {
    color: #d7deea;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.cohort-footer-copy {
    margin: 0;
    color: #97a2b3;
    font-size: 12px;
}

@media (max-width: 900px) {

    .cohort-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .cohort-hero {
        padding: 50px 0 42px;
    }

    .cohort-pricing {
        padding: 44px 0 56px;
    }

    .cohort-plan-card {
        padding: 26px 22px;
    }

    .cohort-row-title {
        font-size: 26px;
    }
}


/* ==========================================================================
   27. Reduced Motion
   ========================================================================== */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .hero-video {
        display: none;
    }
}
