/* =========================================================
   THE WEALTH & LEGACY SUMMIT
   Main Stylesheet
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
    --navy: #07111f;
    --navy-2: #0b1727;
    --ink: #121722;
    --ivory: #f4f0e8;
    --paper: #fbf8f1;
    --gold: #c99a42;
    --gold-light: #e1b963;
    --muted: #9ba4b0;
    --line: rgba(201, 154, 66, 0.35);

    --ribbon-height: 34px;
    --nav-height: 92px;

    --max-width: 1440px;
    --page-gutter: 48px;

    --transition-fast: 0.25s ease;
    --transition-medium: 0.45s ease;
}


/* =========================================================
   2. RESET / GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    margin: 0;
    padding-top: calc(var(--ribbon-height) + var(--nav-height));

    background: var(--navy);
    color: #ffffff;

    font-family: Inter, system-ui, sans-serif;
    line-height: 1.55;
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(
        var(--max-width),
        calc(100% - var(--page-gutter))
    );

    margin-inline: auto;
}

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

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

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

.gold {
    color: var(--gold-light);
}


/* =========================================================
   3. X5 TOP RIBBON
   ========================================================= */

.topline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 2000;

    height: var(--ribbon-height);

    background: #02070d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    color: #c5cbd2;

    transition:
        transform var(--transition-medium),
        opacity 0.35s ease;
}

.topline__inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 10px;
    letter-spacing: 0.22em;
}

.x5mark {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.is-scrolled .topline {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;
    top: var(--ribbon-height);
    left: 0;
    right: 0;

    z-index: 1500;

    height: var(--nav-height);

    background: rgba(7, 17, 31, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

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

    transition:
        top var(--transition-medium);
        background 0.35s ease;
        box-shadow 0.35s ease;
}

body.is-scrolled .site-header {
    top: 0;

    background: rgba(7, 17, 31, 0.97);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.22);
}

.header__inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.brand__logo {
    width: auto;
    height: 68px;

    object-fit: contain;

    transition:
        height var(--transition-medium),
        filter var(--transition-medium),
        transform var(--transition-medium);
}

.brand:hover .brand__logo {
    transform: translateY(-1px);

    filter:
        drop-shadow(0 0 10px rgba(225, 185, 99, 0.18));
}

body.is-scrolled .brand__logo {
    height: 58px;
}

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

    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav a {
    opacity: 0.88;

    transition:
        color var(--transition-fast),
        opacity var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.nav a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.nav a:last-child {
    padding: 13px 18px;

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

    color: var(--gold-light);
}

.nav a:last-child:hover {
    background: rgba(201, 154, 66, 0.08);
}

.nav-toggle {
    display: none;

    padding: 8px;

    background: none;
    border: 0;

    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;

    width: 26px;
    height: 1px;

    margin: 6px;

    background: #ffffff;
}


/* =========================================================
   5. TYPOGRAPHY / SHARED CONTENT
   ========================================================= */

.eyebrow,
.kicker {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;

    width: 36px;
    height: 1px;

    margin: 0 10px;

    vertical-align: middle;

    background: var(--gold);
}

.hero h1,
.section-heading h2,
.statement h2,
.split-story h2,
.day h2,
.setting h2,
.access h2 {
    margin: 0.15em 0;

    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.93;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 50px;
}

.section-heading--center {
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(40px, 4vw, 66px);
}

.section-heading p:last-child {
    color: #bdc5cf;
    font-size: 17px;
}


/* =========================================================
   6. BUTTONS
   ========================================================= */

.btn {
    min-height: 52px;

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

    padding: 0 26px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        transform: var(--transition-fast);
        filter: var(--transition-fast);
        background: var(--transition-fast);
        border-color: var(--transition-fast);
}

.btn--gold {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--navy);
}

.btn--gold:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.btn--ghost {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(225, 185, 99, 0.65);

    color: #ffffff;
}

.btn--ghost:hover {
    background: rgba(201, 154, 66, 0.12);
}


/* =========================================================
   7. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: calc(
        100svh - var(--ribbon-height) - var(--nav-height)
    );

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-bottom: 82px;
}

.hero__media {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 18, 0.98) 0%,
            rgba(4, 10, 18, 0.82) 34%,
            rgba(4, 10, 18, 0.24) 70%,
            rgba(4, 10, 18, 0.12) 100%
        ),
        url('assets/images/hero.png') center 42% / cover no-repeat;

    transform: scale(1.04);
    will-change: transform;
}

.hero__veil {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15),
        rgba(7, 17, 31, 0.25) 60%,
        rgba(7, 17, 31, 0.78)
    );
}

.hero__content {
    position: relative;
    z-index: 2;

    max-width: 860px;

    padding: 76px 0 88px;
}

.hero h1 {
    font-size: clamp(54px, 6.3vw, 104px);
    letter-spacing: -0.03em;
}

.hero h1 span {
    display: block;
}

.hero__lede {
    max-width: 700px;

    color: #e1e6ec;

    font-size: 19px;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.hero__audience {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    background: rgba(5, 12, 21, 0.9);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

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

.hero__audience-inner {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;

    color: #d6b56f;

    font-size: 10px;
    letter-spacing: 0.16em;
}


/* =========================================================
   8. STATEMENT
   ========================================================= */

.statement {
    padding: 72px 0;
    text-align: center;
}

.statement__inner {
    max-width: 900px;
}

.statement h2 {
    color: #0a1626;
    font-size: clamp(40px, 4.4vw, 72px);
}

.statement h2 em {
    color: #8f651f;
    font-weight: 500;
}

.statement p:last-child {
    color: #565e6b;
    font-size: 18px;
}


/* =========================================================
   9. INTEGRATED / PILLARS
   ========================================================= */

.integrated {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 154, 66, 0.08),
            transparent 38%
        ),
        linear-gradient(180deg, #091526, #050b13);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

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

.pillar {
    min-height: 260px;

    padding: 28px 20px;

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

.pillar:last-child {
    border-right: 0;
}

.pillar__num {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
}

.pillar h3 {
    color: #ffffff;

    font-size: 13px;
    letter-spacing: 0.1em;
}

.pillar p {
    color: #aeb7c2;
    font-size: 13px;
}


/* =========================================================
   10. SPLIT STORY
   ========================================================= */

.split-story {
    padding: 100px 0;
}

.split-story__grid {
    display: grid;
    grid-template-columns: 0.9fr 2.2fr 0.9fr;
    align-items: stretch;
    gap: 28px;
}

.split-story h2 {
    font-size: 48px;
}

.split-story__copy,
.split-story__solution {
    padding: 20px 0;
}

.split-story__visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.story-card {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: flex-end;

    padding: 18px;

    overflow: hidden;

    background-position: center;
    background-size: cover;
}

.story-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 15%,
        rgba(3, 8, 14, 0.86)
    );
}

.story-card span {
    position: relative;

    color: #ffffff;
    font-size: 13px;
}

.story-card--one {
    background-image: url('assets/images/story-silos.png');
}

.story-card--two {
    background-image: url('assets/images/story-decisions.png');
}

.story-card--three {
    background-image: url('assets/images/story-opportunity.png');
}

.story-card--four {
    background-image: url('assets/images/story-alignment.png');
}


/* =========================================================
   11. CONVERSATIONS
   ========================================================= */

.conversations {
    padding: 105px 0;
}

.conversation-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.conversation {
    min-width: 0;

    background: #ffffff;
    border: 1px solid rgba(9, 19, 31, 0.12);
}

.conversation__image {
    height: 220px;

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.15)
        ),
        var(--bg);

    background-position: center;
    background-size: cover;
}

.conversation__body {
    padding: 24px 18px;
}

.conversation__body > span {
    color: #8a6321;

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
}

.conversation h3 {
    min-height: 48px;

    font-size: 12px;
    letter-spacing: 0.07em;
}

.conversation p {
    color: #616874;
    font-size: 13px;
}

/* =========================================================
   PRIVATE TABLE / BEYOND THE STAGE
   ========================================================= */

.private-table {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #07111f;

    color: #ffffff;
}


/* Background Image
   --------------------------------------------------------- */

.private-table__image {
    position: absolute;
    inset: -4%;

    z-index: 0;

    background-image:
        url("assets/images/private-table.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.06);

    transition:
        transform 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);

    will-change: transform;
}


.private-table:hover .private-table__image {
    transform: scale(1.02);
}


/* Dark Gradient Over Image
   --------------------------------------------------------- */

.private-table__shade {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 14, 0.96) 0%,
            rgba(3, 8, 14, 0.84) 28%,
            rgba(3, 8, 14, 0.42) 55%,
            rgba(3, 8, 14, 0.08) 82%
        ),
        linear-gradient(
            180deg,
            rgba(3, 8, 14, 0.10) 0%,
            rgba(3, 8, 14, 0.10) 65%,
            rgba(3, 8, 14, 0.65) 100%
        );

    pointer-events: none;
}


/* Content
   --------------------------------------------------------- */

.private-table__content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;

    padding-top: 110px;
    padding-bottom: 110px;
}


.private-table__content .kicker {
    margin: 0 0 24px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}


.private-table__content h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 6vw, 94px);
    font-weight: 600;

    line-height: 0.93;
    letter-spacing: -0.03em;
}


.private-table__content h2 em {
    display: block;

    margin-top: 12px;

    color: var(--gold-light);

    font-weight: 500;
    font-style: italic;
}


.private-table__content > p:last-child {
    max-width: 630px;

    margin: 32px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.7;
}


/* Decorative Line
   --------------------------------------------------------- */

.private-table__content::before {
    content: "";

    display: block;

    width: 64px;
    height: 1px;

    margin-bottom: 30px;

    background: var(--gold);
}


/* =========================================================
   PRIVATE TABLE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    .private-table {
        min-height: 680px;
    }

    .private-table__shade {
        background:
            linear-gradient(
                90deg,
                rgba(3, 8, 14, 0.92) 0%,
                rgba(3, 8, 14, 0.72) 55%,
                rgba(3, 8, 14, 0.28) 100%
            );
    }

    .private-table__content {
        max-width: 680px;

        padding-top: 90px;
        padding-bottom: 90px;
    }

}


/* =========================================================
   PRIVATE TABLE - MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .private-table {
        min-height: 650px;
        align-items: flex-end;
    }

    .private-table__image {
        background-position: 64% center;
    }

    .private-table__shade {
        background:
            linear-gradient(
                180deg,
                rgba(3, 8, 14, 0.10) 0%,
                rgba(3, 8, 14, 0.40) 35%,
                rgba(3, 8, 14, 0.96) 78%,
                rgba(3, 8, 14, 1) 100%
            );
    }

    .private-table__content {
        padding-top: 240px;
        padding-bottom: 60px;
    }

    .private-table__content h2 {
        font-size: 48px;
    }

    .private-table__content > p:last-child {
        font-size: 15px;
    }

}

/* =========================================================
   12. JOURNEY
   ========================================================= */

.journey {
    padding: 110px 0;

    background: linear-gradient(
        180deg,
        #07111f,
        #050a10
    );
}

.journey-track {
    position: relative;

    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.journey-track::before {
    content: "";

    position: absolute;
    top: 36px;
    left: 7%;
    right: 7%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.stage {
    position: relative;

    padding: 0 16px;

    text-align: center;
}

.stage__marker {
    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

.stage h3 {
    font-size: 13px;
    letter-spacing: 0.08em;
}

.stage p {
    color: #aab4c1;
    font-size: 12px;
}


/* =========================================================
   13. TWO-DAY EXPERIENCE
   ========================================================= */

.two-days {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #03070d;
}

.day {
    position: relative;

    min-height: 630px;

    display: flex;
    align-items: flex-end;

    background-position: center;
    background-size: cover;
}

.day--one {
    background-image: url('assets/images/day-one.png');
}

.day--two {
    background-image: url('assets/images/day-two.png');
}

.day__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(2, 7, 13, 0.12),
        rgba(2, 7, 13, 0.92)
    );
}

.day__content {
    position: relative;

    max-width: 760px;

    padding: 60px 8vw 72px;
}

.day h2 {
    font-size: clamp(52px, 5vw, 82px);
}

.day ul {
    margin: 26px 0 0;
    padding: 0;

    list-style: none;
}

.day li {
    margin: 10px 0;

    color: #e7e9ec;
}

.day li::before {
    content: "✓";

    margin-right: 10px;

    color: var(--gold-light);
}

/* =========================================================
   THE COMPLETE EXPERIENCE
   ========================================================= */

.summit-includes {
    position: relative;

    overflow: hidden;

    padding: 150px 0 145px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(201, 154, 66, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbf8f1 0%,
            #f4f0e8 100%
        );

    color: #07111f;
}


/* Decorative top transition */

.summit-includes::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(1180px, 82vw);
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201, 154, 66, 0.75),
            transparent
        );
}


/* =========================================================
   INTRO
   ========================================================= */

.summit-includes .section-heading {
    max-width: 980px;

    margin: 0 auto 90px;

    text-align: center;
}

.summit-includes .section-heading .kicker {
    margin-bottom: 22px;

    color: #9a722e;
}

.summit-includes .section-heading h2 {
    max-width: 900px;

    margin: 0 auto;

    color: #07111f;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 600;

    line-height: 0.94;
    letter-spacing: -0.03em;
}

.summit-includes .section-heading > p:last-child {
    max-width: 720px;

    margin: 30px auto 0;

    color: #59626d;

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   EXPERIENCE GRID
   ========================================================= */

.summit-includes__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0;

    max-width: 1180px;

    margin: 0 auto;

    border-top:
        1px solid rgba(7, 17, 31, 0.14);

    border-left:
        1px solid rgba(7, 17, 31, 0.14);
}


.summit-include {
    position: relative;

    min-height: 330px;

    padding: 54px 52px 48px;

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

    border-right:
        1px solid rgba(7, 17, 31, 0.14);

    border-bottom:
        1px solid rgba(7, 17, 31, 0.14);

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.summit-include:hover {
    z-index: 2;

    background: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 28px 70px rgba(7, 17, 31, 0.10);
}


/* Number */

.summit-include > span {
    display: block;

    margin-bottom: 48px;

    color: #b08031;

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;

    line-height: 1;
}


/* Heading */

.summit-include h3 {
    max-width: 430px;

    margin: 0 0 17px;

    color: #07111f;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;

    line-height: 1.02;
}


/* Description */

.summit-include p {
    max-width: 470px;

    margin: 0;

    color: #626b75;

    font-size: 14px;
    line-height: 1.75;
}


/* Small gold detail */

.summit-include::after {
    content: "";

    position: absolute;
    left: 52px;
    bottom: 32px;

    width: 38px;
    height: 1px;

    background: #c99a42;

    opacity: 0.65;
}


/* =========================================================
   FEATURED FINAL CARD
   ========================================================= */

.summit-include--featured {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 154, 66, 0.14),
            transparent 30%
        ),
        #07111f;

    color: #ffffff;
}

.summit-include--featured:hover {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 154, 66, 0.18),
            transparent 30%
        ),
        #0b1727;
}

.summit-include--featured > span {
    color: #e1b963;
}

.summit-include--featured h3 {
    color: #ffffff;
}

.summit-include--featured p {
    color: rgba(255, 255, 255, 0.70);
}

.summit-include--featured::after {
    background: #e1b963;
}


/* =========================================================
   CLOSING STATEMENT
   ========================================================= */

.summit-includes__closing {
    max-width: 980px;

    margin: 110px auto 0;

    padding: 70px 70px 0;

    border-top:
        1px solid rgba(7, 17, 31, 0.14);

    text-align: center;
}

.summit-includes__closing > p {
    margin: 0 0 18px;

    color: #9a722e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.summit-includes__closing h3 {
    max-width: 900px;

    margin: 0 auto;

    color: #07111f;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 600;

    line-height: 1.02;
    letter-spacing: -0.025em;
}

.summit-includes__closing .btn {
    margin-top: 42px;

    min-width: 210px;
}


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

@media (max-width: 900px) {

    .summit-includes {
        padding: 110px 0 115px;
    }

    .summit-includes .section-heading {
        margin-bottom: 65px;
    }

    .summit-includes__grid {
        grid-template-columns: 1fr 1fr;
    }

    .summit-include {
        min-height: 300px;

        padding: 42px 36px 42px;
    }

    .summit-include > span {
        margin-bottom: 36px;
    }

    .summit-include::after {
        left: 36px;
        bottom: 26px;
    }

    .summit-includes__closing {
        margin-top: 80px;

        padding:
            55px 35px 0;
    }
}


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

@media (max-width: 560px) {

    .summit-includes {
        padding:
            90px 0 95px;
    }

    .summit-includes .section-heading {
        margin-bottom: 52px;
    }

    .summit-includes .section-heading h2 {
        font-size: 48px;
    }

    .summit-includes .section-heading > p:last-child {
        margin-top: 22px;

        font-size: 15px;
    }

    .summit-includes__grid {
        grid-template-columns: 1fr;

        width: 100%;

        border-left: 0;
    }

    .summit-include {
        min-height: auto;

        padding:
            42px 28px 56px;

        border-left:
            1px solid rgba(7, 17, 31, 0.14);
    }

    .summit-include > span {
        margin-bottom: 30px;

        font-size: 34px;
    }

    .summit-include h3 {
        font-size: 32px;
    }

    .summit-include p {
        font-size: 14px;
    }

    .summit-include::after {
        left: 28px;
        bottom: 28px;
    }

    .summit-includes__closing {
        margin-top: 70px;

        padding:
            48px 10px 0;
    }

    .summit-includes__closing h3 {
        font-size: 38px;
    }

    .summit-includes__closing .btn {
        width: 100%;
    }
}

/* =========================================================
   ACCESS STORY
   ========================================================= */

.access-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 820px;
    background: #07111f;
    overflow: hidden;
}

/* IMAGE
   --------------------------------------------------------- */

.access-story__visual {
    position: relative;
    min-height: 820px;
    overflow: hidden;
}

.access-story__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(7, 17, 31, 0.55) 100%
        );
    pointer-events: none;
}

.access-story__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition:
        transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.access-story:hover .access-story__visual img {
    transform: scale(1);
}

/* CONTENT
   --------------------------------------------------------- */

.access-story__content {
    display: flex;
    align-items: center;
    position: relative;
    padding: 90px 8vw 90px 7vw;
    color: #ffffff;
}

.access-story__content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(201, 154, 66, 0.65),
            transparent
        );
}

.access-story__inner {
    max-width: 650px;
}

.access-story .kicker {
    margin: 0 0 25px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.access-story h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 5.5vw, 92px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.035em;
}

.access-story h2 em {
    display: block;
    color: var(--gold-light);
    font-weight: 500;
    font-style: italic;
}

.access-story__line {
    width: 72px;
    height: 1px;
    margin: 36px 0;
    background: var(--gold);
}

.access-story__inner > p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 1.75;
}

.access-story__lead {
    color: #ffffff !important;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px !important;
    font-weight: 600;
    line-height: 1.35 !important;
}

/* BOTTOM STATEMENT
   --------------------------------------------------------- */

.access-story__statement {
    margin-top: 42px;
    padding-top: 26px;
    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}

.access-story__statement span,
.access-story__statement strong {
    display: block;
}

.access-story__statement span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.access-story__statement strong {
    margin-top: 8px;
    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
}

/* =========================================================
   ACCESS STORY - MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .access-story {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .access-story__visual {
        min-height: 620px;
    }

    .access-story__visual::after {
        background:
            linear-gradient(
                180deg,
                transparent 60%,
                #07111f 100%
            );
    }

    .access-story__content {
        padding: 70px 7vw 90px;
    }

    .access-story__content::before {
        display: none;
    }
}


@media (max-width: 560px) {

    .access-story__visual {
        min-height: 520px;
    }

    .access-story__content {
        padding:
            55px
            var(--mobile-pad)
            75px;
    }

    .access-story h2 {
        font-size: 52px;
    }

    .access-story__lead {
        font-size: 22px !important;
    }
}

/* =========================================================
   14. AUDIENCE
   ========================================================= */

.audience {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.audience-card {
    background: var(--navy-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-card__photo {
    height: 300px;

    background-position: center;
    background-size: cover;

    filter: saturate(0.72) contrast(1.06);
}

.audience-card h3 {
    margin: 0;
    padding: 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.audience-card__photo--owners {
    background-image: url('assets/images/audience-owners.png');
}

.audience-card__photo--families {
    background-image: url('assets/images/audience-families.png');
}

.audience-card__photo--capital {
    background-image: url('assets/images/audience-capital.png');
}

.audience-card__photo--practitioners {
    background-image: url('assets/images/audience-practitioners.png');
}

.audience-card__photo--nextgen {
    background-image: url('assets/images/audience-nextgen.png');
}


/* =========================================================
   15. UTAH SETTING
   ========================================================= */

.setting {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.setting__bg {
    position: absolute;
    inset: 0;

    background:
        url('assets/images/utah.png') center / cover no-repeat;
}

.setting__veil {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 9, 16, 0.95) 0%,
        rgba(3, 9, 16, 0.78) 42%,
        rgba(3, 9, 16, 0.18) 100%
    );
}

.setting__content {
    position: relative;

    max-width: 720px;
}

.setting h2 {
    font-size: 90px;
}

.setting p {
    color: #d5dbe3;
    font-size: 18px;
}

.setting__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    margin-top: 30px;

    color: var(--gold-light);

    font-size: 11px;
    letter-spacing: 0.1em;
}


/* =========================================================
   16. REQUEST ACCESS
   ========================================================= */

.access {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(201, 154, 66, 0.08),
            transparent 35%
        ),
        var(--navy);
}

.access__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 90px;
}

.access h2 {
    font-size: clamp(50px, 5vw, 80px);
}

.access__form-wrap > p {
    color: #c0c8d1;
    font-size: 18px;
}

.access-form {
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.access-form label {
    display: block;
    margin-bottom: 14px;
}

.access-form label span {
    display: block;

    margin-bottom: 7px;

    color: #b7bec7;

    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.access-form input:not([type="checkbox"]) {
    width: 100%;

    padding: 15px 16px;

    background: var(--navy-2);
    border: 1px solid rgba(255, 255, 255, 0.13);
    outline: none;

    color: #ffffff;
}

.access-form input:not([type="checkbox"]):focus {
    border-color: var(--gold);
}

.access-form .btn {
    width: 100%;
    margin-top: 6px;
}

.form-note {
    color: #8d96a2 !important;
    font-size: 11px !important;
    text-align: center;
}


/* =========================================================
   17. FOOTER
   ========================================================= */

.footer {
    background: #03070d;
    border-top: 1px solid var(--line);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: center;
    gap: 30px;

    padding: 44px 0;
}

.brand__logo--footer {
    height: 76px;
}

.footer__x5 {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #b8c0ca;

    font-size: 10px;
    letter-spacing: 0.18em;
}

.footer__x5 strong {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
}

.footer__date {
    justify-self: end;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__date span {
    color: var(--gold-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 0 28px;

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

    color: #7f8995;
    font-size: 11px;
}

.footer__bottom nav {
    display: flex;
    gap: 16px;
}

.footer__bottom a:hover {
    color: var(--gold-light);
}


/* =========================================================
   18. REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* =========================================================
   19. LARGE TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1200px) {
    .nav {
        gap: 14px;
    }

    .nav a {
        font-size: 10px;
    }

    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pillar:nth-child(4) {
        border-right: 0;
    }

    .conversation-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .journey-track {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .journey-track::before {
        display: none;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   20. TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {
    :root {
        --ribbon-height: 30px;
        --nav-height: 76px;
        --page-gutter: 30px;
    }

    .brand__logo {
        height: 54px;
    }

    body.is-scrolled .brand__logo {
        height: 48px;
    }

    .nav-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 18px 24px;

        background: rgba(7, 17, 31, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
            0 24px 40px rgba(0, 0, 0, 0.26);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 11px 0;
    }

    .nav a:last-child {
        padding: 11px 0;

        border: 0;
    }

    .hero {
        min-height: 720px;
        padding-bottom: 0;
    }

    .hero__content {
        min-height: 650px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        padding: 70px 0 64px;
    }

    .hero__media {
        background-position: 62% center;
    }

    .hero__audience {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .hero__audience-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 30px;

        padding: 16px 0;

        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero__audience-inner::-webkit-scrollbar {
        display: none;
    }

    .hero__audience-inner span {
        flex: 0 0 auto;
    }

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

    .pillar {
        border-bottom: 1px solid var(--line);
    }

    .pillar:nth-child(even) {
        border-right: 0;
    }

    .split-story__grid {
        grid-template-columns: 1fr;
    }

    .split-story__visual {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
    }

    .split-story__solution {
        order: 3;
    }

    .story-card {
        min-height: 300px;
    }

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

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

    .two-days {
        grid-template-columns: 1fr;
    }

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

    .access__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .footer__date {
        justify-self: start;
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
    }
}


/* =========================================================
   21. SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {
    :root {
        --ribbon-height: 28px;
        --nav-height: 72px;
        --page-gutter: 28px;
    }

    .topline__inner {
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .x5mark {
        font-size: 22px;
    }

    .brand__logo {
        max-width: 210px;
        height: 48px;
    }

    body.is-scrolled .brand__logo {
        height: 44px;
    }

    .hero {
        min-height: auto;
    }

    .hero__content {
        min-height: 620px;
        padding: 52px 0 54px;
    }

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

    .hero__lede {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .statement,
    .integrated,
    .split-story,
    .conversations,
    .journey,
    .audience,
    .access {
        padding: 72px 0;
    }

    .pillars-grid,
    .conversation-grid,
    .journey-track,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        border-right: 0;
    }

    .split-story__visual {
        grid-template-columns: 1fr 1fr;
    }

    .story-card {
        min-height: 260px;
    }

    .day {
        min-height: 560px;
    }

    .day__content {
        padding: 40px 24px 54px;
    }

    .setting h2 {
        font-size: 68px;
    }

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

    .brand__logo--footer {
        height: 64px;
    }

    .footer__bottom nav {
        flex-wrap: wrap;
    }
}


/* =========================================================
   22. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   22. BRAND LOGO IMAGE / SAFE FALLBACKS
   ========================================================= */

.brand__logo {
    display: block;
    width: auto;
    height: 68px;
    max-width: 330px;
    object-fit: contain;
}

.brand__logo--footer {
    height: 72px;
}

body.is-scrolled .brand__logo {
    height: 58px;
}

/* Keep image-driven sections visually intentional even while assets load. */
.hero,
.day,
.setting,
.story-card,
.conversation__image,
.audience-card__photo {
    background-color: #0b1727;
}

@media (max-width: 900px) {
    .brand__logo {
        height: 54px;
        max-width: 250px;
    }

    body.is-scrolled .brand__logo {
        height: 48px;
    }
}

@media (max-width: 560px) {
    .brand__logo {
        height: 46px;
        max-width: 205px;
    }
}


/* =========================================================
   FEATURED SPEAKERS
   ========================================================= */

.speakers {
    position: relative;
    overflow: hidden;
    padding: 120px 0 125px;
    background: radial-gradient(circle at 85% 8%, rgba(201,154,66,.10), transparent 30%), var(--paper);
}

.speakers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, 82vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201,154,66,.72), transparent);
}

.speakers__intro {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
}

.speakers__intro h2 {
    max-width: 780px;
    margin: .12em 0 0;
    color: #0a1626;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5.2vw, 80px);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.025em;
}

.speakers__intro-copy { max-width: 610px; padding-bottom: 6px; }
.speakers__intro-copy > p { margin: 0; color: #4f5864; font-size: 17px; }
.speakers__intro-copy .speakers__note {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(9,19,31,.15);
    color: #8a6321;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.speaker-card {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    isolation: isolate;
    background: #091522;
    border: 1px solid rgba(9,19,31,.12);
    box-shadow: 0 22px 55px rgba(7,17,31,.10);
}

.speaker-card__photo {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(180deg, rgba(4,10,18,.02) 0%, rgba(4,10,18,.05) 42%, rgba(4,10,18,.48) 72%, rgba(4,10,18,.98) 100%), var(--speaker-image) center top / cover no-repeat;
    transform: scale(1.01);
    filter: saturate(.78) contrast(1.06);
    transition: transform 1.05s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}

.speaker-card__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg, rgba(4,10,18,.02) 0%, rgba(4,10,18,.06) 35%, rgba(4,10,18,.32) 62%, rgba(4,10,18,.96) 100%);
}

.speaker-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 0;
    border: 1px solid rgba(225,185,99,0);
    pointer-events: none;
    transition: border-color .45s ease;
}

.speaker-card:hover .speaker-card__photo { transform: scale(1.055); filter: saturate(.92) contrast(1.04); }
.speaker-card:hover::after { border-color: rgba(225,185,99,.50); }

.speaker-card__content {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    color: #fff;
}

.speaker-card__topic {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    margin: 0;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.speaker-card__identity { padding-bottom: 22px; border-bottom: 1px solid rgba(225,185,99,.35); }
.speaker-card__identity h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 36px; font-weight: 600; line-height: 1; }
.speaker-card__identity > p { margin: 8px 0 0; color: #c9d0d8; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.speaker-card__question { padding-top: 21px; }
.speaker-card__question span { display: block; margin-bottom: 8px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.speaker-card__question p { margin: 0; color: #eef1f4; font-family: "Cormorant Garamond", serif; font-size: 20px; line-height: 1.24; }

.speakers__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(9,19,31,.14);
}

.speakers__footer p { max-width: 720px; margin: 0; color: #626a74; font-size: 14px; }
.btn--dark { flex: 0 0 auto; background: #07111f; border-color: #07111f; color: #fff; }
.btn--dark:hover { transform: translateY(-1px); background: #0c1d31; border-color: var(--gold); color: var(--gold-light); }

@media (max-width: 1100px) {
    .speakers__intro { grid-template-columns: 1fr; gap: 24px; }
    .speakers-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
    .speakers { padding: 78px 0 84px; }
    .speakers-grid { grid-template-columns: 1fr; }
    .speaker-card, .speaker-card__content { min-height: 540px; }
    .speaker-card__content { padding: 28px; }
    .speaker-card__topic { top: 25px; left: 25px; right: 25px; }
    .speakers__footer { flex-direction: column; align-items: flex-start; }
    .speakers__footer .btn { width: 100%; }
}

/* =========================================================
   REGISTRATION / CHECKOUT
   ========================================================= */

.registration-page,
.success-page {
    background: var(--paper);
    color: var(--ink);
}

.form-error {
    margin: 0 0 24px;
    padding: 14px 16px;

    border: 1px solid rgba(201, 154, 66, 0.35);
    background: rgba(201, 154, 66, 0.08);

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    line-height: 1.6;
}

.registration-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #07111f;
}

.registration-hero__bg,
.success-hero__bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/hero.png') center 45% / cover no-repeat;
    transform: scale(1.03);
}

.registration-hero__veil,
.success-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,8,14,.96), rgba(3,8,14,.72) 48%, rgba(3,8,14,.22));
}

.registration-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 90px 0 74px;
    color: #fff;
}

.registration-hero h1,
.success-card h1 {
    margin: .08em 0 .18em;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 6vw, 92px);
    line-height: .94;
    font-weight: 600;
}

.registration-hero__content > p:last-child {
    max-width: 690px;
    color: #d9dfe6;
    font-size: 18px;
}

.registration-shell {
    padding: 100px 0 120px;
}

.registration-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
    gap: 72px;
    align-items: start;
}

.registration-form-panel {
    max-width: 900px;
}

.registration-form-heading {
    margin-bottom: 42px;
}

.registration-form-heading h2 {
    margin: .12em 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    color: #07111f;
}

.registration-form-heading > p:last-child {
    color: #646c76;
}

.registration-form label {
    display: block;
    margin-bottom: 18px;
}

.registration-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #555f6b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(7,17,31,.16);
    background: #fff;
    color: #121722;
    outline: none;
    font: inherit;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.registration-form textarea {
    resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,154,66,.08);
}

.registration-check {
    display: grid !important;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid rgba(7,17,31,.1);
}

.registration-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.registration-check span {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.55;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 500 !important;
}

.registration-submit {
    width: 100%;
    min-height: 60px;
    margin-top: 12px;
}

.registration-security {
    margin: 14px 0 0;
    text-align: center;
    color: #7a828c;
    font-size: 11px;
}

.registration-alert {
    margin-bottom: 28px;
    padding: 15px 18px;
    border-left: 3px solid #b26743;
    background: #fff3ed;
    color: #723b23;
}

.registration-summary {
    position: sticky;
    top: calc(var(--nav-height) + 28px);
}

.registration-summary__card {
    padding: 38px;
    background: #07111f;
    color: #fff;
    box-shadow: 0 28px 70px rgba(7,17,31,.18);
}

.registration-summary__card h3 {
    margin: .15em 0 .8em;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1;
}

.registration-summary__line,
.registration-summary__price {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.registration-summary__line span,
.registration-summary__price span {
    color: #9fa8b3;
    font-size: 12px;
}

.registration-summary__line strong {
    text-align: right;
}

.registration-summary__price {
    margin-top: 6px;
    align-items: end;
    border-color: rgba(201,154,66,.5);
}

.registration-summary__price strong {
    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1;
}

.registration-summary ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.registration-summary li {
    margin: 11px 0;
    color: #d7dde4;
    font-size: 13px;
}

.registration-summary li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--gold-light);
}

.registration-summary__note {
    margin: 25px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #8f99a5;
    font-size: 11px;
}

.success-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #07111f;
}

.success-card {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 100px 0;
    color: #fff;
}

.success-lede {
    max-width: 700px;
    color: #d8dfe6;
    font-size: 20px;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 760px;
    margin: 36px 0;
    background: rgba(201,154,66,.35);
}

.success-details > div {
    padding: 20px;
    background: rgba(7,17,31,.88);
}

.success-details span,
.success-details strong {
    display: block;
}

.success-details span {
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .registration-grid { grid-template-columns: 1fr; gap: 50px; }
    .registration-summary { position: relative; top: auto; }
}

@media (max-width: 560px) {
    .registration-shell { padding: 70px 0 85px; }
    .registration-hero { min-height: 400px; }
    .registration-hero__content { padding: 70px 0 55px; }
    .registration-summary__card { padding: 28px 24px; }
    .success-details { grid-template-columns: 1fr; }
}

/* =========================================================
   TWO-DAY EXPERIENCE — MOBILE ALIGNMENT
   ========================================================= */

@media (max-width: 560px) {

    .two-days {
        width: 100%;
        grid-template-columns: 1fr;

        padding-left: 14px;
        padding-right: 14px;

        gap: 14px;

        background: #03070d;
    }

    .two-days .day {
        width: 100%;
        min-width: 0;
        max-width: 100%;

        min-height: 560px;

        overflow: hidden;
    }

    .two-days .day__content {
        width: 100%;
        max-width: 100%;

        padding: 40px 22px 54px;
    }

    .two-days .day h2 {
        max-width: 100%;

        font-size: clamp(42px, 12vw, 54px);
        line-height: 0.95;

        overflow-wrap: normal;
    }

    .two-days .day ul {
        width: 100%;
        max-width: 100%;
    }

}

/* =========================================================
   MOBILE TYPOGRAPHY — GLOBAL FIX
   ========================================================= */

@media (max-width: 560px) {

    /* Main page headlines */
    h1,
    .hero h1 {
        font-size: clamp(38px, 11vw, 48px) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.025em !important;

        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* Major section headlines */
    h2,
    .section-heading h2,
    .statement h2,
    .split-story h2,
    .day h2,
    .setting h2,
    .access h2,
    .private-table__content h2,
    .access-story h2,
    .speakers__intro h2 {
        font-size: clamp(34px, 9.5vw, 44px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.02em !important;

        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* Long words / announcement-style headings */
    .speaker-announcement h1,
    .speaker-announcement h2 {
        font-size: clamp(31px, 8.5vw, 40px) !important;
    }

    /* Gold kicker labels */
    .kicker,
    .eyebrow {
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: 0.16em;
    }
}

/* =========================================================
   ACCESS FORM CONFIRMATION
   ========================================================= */

.access-confirmation {
    position: relative;
    padding: 48px 44px;
    border: 1px solid rgba(201, 154, 66, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );
    box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.access-confirmation__mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    margin-bottom: 28px;

    border: 1px solid rgba(201,154,66,0.65);
    border-radius: 50%;

    color: #c99a42;
    font-size: 20px;
}

.access-confirmation h3 {
    margin: 8px 0 20px;

    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.05;

    color: #fff;
}

.access-confirmation > p:not(.kicker) {
    max-width: 560px;
    margin: 0 0 16px;

    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.75;
}

.access-confirmation__note {
    display: block;

    margin-top: 30px;
    padding-top: 20px;

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

    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (max-width: 560px) {

    .access-confirmation {
        padding: 34px 26px;
    }

    .access-confirmation h3 {
        font-size: 30px;
    }
}

/* =========================================================
   ACCESS FORM CONSENT CHECKBOX
   ========================================================= */

.form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;

    margin: 18px 0 22px;
}

.form-consent input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px;

    margin: 2px 0 0 !important;
    padding: 0 !important;

    background: transparent !important;

    accent-color: var(--gold);

    cursor: pointer;
}

.form-consent span {
    display: block !important;

    margin: 0 !important;

    color: #b7bec7 !important;

    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;

    letter-spacing: 0 !important;
    text-transform: none !important;
}

@media (max-width: 560px) {

    .form-consent {
        gap: 10px;
    }

    .form-consent span {
        font-size: 11px !important;
    }
}

.footer__employee-link {
    margin-left: 8px;
    padding-left: 16px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--gold-light) !important;

    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer__employee-link:hover {
    color: #ffffff !important;
}

@media (max-width: 560px) {

    .footer__employee-link {
        margin-left: 0;
        padding-left: 0;

        border-left: 0;
    }

}

/* =========================================================
   WLS PARTNERSHIP OPPORTUNITY
   ========================================================= */

.partner-opportunity {
    position: relative;

    overflow: hidden;

    padding: 145px 0 140px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(201, 154, 66, 0.11),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbf8f1,
            #f3eee4
        );

    color: #07111f;
}


.partner-opportunity::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(1180px, 82vw);
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201, 154, 66, 0.75),
            transparent
        );
}


/* INTRO */

.partner-opportunity__intro {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items: end;

    gap: 90px;

    margin-bottom: 75px;
}


.partner-opportunity__heading h2 {
    max-width: 720px;

    margin: 8px 0 0;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(58px, 6vw, 92px);

    font-weight: 600;

    line-height: 0.92;

    letter-spacing: -0.035em;
}


.partner-opportunity__heading h2 em {
    display: block;

    color: #9a722e;

    font-weight: 500;
}


.partner-opportunity__copy {
    max-width: 590px;

    padding-bottom: 8px;
}


.partner-opportunity__copy p {
    margin: 0 0 18px;

    color: #5d6670;

    font-size: 16px;

    line-height: 1.75;
}


/* AVAILABILITY */

.partner-opportunity__availability {
    display: grid;

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

    align-items: center;

    gap: 24px;

    margin-bottom: 55px;
}


.partner-opportunity__availability p {
    margin: 0;

    color: #9a722e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.partner-opportunity__line {
    height: 1px;

    background:
        rgba(7, 17, 31, 0.14);
}


/* VALUE GRID */

.partner-opportunity__grid {
    display: grid;

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

    border-top:
        1px solid rgba(7, 17, 31, 0.13);

    border-left:
        1px solid rgba(7, 17, 31, 0.13);
}


.partner-value {
    position: relative;

    min-height: 410px;

    padding: 48px 42px;

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

    border-right:
        1px solid rgba(7, 17, 31, 0.13);

    border-bottom:
        1px solid rgba(7, 17, 31, 0.13);

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.partner-value:hover {
    z-index: 2;

    background: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 30px 70px
        rgba(7, 17, 31, 0.10);
}


.partner-value__number {
    display: block;

    margin-bottom: 58px;

    color: #b08031;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 42px;

    line-height: 1;
}


.partner-value__label {
    margin: 0 0 12px !important;

    color: #9a722e !important;

    font-size: 9px !important;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.partner-value h3 {
    max-width: 340px;

    margin: 0 0 18px;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(30px, 3vw, 41px);

    font-weight: 600;

    line-height: 1;
}


.partner-value > p:last-child {
    max-width: 390px;

    margin: 0;

    color: #626b75;

    font-size: 14px;

    line-height: 1.75;
}


/* FOOTER */

.partner-opportunity__footer {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-top: 75px;

    padding-top: 48px;

    border-top:
        1px solid rgba(7, 17, 31, 0.14);
}


.partner-opportunity__footer-kicker {
    margin: 0 0 10px;

    color: #9a722e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.partner-opportunity__footer h3 {
    max-width: 650px;

    margin: 0;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(36px, 4vw, 54px);

    font-weight: 600;

    line-height: 1;
}


/* TABLET */

@media (max-width: 900px) {

    .partner-opportunity {
        padding:
            105px 0 110px;
    }


    .partner-opportunity__intro {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 60px;
    }


    .partner-opportunity__grid {
        grid-template-columns: 1fr;
    }


    .partner-value {
        min-height: 330px;
    }


    .partner-opportunity__footer {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* MOBILE */

@media (max-width: 560px) {

    .partner-opportunity {
        padding:
            85px 0 90px;
    }


    .partner-opportunity__heading h2 {
        font-size: 48px;
    }


    .partner-opportunity__copy p {
        font-size: 15px;
    }


    .partner-opportunity__availability {
        grid-template-columns: 1fr;

        gap: 12px;

        text-align: center;
    }


    .partner-opportunity__availability
    .partner-opportunity__line {
        display: none;
    }


    .partner-value {
        min-height: auto;

        padding:
            40px 28px 48px;
    }


    .partner-value__number {
        margin-bottom: 34px;

        font-size: 34px;
    }


    .partner-value h3 {
        font-size: 34px;
    }


    .partner-opportunity__footer {
        margin-top: 60px;

        padding-top: 38px;
    }


    .partner-opportunity__footer h3 {
        font-size: 38px;
    }


    .partner-opportunity__footer .btn {
        width: 100%;
    }

}


/* =========================================================
   WLS PARTNERS / SPONSORS PAGE
   IMAGE-ENHANCED VERSION
   ========================================================= */

.partners-page {
    background: var(--paper);
    color: var(--ink);
}


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

.partners-hero {
    position: relative;

    min-height: 860px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #07111f;

    color: #ffffff;
}


.partners-hero__media {
    position: absolute;
    inset: -3%;

    background:
        url('/assets/images/partners/partners-hero.png')
        center 45% / cover no-repeat;

    transform: scale(1.04);

    filter:
        saturate(0.72)
        contrast(1.06);
}


.partners-hero__veil {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 14, 0.97) 0%,
            rgba(3, 8, 14, 0.88) 34%,
            rgba(3, 8, 14, 0.46) 64%,
            rgba(3, 8, 14, 0.22) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 8, 14, 0.12),
            rgba(3, 8, 14, 0.72)
        );
}


.partners-hero__inner {
    position: relative;
    z-index: 2;

    max-width: 1050px;

    padding: 145px 0 135px;
}


.partners-hero .kicker {
    margin-bottom: 28px;
}


.partners-hero h1 {
    max-width: 1000px;

    margin: 0;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(68px, 8vw, 120px);

    font-weight: 600;

    line-height: 0.87;

    letter-spacing: -0.045em;
}


.partners-hero h1 em {
    display: block;

    color: var(--gold-light);

    font-weight: 500;
}


.partners-hero__inner
> p:not(.kicker) {
    max-width: 720px;

    margin: 38px 0 0;

    color:
        rgba(255,255,255,0.76);

    font-size: 18px;

    line-height: 1.75;
}


.partners-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 42px;
}


/* =========================================================
   WHY PARTNER
   ========================================================= */

.partners-benefits {
    padding: 145px 0 150px;

    background:
        linear-gradient(
            180deg,
            #fbf8f1,
            #f4efe6
        );
}


.partners-benefits .section-heading {
    max-width: 860px;

    margin-bottom: 75px;
}


.partners-benefits
.section-heading h2 {
    margin: 8px 0 20px;

    color: #07111f;

    font-size:
        clamp(54px, 6vw, 86px);

    line-height: 0.94;

    letter-spacing: -0.03em;
}


.partners-benefits
.section-heading > p:last-child {
    max-width: 680px;

    color: #626b75;

    font-size: 17px;

    line-height: 1.75;
}


.partners-benefits__grid {
    display: grid;

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

    border-top:
        1px solid rgba(7,17,31,.14);

    border-left:
        1px solid rgba(7,17,31,.14);
}


.partners-benefits__grid article {
    min-height: 390px;

    padding: 46px 34px 50px;

    background:
        rgba(255,255,255,.5);

    border-right:
        1px solid rgba(7,17,31,.14);

    border-bottom:
        1px solid rgba(7,17,31,.14);
}


.partners-benefits__grid
article > span {
    display: block;

    margin-bottom: 55px;

    color: #ae8032;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;
}


.partners-benefits__grid h3 {
    margin: 0 0 17px;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 33px;

    line-height: 1;
}


.partners-benefits__grid p {
    margin: 0;

    color: #626b75;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   THE ROOM IMAGE STORY
   ========================================================= */

.partner-room {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    min-height: 780px;

    background: #07111f;

    color: #ffffff;
}


.partner-room__visual {
    min-height: 780px;

    overflow: hidden;
}


.partner-room__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(.75)
        contrast(1.04);
}


.partner-room__content {
    display: flex;

    align-items: center;

    padding:
        90px 7vw;
}


.partner-room__inner {
    max-width: 620px;
}


.partner-room__inner h2 {
    margin: 8px 0 32px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(54px, 5.5vw, 88px);

    font-weight: 600;

    line-height: .93;

    letter-spacing: -.035em;
}


.partner-room__inner h2 em {
    display: block;

    color:
        var(--gold-light);

    font-weight: 500;
}


.partner-room__lead {
    color: #ffffff !important;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px !important;

    font-weight: 600;
}


.partner-room__inner > p {
    color:
        rgba(255,255,255,.70);

    font-size: 16px;

    line-height: 1.75;
}


.partner-room__statement {
    margin-top: 42px;

    padding-top: 28px;

    border-top:
        1px solid rgba(255,255,255,.14);
}


.partner-room__statement span,
.partner-room__statement strong {
    display: block;
}


.partner-room__statement span {
    color:
        rgba(255,255,255,.46);

    font-size: 9px;

    letter-spacing: .15em;
}


.partner-room__statement strong {
    margin-top: 8px;

    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;
}


/* =========================================================
   AUDIENCE
   ========================================================= */

.partner-audience {
    padding: 130px 0 140px;

    background:
        linear-gradient(
            180deg,
            #07111f,
            #050b13
        );
}


.partner-audience__intro {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 70px;
}


.partner-audience__intro h2 {
    margin: 8px 0 0;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(52px, 6vw, 84px);

    line-height: .94;
}


.partner-audience__intro > p {
    color:
        rgba(255,255,255,.68);

    line-height: 1.75;
}


.partner-audience__grid {
    display: grid;

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

    border-top:
        1px solid rgba(225,185,99,.28);

    border-left:
        1px solid rgba(225,185,99,.28);
}


.partner-audience__item {
    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content:
        space-between;

    padding: 28px 26px;

    border-right:
        1px solid rgba(225,185,99,.28);

    border-bottom:
        1px solid rgba(225,185,99,.28);
}


.partner-audience__item span {
    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;
}


.partner-audience__item strong {
    max-width: 220px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 24px;

    line-height: 1.05;
}


/* =========================================================
   PARTNERSHIP LEVELS
   ========================================================= */

.partner-levels {
    padding: 150px 0 160px;

    background:
        linear-gradient(
            180deg,
            #fbf8f1,
            #f3eee4
        );
}


.partner-levels__intro {
    max-width: 950px;

    margin-bottom: 90px;
}


.partner-levels__intro h2 {
    margin: 8px 0 22px;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(54px,6vw,88px);

    line-height: .94;
}


.partner-levels__intro
> p:last-child {
    max-width: 700px;

    color: #626b75;

    font-size: 17px;

    line-height: 1.75;
}


.partner-level {
    position: relative;

    margin-bottom: 30px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid rgba(7,17,31,.13);

    box-shadow:
        0 24px 65px
        rgba(7,17,31,.07);
}


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

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--gold-light),
            var(--gold)
        );
}


.partner-level__heading {
    display: grid;

    grid-template-columns:
        1fr 260px;

    gap: 50px;

    padding:
        54px 58px 45px;

    border-bottom:
        1px solid rgba(7,17,31,.11);
}


.partner-level__number {
    display: block;

    margin-bottom: 25px;

    color: #b08031;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;
}


.partner-level__label {
    margin: 0 0 12px;

    color: #946c2b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .17em;
}


.partner-level__heading h3 {
    max-width: 760px;

    margin: 0;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(36px,4vw,54px);

    font-weight: 600;

    line-height: 1;
}


.partner-level__price {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: 38px;

    border-left:
        1px solid rgba(7,17,31,.11);
}


.partner-level__price span {
    margin-bottom: 8px;

    color: #8f7652;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .14em;
}


.partner-level__price strong {
    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 50px;

    line-height: 1;
}


.partner-level__price small {
    margin-top: 10px;

    color: #9a722e;

    font-size: 9px;

    text-transform: uppercase;
}


.partner-level__body {
    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 70px;

    padding:
        50px 58px 55px;
}


.partner-level__description p {
    max-width: 430px;

    margin: 0;

    color: #626b75;

    font-size: 16px;

    line-height: 1.75;
}


.partner-level__includes-title {
    margin: 0 0 20px;

    color: #946c2b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.partner-level__includes ul {
    display: grid;

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

    gap: 12px 30px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.partner-level__includes li {
    position: relative;

    padding-left: 23px;

    color: #454e59;

    font-size: 13px;

    line-height: 1.6;
}


.partner-level__includes li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #a87b2f;
}


.partner-level__footer {
    display: flex;

    justify-content: flex-end;

    padding:
        0 58px 52px;
}


.partner-level--presenting {
    border-color:
        rgba(201,154,66,.45);

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(201,154,66,.10),
            transparent 28%
        ),
        #ffffff;
}


.partner-level--presenting::after {
    content:
        "SIGNATURE PARTNERSHIP";

    position: absolute;

    top: 0;
    right: 0;

    padding: 10px 14px;

    background:
        var(--gold);

    color: #07111f;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .13em;
}


/* =========================================================
   SIGNATURE IMAGE HERO
   ========================================================= */

.signature-hero {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background: #07111f;
}


.signature-hero__media {
    position: absolute;

    inset: 0;

    background:
        url('/assets/images/partners/signature-experience.png')
        center / cover no-repeat;
}


.signature-hero__veil {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3,8,14,.08),
            rgba(3,8,14,.35) 45%,
            rgba(3,8,14,.96)
        );
}


.signature-hero__content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    padding-bottom: 90px;
}


.signature-hero h2 {
    margin: 8px 0 20px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(58px,6vw,92px);

    line-height: .93;
}


.signature-hero h2 em {
    display: block;

    color:
        var(--gold-light);
}


.signature-hero__content > p:last-child {
    max-width: 600px;

    color:
        rgba(255,255,255,.72);

    font-size: 17px;
}


/* =========================================================
   SIGNATURE EXPERIENCES
   ========================================================= */

.signature-partnerships {
    padding: 140px 0 150px;

    background:
        #07111f;
}


.signature-partnerships__intro {
    max-width: 900px;

    margin-bottom: 70px;
}


.signature-partnerships__intro h2 {
    margin: 8px 0 20px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(54px,6vw,88px);

    line-height: .94;
}


.signature-partnerships__intro h2 em {
    display: block;

    color:
        var(--gold-light);
}


.signature-partnerships__intro
> p:last-child {
    max-width: 700px;

    color:
        rgba(255,255,255,.68);

    font-size: 17px;

    line-height: 1.75;
}


/* MAIN IMAGE CARDS */

.signature-feature-grid {
    display: grid;

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

    gap: 18px;

    margin-bottom: 70px;
}


.signature-feature {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    background: #091522;
}


.signature-feature__image {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3,8,14,.05),
            rgba(3,8,14,.18) 45%,
            rgba(3,8,14,.96)
        ),
        var(--signature-image)
        center / cover no-repeat;

    transition:
        transform 1s ease;

    transform: scale(1.01);
}


.signature-feature:hover
.signature-feature__image {
    transform: scale(1.045);
}


.signature-feature__content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 38px;
}


.signature-feature__content > span {
    display: block;

    margin-bottom: 20px;

    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 32px;
}


.signature-feature__label {
    margin: 0 0 10px !important;

    color:
        var(--gold-light) !important;

    font-size: 9px !important;

    font-weight: 800;

    letter-spacing: .16em;
}


.signature-feature h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 38px;

    line-height: 1;
}


.signature-feature__content
> p:last-child {
    max-width: 500px;

    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.7;
}


/* SECONDARY OPPORTUNITIES */

.signature-secondary-grid {
    display: grid;

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

    border-top:
        1px solid rgba(225,185,99,.27);

    border-left:
        1px solid rgba(225,185,99,.27);
}


.signature-secondary {
    min-height: 300px;

    padding: 34px 27px;

    border-right:
        1px solid rgba(225,185,99,.27);

    border-bottom:
        1px solid rgba(225,185,99,.27);
}


.signature-secondary > span {
    display: block;

    margin-bottom: 42px;

    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;
}


.signature-secondary h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 26px;

    line-height: 1.04;
}


.signature-secondary p {
    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.7;
}


.signature-partnerships__footer {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

    margin-top: 60px;

    padding-top: 38px;

    border-top:
        1px solid rgba(225,185,99,.25);
}


.signature-partnerships__footer p {
    max-width: 650px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.partner-philosophy {
    padding: 145px 0;

    background:
        linear-gradient(
            180deg,
            #fbf8f1,
            #f4efe6
        );
}


.partner-philosophy__grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}


.partner-philosophy__heading h2 {
    margin: 8px 0 0;

    color: #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(54px,6vw,86px);

    line-height: .94;
}


.partner-philosophy__heading h2 em {
    display: block;

    color: #9a722e;
}


.partner-philosophy__copy p {
    color: #626b75;

    font-size: 16px;

    line-height: 1.75;
}


.partner-philosophy__copy strong {
    display: block;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(7,17,31,.14);

    color: #9a722e;

    font-size: 10px;

    letter-spacing: .12em;
}


/* =========================================================
   PARTNERSHIP INQUIRY / FINAL IMAGE CTA
   ========================================================= */

.partner-contact {
    position: relative;

    min-height: 780px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #07111f;
}


/* Background image */

.partner-contact__media {
    position: absolute;
    inset: 0;

    background:
        url('/assets/images/partners/partner-final.png')
        center / cover no-repeat;
}


/* Dark overlay */

.partner-contact__veil {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 14, 0.98) 0%,
            rgba(3, 8, 14, 0.91) 34%,
            rgba(3, 8, 14, 0.70) 58%,
            rgba(3, 8, 14, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 8, 14, 0.12),
            rgba(3, 8, 14, 0.58)
        );

    pointer-events: none;
}


/* Two-column contact layout */

.partner-contact__grid {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    align-items: start;

    gap: 85px;

    padding:
        115px 0;
}


/* Left-side copy */

.partner-contact__copy {
    position: sticky;
    top: 120px;

    max-width: 620px;
}


.partner-contact__copy .kicker {
    margin: 0 0 20px;
}


.partner-contact__copy h2 {
    margin: 8px 0 28px;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(52px, 5vw, 78px);

    font-weight: 600;

    line-height: 0.95;
    letter-spacing: -0.035em;
}


.partner-contact__copy
> p:not(.kicker) {
    max-width: 580px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   PARTNERSHIP INQUIRY
   PREMIUM WLS APPLICATION DESIGN
   ========================================================= */


/* ---------------------------------------------------------
   MAIN CONTACT LAYOUT
   --------------------------------------------------------- */

.partner-contact {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #07111f;
}


.partner-contact__media {
    position: absolute;
    inset: 0;

    background:
        url('/assets/images/partners/partner-final.png')
        center / cover no-repeat;

    transform: scale(1.02);
}


.partner-contact__veil {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 14, 0.98) 0%,
            rgba(3, 8, 14, 0.94) 34%,
            rgba(3, 8, 14, 0.74) 60%,
            rgba(3, 8, 14, 0.52) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 8, 14, 0.10),
            rgba(3, 8, 14, 0.65)
        );

    pointer-events: none;
}


.partner-contact__grid {
    position: relative;
    z-index: 2;

    width: min(100%, 1240px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(360px, 0.82fr)
        minmax(520px, 1.18fr);

    align-items: start;

    gap: clamp(70px, 7vw, 115px);

    padding:
        135px 60px 145px;
}


/* ---------------------------------------------------------
   LEFT COPY
   --------------------------------------------------------- */

.partner-contact__copy {
    position: sticky;

    top: 125px;

    max-width: 500px;

    padding:
        38px 0 38px 14px;
}


.partner-contact__copy::before {
    content: "";

    display: block;

    width: 68px;
    height: 1px;

    margin-bottom: 34px;

    background:
        var(--gold);
}


.partner-contact__copy .kicker {
    margin:
        0 0 24px;
}


.partner-contact__copy h2 {
    max-width: 500px;

    margin: 0;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(52px, 4.5vw, 76px);

    font-weight: 600;

    line-height: 0.94;

    letter-spacing:
        -0.035em;
}


.partner-contact__copy
> p:not(.kicker) {
    max-width: 475px;

    margin:
        30px 0 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FORM SHELL
   ========================================================= */

.partner-inquiry-wrap {
    position: relative;

    width: 100%;
    max-width: 680px;

    justify-self: end;

    padding:
        64px 62px 58px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 248, 0.99),
            rgba(245, 239, 228, 0.98)
        );

    color:
        #07111f;

    border:
        1px solid
        rgba(201, 154, 66, 0.24);

    box-shadow:
        0 45px 110px
        rgba(0, 0, 0, 0.34);
}


/* Decorative top gold rule */

.partner-inquiry-wrap::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8f6729,
            #e1b963,
            #8f6729
        );
}


/* Large subtle WLS watermark */

.partner-inquiry-wrap::after {
    content: "WLS";

    position: absolute;

    right: -20px;
    top: -35px;

    color:
        rgba(7, 17, 31, 0.025);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 170px;

    font-weight: 700;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   FORM
   ========================================================= */

.partner-inquiry-form {
    position: relative;
    z-index: 2;

    display: grid;

    gap: 24px;
}


.partner-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* ---------------------------------------------------------
   LABELS
   --------------------------------------------------------- */

.partner-inquiry-form label {
    display: block;
}


.partner-inquiry-form
label > span,
.partner-interest-options legend {
    display: block;

    margin-bottom: 9px;

    color: #25303c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}


/* ---------------------------------------------------------
   INPUTS / SELECTS / TEXTAREA
   --------------------------------------------------------- */

.partner-inquiry-form
input:not([type="checkbox"]),
.partner-inquiry-form select,
.partner-inquiry-form textarea {
    width: 100%;

    box-sizing: border-box;

    padding:
        15px 16px;

    border:
        1px solid
        rgba(7, 17, 31, 0.16);

    border-radius: 0;

    outline: none;

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

    color:
        #07111f;

    font: inherit;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.partner-inquiry-form
input:not([type="checkbox"]):hover,
.partner-inquiry-form select:hover,
.partner-inquiry-form textarea:hover {
    border-color:
        rgba(154, 114, 46, 0.48);
}


.partner-inquiry-form
input:not([type="checkbox"]):focus,
.partner-inquiry-form select:focus,
.partner-inquiry-form textarea:focus {
    border-color:
        #b4873b;

    background:
        #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(201, 154, 66, 0.08);
}


.partner-inquiry-form
input::placeholder,
.partner-inquiry-form
textarea::placeholder {
    color:
        #9aa0a7;

    opacity: 1;
}


.partner-inquiry-form select {
    min-height: 52px;

    cursor: pointer;
}


.partner-inquiry-form textarea {
    min-height: 155px;

    resize: vertical;

    line-height: 1.65;
}


/* =========================================================
   PARTNERSHIP OBJECTIVES
   ========================================================= */

.partner-interest-options {
    margin: 4px 0 2px;

    padding:
        26px 26px 22px;

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

    border:
        1px solid
        rgba(7, 17, 31, 0.12);
}


.partner-interest-options legend {
    padding:
        0 10px;

    color:
        #9a722e;
}


.partner-interest-options {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 26px;
}


.partner-interest-options legend {
    grid-column:
        1 / -1;
}


.partner-interest-options label {
    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    margin:
        6px 0;

    padding:
        10px 12px;

    cursor: pointer;

    transition:
        background 0.2s ease;
}


.partner-interest-options label:hover {
    background:
        rgba(201, 154, 66, 0.07);
}


/* Custom checkboxes */

.partner-interest-options
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    flex:
        0 0 18px;

    margin: 0;

    display: grid;

    place-content: center;

    border:
        1px solid
        rgba(7, 17, 31, 0.35);

    background: #ffffff;

    cursor: pointer;
}


.partner-interest-options
input[type="checkbox"]::before {
    content: "";

    width: 8px;
    height: 8px;

    transform:
        scale(0);

    background:
        #b4873b;

    transition:
        transform 0.15s ease;
}


.partner-interest-options
input[type="checkbox"]:checked {
    border-color:
        #b4873b;
}


.partner-interest-options
input[type="checkbox"]:checked::before {
    transform:
        scale(1);
}


.partner-interest-options
label > span {
    margin: 0;

    color: #3e4752;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 0;

    text-transform: none;
}


/* =========================================================
   CONSENT
   ========================================================= */

.partner-form-consent {
    display: flex !important;

    align-items: flex-start;

    gap: 12px;

    margin-top: 2px;

    padding:
        15px 17px;

    background:
        rgba(7, 17, 31, 0.035);

    border-left:
        2px solid
        rgba(201, 154, 66, 0.62);

    cursor: pointer;
}


.partner-form-consent
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    min-width: 18px;

    margin-top: 1px;

    display: grid;

    place-content: center;

    border:
        1px solid
        rgba(7, 17, 31, 0.35);

    background:
        #ffffff;

    cursor: pointer;
}


.partner-form-consent
input[type="checkbox"]::before {
    content: "✓";

    color:
        #07111f;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    transform:
        scale(0);

    transition:
        transform 0.15s ease;
}


.partner-form-consent
input[type="checkbox"]:checked {
    border-color:
        var(--gold);

    background:
        var(--gold-light);
}


.partner-form-consent
input[type="checkbox"]:checked::before {
    transform:
        scale(1);
}


.partner-form-consent span {
    margin: 0 !important;

    color:
        #67707a !important;

    font-size:
        11px !important;

    font-weight:
        400 !important;

    line-height: 1.55;

    letter-spacing:
        0 !important;

    text-transform:
        none !important;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.partner-inquiry-submit {
    position: relative;

    width: 100%;

    min-height: 58px;

    margin-top: 3px;

    overflow: hidden;

    border: 0;

    box-shadow:
        0 14px 30px
        rgba(154, 114, 46, 0.18);
}


.partner-inquiry-submit::after {
    content: "→";

    margin-left: 14px;

    font-size: 18px;

    transition:
        transform 0.25s ease;
}


.partner-inquiry-submit:hover::after {
    transform:
        translateX(5px);
}


/* =========================================================
   CONFIRMATION
   ========================================================= */

.partner-inquiry-confirmation {
    position: relative;
    z-index: 2;

    padding:
        50px 20px;

    text-align: center;
}


.partner-inquiry-confirmation__mark {
    width: 66px;
    height: 66px;

    display: grid;

    place-items: center;

    margin:
        0 auto 30px;

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

    border-radius: 50%;

    background:
        rgba(201, 154, 66, 0.07);

    color:
        #9b702a;

    font-size: 26px;
}


.partner-inquiry-confirmation .kicker {
    color:
        #9a722e;
}


.partner-inquiry-confirmation h3 {
    margin:
        10px 0 22px;

    color:
        #07111f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(44px, 5vw, 62px);

    font-weight: 600;

    line-height: 1;
}


.partner-inquiry-confirmation p {
    max-width: 520px;

    margin:
        10px auto;

    color:
        #626b75;

    font-size: 14px;

    line-height: 1.7;
}

.spam-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   ERROR MESSAGE
   ========================================================= */

.partner-inquiry-error {
    position: relative;
    z-index: 2;

    margin-bottom: 24px;

    padding:
        14px 16px;

    border-left:
        3px solid #9f4b4b;

    background:
        #f7e9e7;

    color:
        #833c3c;

    font-size: 12px;

    line-height: 1.55;
}


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

@media (max-width: 1050px) {

    .partner-contact__grid {
        width: min(100%, 980px);

        grid-template-columns:
            minmax(300px, 0.78fr)
            minmax(460px, 1.22fr);

        gap: 50px;

        padding:
            110px 36px 120px;
    }


    .partner-inquiry-wrap {
        padding:
            50px 42px;
    }

}


@media (max-width: 900px) {

    .partner-contact {
        min-height: auto;
    }



    .partner-contact__grid {
        width: min(100%, 760px);

        grid-template-columns: 1fr;

        gap: 55px;

        padding:
            95px 40px 105px;
    }


    .partner-contact__copy {
        position: static;

        max-width: 650px;

        padding:
            0 10px;
    }


    .partner-contact__copy h2 {
        max-width: 650px;
    }


    .partner-contact__copy
    > p:not(.kicker) {
        max-width: 600px;
    }


    .partner-inquiry-wrap {
        max-width: 100%;

        justify-self: stretch;
    }

}


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

@media (max-width: 600px) {

    .partner-contact__media {
        background-position:
            65% center;
    }


    .partner-contact__veil {
        background:
            linear-gradient(
                180deg,
                rgba(3, 8, 14, 0.82) 0%,
                rgba(3, 8, 14, 0.94) 38%,
                rgba(3, 8, 14, 0.99) 100%
            );
    }


  .partner-contact__grid {
        width: 100%;

        padding:
            75px 22px 85px;

        gap: 42px;
    }


    .partner-contact__copy {
        padding:
            0 6px;
    }


    .partner-contact__copy h2 {
        font-size: 46px;
    }


    .partner-inquiry-wrap {
        padding:
            38px 26px 34px;
    }



    .partner-inquiry-wrap::after {
        font-size: 110px;

        top: -18px;
        right: -10px;
    }


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


    .partner-interest-options {
        grid-template-columns: 1fr;

        padding:
            20px 14px;
    }


    .partner-inquiry-confirmation {
        padding:
            35px 6px;
    }

}


/* =========================================================
   SPONSORS PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .partners-benefits__grid,
    .partner-audience__grid,
    .signature-secondary-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .partner-contact__grid {
        gap: 55px;
    }

}


@media (max-width: 900px) {

    .partner-room {
        grid-template-columns: 1fr;
    }


    .partner-room__visual {
        min-height: 620px;
    }


    .partner-audience__intro,
    .partner-philosophy__grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .partner-level__heading,
    .partner-level__body {
        grid-template-columns: 1fr;
    }


    .partner-level__price {
        padding:
            25px 0 0;

        border-left: 0;

        border-top:
            1px solid rgba(7, 17, 31, 0.11);
    }


    .signature-feature-grid {
        grid-template-columns: 1fr;
    }


    .partner-contact {
        min-height: auto;
    }


    .partner-contact__grid {
        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            90px 0;
    }


    .partner-contact__copy {
        position: static;

        max-width: 760px;
    }

}


@media (max-width: 600px) {

    .partners-hero {
        min-height: 720px;
    }


    .partners-hero__inner {
        padding:
            105px 0 90px;
    }


    .partners-hero h1 {
        font-size: 54px;
    }


    .partners-hero__actions {
        flex-direction: column;
    }


    .partners-hero__actions .btn {
        width: 100%;
    }


    .partners-benefits,
    .partner-audience,
    .partner-levels,
    .signature-partnerships,
    .partner-philosophy {
        padding:
            90px 0 95px;
    }


    .partners-benefits__grid,
    .partner-audience__grid,
    .signature-secondary-grid {
        grid-template-columns: 1fr;
    }


    .partner-room__visual {
        min-height: 480px;
    }


    .partner-room__content {
        padding:
            65px var(--mobile-pad, 24px);
    }


    .partner-level__heading {
        padding:
            40px 28px 34px;
    }


    .partner-level__body {
        padding:
            38px 28px 42px;
    }


    .partner-level__includes ul {
        grid-template-columns: 1fr;
    }


    .partner-level__footer {
        padding:
            0 28px 38px;
    }


    .partner-level__footer .btn {
        width: 100%;
    }


    .signature-hero {
        min-height: 570px;
    }


    .signature-hero__content {
        padding-bottom: 60px;
    }


    .signature-feature {
        min-height: 520px;
    }


    .signature-feature__content {
        padding: 28px;
    }


    .signature-partnerships__footer {
        flex-direction: column;

        align-items: flex-start;
    }


    .partner-contact__media {
        background-position:
            66% center;
    }


    .partner-contact__veil {
        background:
            linear-gradient(
                180deg,
                rgba(3, 8, 14, 0.82) 0%,
                rgba(3, 8, 14, 0.94) 46%,
                rgba(3, 8, 14, 0.99) 100%
            );
    }


    .partner-contact__grid {
        padding:
            75px 0;
    }


    .partner-contact__copy h2 {
        font-size: 46px;
    }


    .partner-inquiry-wrap {
        padding:
            30px 22px;
    }


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


    .partner-inquiry-confirmation h3 {
        font-size: 42px;
    }

}

/* =========================================================
   WLS SPEAKER RECRUITMENT PAGE
   ========================================================= */

.speaker-page { background: var(--paper); color: var(--ink); }

.speaker-hero { position: relative; min-height: 820px; display:flex; align-items:center; overflow:hidden; background:var(--navy); color:#fff; }
.speaker-hero__media { position:absolute; inset:0; background:url('/assets/images/speakers/speaker-hero.png') center/cover no-repeat; }
.speaker-hero__veil { position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,8,14,.98) 0%,rgba(3,8,14,.88) 38%,rgba(3,8,14,.42) 72%,rgba(3,8,14,.20) 100%),linear-gradient(180deg,rgba(3,8,14,.10),rgba(3,8,14,.65)); }
.speaker-hero__inner { position:relative; z-index:2; max-width:1040px; padding:135px 0 125px; }
.speaker-hero h1 { max-width:980px; margin:0; color:#fff; font-family:"Cormorant Garamond",serif; font-size:clamp(68px,8vw,118px); font-weight:600; line-height:.87; letter-spacing:-.045em; }
.speaker-hero h1 em { display:block; color:var(--gold-light); font-weight:500; }
.speaker-hero__inner>p:not(.kicker) { max-width:700px; margin:36px 0 0; color:rgba(255,255,255,.74); font-size:18px; line-height:1.75; }
.speaker-hero__actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:42px; }

.speaker-value,.speaker-topics,.speaker-expectations { padding:145px 0 150px; background:linear-gradient(180deg,#fbf8f1,#f4efe6); }
.speaker-value .section-heading,.speaker-topics .section-heading { max-width:900px; margin-bottom:75px; }
.speaker-value__grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); border-top:1px solid rgba(7,17,31,.14); border-left:1px solid rgba(7,17,31,.14); }
.speaker-value__grid article { min-height:380px; padding:46px 34px 48px; background:rgba(255,255,255,.52); border-right:1px solid rgba(7,17,31,.14); border-bottom:1px solid rgba(7,17,31,.14); }
.speaker-value__grid article>span,.speaker-topic>span,.speaker-opportunity>span { display:block; margin-bottom:54px; color:#ae8032; font-family:"Cormorant Garamond",serif; font-size:40px; }
.speaker-value__grid h3,.speaker-topic h3 { margin:0 0 17px; color:#07111f; font-family:"Cormorant Garamond",serif; font-size:32px; line-height:1; }
.speaker-value__grid p,.speaker-topic p { margin:0; color:#626b75; font-size:14px; line-height:1.75; }

.speaker-fit,.speaker-opportunities { padding:140px 0 150px; background:#07111f; }
.speaker-fit__grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.speaker-fit__heading h2,.speaker-expectations__heading h2 { margin:8px 0 0; font-family:"Cormorant Garamond",serif; font-size:clamp(54px,6vw,86px); line-height:.94; }
.speaker-fit__heading h2 { color:#fff; }
.speaker-fit__heading h2 em { display:block; color:var(--gold-light); }
.speaker-fit__copy p { color:rgba(255,255,255,.68); font-size:16px; line-height:1.8; }
.speaker-fit__copy strong { display:block; margin-top:30px; padding-top:24px; border-top:1px solid rgba(225,185,99,.25); color:var(--gold-light); font-size:10px; letter-spacing:.12em; }

.speaker-topics__grid { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); border-top:1px solid rgba(7,17,31,.14); border-left:1px solid rgba(7,17,31,.14); }
.speaker-topic { min-height:360px; padding:34px 24px 38px; background:rgba(255,255,255,.48); border-right:1px solid rgba(7,17,31,.14); border-bottom:1px solid rgba(7,17,31,.14); }
.speaker-topic>span { margin-bottom:46px; font-size:34px; }
.speaker-topic h3 { font-size:25px; line-height:1.02; }
.speaker-topic p { font-size:13px; line-height:1.68; }

.speaker-opportunities .section-heading { max-width:900px; margin-bottom:70px; }
.speaker-opportunities .section-heading h2 { color:#fff; }
.speaker-opportunities .section-heading>p:last-child { max-width:700px; color:rgba(255,255,255,.68); }
.speaker-opportunities__grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(225,185,99,.28); border-left:1px solid rgba(225,185,99,.28); }
.speaker-opportunity { min-height:380px; padding:38px 30px; border-right:1px solid rgba(225,185,99,.28); border-bottom:1px solid rgba(225,185,99,.28); }
.speaker-opportunity>span { color:var(--gold-light); font-size:34px; margin-bottom:46px; }
.speaker-opportunity__label { color:var(--gold-light)!important; font-size:9px!important; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.speaker-opportunity h3 { margin:10px 0 16px; color:#fff; font-family:"Cormorant Garamond",serif; font-size:31px; line-height:1; }
.speaker-opportunity>p:last-child { color:rgba(255,255,255,.64); font-size:13px; line-height:1.7; }

.speaker-expectations__grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:start; }
.speaker-expectations__heading h2 { color:#07111f; }
.speaker-expectations__list { border-top:1px solid rgba(7,17,31,.14); }
.speaker-expectations__list>div { display:grid; grid-template-columns:70px 1fr; gap:24px; padding:26px 0; border-bottom:1px solid rgba(7,17,31,.14); }
.speaker-expectations__list span { color:#ae8032; font-family:"Cormorant Garamond",serif; font-size:30px; }
.speaker-expectations__list p { margin:0; color:#505965; font-size:15px; line-height:1.7; }

.speaker-application { position:relative; min-height:950px; overflow:hidden; background:#07111f; }
.speaker-application__media { position:absolute; inset:0; background:url('/assets/images/speakers/speaker-application.png') center/cover no-repeat; }
.speaker-application__veil { position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(3,8,14,.98) 0%,rgba(3,8,14,.92) 36%,rgba(3,8,14,.68) 64%,rgba(3,8,14,.45) 100%),linear-gradient(180deg,rgba(3,8,14,.10),rgba(3,8,14,.60)); }
.speaker-application__grid { position:relative; z-index:2; width:min(100%,1240px); display:grid; grid-template-columns:minmax(340px,.78fr) minmax(540px,1.22fr); gap:clamp(70px,7vw,110px); align-items:start; padding:130px 60px 140px; }
.speaker-application__copy { position:sticky; top:125px; padding-top:30px; }
.speaker-application__copy::before { content:""; display:block; width:64px; height:1px; margin-bottom:32px; background:var(--gold); }
.speaker-application__copy h2 { margin:0; color:#fff; font-family:"Cormorant Garamond",serif; font-size:clamp(54px,5vw,78px); line-height:.94; }
.speaker-application__copy>p:not(.kicker) { max-width:520px; margin:30px 0 0; color:rgba(255,255,255,.72); font-size:16px; line-height:1.8; }
.speaker-form-wrap { position:relative; width:100%; max-width:720px; justify-self:end; padding:58px 58px 52px; overflow:hidden; background:linear-gradient(145deg,rgba(255,253,248,.99),rgba(245,239,228,.98)); color:#07111f; border:1px solid rgba(201,154,66,.24); box-shadow:0 45px 110px rgba(0,0,0,.34); }
.speaker-form-wrap::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#8f6729,#e1b963,#8f6729); }
.speaker-form-wrap::after { content:"WLS"; position:absolute; top:-30px; right:-18px; color:rgba(7,17,31,.025); font-family:"Cormorant Garamond",serif; font-size:160px; font-weight:700; pointer-events:none; }
.speaker-form { position:relative; z-index:2; display:grid; gap:22px; }
.speaker-form-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.speaker-form label { display:block; }
.speaker-form label>span { display:block; margin-bottom:8px; color:#25303c; font-size:9px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.speaker-form input:not([type="checkbox"]),.speaker-form select,.speaker-form textarea { width:100%; padding:14px 15px; border:1px solid rgba(7,17,31,.17); border-radius:0; background:rgba(255,255,255,.88); color:#07111f; font:inherit; outline:none; }
.speaker-form input:not([type="checkbox"]):focus,.speaker-form select:focus,.speaker-form textarea:focus { border-color:var(--gold); background:#fff; box-shadow:0 0 0 3px rgba(201,154,66,.08); }
.speaker-form textarea { resize:vertical; line-height:1.65; }
.speaker-form-consent { display:flex!important; align-items:flex-start; gap:11px; padding:15px 16px; background:rgba(7,17,31,.035); border-left:2px solid rgba(201,154,66,.62); }
.speaker-form-consent input[type="checkbox"] { width:18px; height:18px; flex:0 0 18px; margin-top:2px; accent-color:var(--gold); }
.speaker-form-consent span { margin:0!important; color:#67707a!important; font-size:11px!important; font-weight:400!important; line-height:1.55; letter-spacing:0!important; text-transform:none!important; }
.speaker-form-submit { width:100%; min-height:58px; }
.speaker-form-note { margin:0; color:#7b838c; font-size:10px; text-align:center; line-height:1.5; }
.speaker-form-confirmation { position:relative; z-index:2; padding:50px 15px; text-align:center; }
.speaker-form-confirmation__mark { width:66px; height:66px; display:grid; place-items:center; margin:0 auto 28px; border:1px solid var(--gold); border-radius:50%; color:#9b702a; font-size:26px; }
.speaker-form-confirmation .kicker { color:#9a722e; }
.speaker-form-confirmation h3 { margin:10px 0 20px; color:#07111f; font-family:"Cormorant Garamond",serif; font-size:56px; line-height:1; }
.speaker-form-confirmation p { max-width:520px; margin:10px auto; color:#626b75; line-height:1.7; }
.speaker-form-error { position:relative; z-index:2; margin-bottom:22px; padding:14px 16px; border-left:3px solid #9f4b4b; background:#f7e9e7; color:#833c3c; font-size:12px; }

@media (max-width:1200px) { .speaker-topics__grid { grid-template-columns:repeat(4,1fr); } }
@media (max-width:1000px) {
    .speaker-value__grid,.speaker-opportunities__grid { grid-template-columns:repeat(2,1fr); }
    .speaker-fit__grid,.speaker-expectations__grid { grid-template-columns:1fr; gap:40px; }
    .speaker-application__grid { grid-template-columns:1fr; width:min(100%,820px); padding:100px 40px 110px; }
    .speaker-application__copy { position:static; max-width:720px; padding-top:0; }
    .speaker-form-wrap { max-width:100%; justify-self:stretch; }
}
@media (max-width:700px) {
    .speaker-hero { min-height:720px; }
    .speaker-hero__inner { padding:105px 0 90px; }
    .speaker-hero h1 { font-size:54px; }
    .speaker-hero__actions { flex-direction:column; }
    .speaker-hero__actions .btn { width:100%; }
    .speaker-value,.speaker-fit,.speaker-topics,.speaker-opportunities,.speaker-expectations { padding:90px 0 95px; }
    .speaker-value__grid,.speaker-opportunities__grid,.speaker-topics__grid { grid-template-columns:1fr; }
    .speaker-application__grid { width:100%; padding:75px 22px 85px; }
    .speaker-application__copy h2 { font-size:46px; }
    .speaker-form-wrap { padding:38px 24px 34px; }
    .speaker-form-row { grid-template-columns:1fr; }
    .speaker-form-wrap::after { font-size:110px; }
}

/* =========================================================
   HERO AUDIENCE - MOBILE FIX
   ========================================================= */

@media (max-width: 700px) {

    .hero__audience {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;

        margin-top: 32px;

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

        border-left:
            1px solid rgba(255, 255, 255, 0.18);
    }


    .hero__audience span {
        display: flex;

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

        min-height: 54px;

        padding:
            10px 8px;

        border-right:
            1px solid rgba(255, 255, 255, 0.18);

        border-bottom:
            1px solid rgba(255, 255, 255, 0.18);

        color:
            rgba(255, 255, 255, 0.78);

        font-size: 9px;

        font-weight: 700;

        line-height: 1.35;

        letter-spacing: 0.08em;

        text-align: center;

        text-transform: uppercase;

        white-space: normal;
    }


    .hero__audience span:last-child {
        grid-column: 1 / -1;
    }

}

/* =========================================================
   MOBILE HERO + HEADER FINAL FIX
   Put at VERY BOTTOM of styles.css
   ========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       HERO AUDIENCE
       Stop horizontal scrolling / overflow
       ----------------------------------------------------- */

    .hero__audience {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 100%;

        overflow: hidden;

        margin: 0;

        background: rgba(5, 12, 21, 0.96);
    }


    .hero__audience-inner {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        width: 100%;
        max-width: 100%;

        min-height: 0;

        gap: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

        white-space: normal !important;
    }


    .hero__audience-inner span {
        min-width: 0 !important;
        width: 100%;

        display: flex;

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

        min-height: 58px;

        padding: 10px 8px;

        border-right:
            1px solid rgba(201, 154, 66, 0.22);

        border-bottom:
            1px solid rgba(201, 154, 66, 0.22);

        color: #d6b56f;

        font-size: 8px;

        font-weight: 700;

        line-height: 1.35;

        letter-spacing: 0.08em;

        text-align: center;

        text-transform: uppercase;

        white-space: normal !important;

        overflow-wrap: anywhere;
    }


    /* Last item uses full width */

    .hero__audience-inner span:last-child {
        grid-column: 1 / -1;
    }


    /* Remove right border from every second item */

    .hero__audience-inner span:nth-child(even) {
        border-right: 0;
    }


    /* Last item should not have side border */

    .hero__audience-inner span:last-child {
        border-right: 0;
    }



    /* =====================================================
       MOBILE HEADER / LOGO
       ===================================================== */

    .header__inner {
        width: 100%;

        min-width: 0;

        gap: 10px;
    }


    .brand {
        min-width: 0;

        flex: 1 1 auto;

        max-width:
            calc(100% - 54px);

        overflow: hidden;
    }


    .brand__logo {
        flex: 0 0 auto;

        width: auto;
        height: 44px;

        max-width: 62px;

        object-fit: contain;
    }


    .brand__text {
        min-width: 0;

        display: flex;

        flex-direction: column;

        margin-left: 8px;

        line-height: 1;
    }


    .brand__text strong {
        display: block;

        max-width: 100%;

        color: #ffffff;

        font-size: 10px;

        font-weight: 600;

        line-height: 1.05;

        letter-spacing: 0.04em;

        white-space: nowrap;
    }


    .brand__text em {
        display: block;

        margin-top: 3px;

        color: var(--gold-light);

        font-family:
            "Cormorant Garamond",
            serif;

        font-size: 12px;

        font-style: normal;

        font-weight: 600;

        line-height: 1;

        letter-spacing: 0.16em;

        white-space: nowrap;
    }


    .nav-toggle {
        flex: 0 0 44px;

        width: 44px;

        margin-left: auto;

        padding: 7px 4px;
    }


    .nav-toggle span:not(.sr-only) {
        width: 24px;

        margin:
            5px auto;
    }

}

/* =========================================================
   HERO AUDIENCE
   Desktop only
   ========================================================= */

@media (max-width: 1199px) {

    .hero__audience {
        display: none !important;
    }

}