/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

/* ========== CORE ========== */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--cream);
    background-image: radial-gradient(circle, rgba(17, 17, 17, .10) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    background-position: -11px -11px;
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

body.menu-open {
    overflow: hidden;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #1B5DFF;
    color: #FFFFFF;
    font-size: .92rem;
    font-weight: 700;
    padding: .78rem 1.75rem;
    border: 2px solid #1B5DFF;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}


/* ========== NAVBAR ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    padding: 0 100px;
    gap: 1.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    flex-shrink: 0;
}

.nav__center {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0 auto;
}

.nav__link {
    font-family: var(--f-mono);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    opacity: .7;
    transition: opacity .2s;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
}

.nav__link:hover {
    opacity: 1;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
}

.nav__cta {
    background: #1B5DFF;
    color: #FFFFFF;
    font-weight: 700;
    padding: .8rem 1.25rem;
    border: 2px solid #1B5DFF;
    transition: transform .15s, box-shadow .15s;
    opacity: 1;
    white-space: nowrap;
    text-decoration: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: transform .2s ease, opacity .2s ease;
}

.nav__toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.nav__mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav__mobile .nav__link {
    font-size: 1rem;
    opacity: 1;
}

/* ========== MAIN ========== */
.main {
    position: relative;
}

/* ========== HERO ========== */
.hero {
    /* height: 100vh;
    max-height: 900px; */
    padding: 150px 88px 90px;
    align-items: center;
    gap: 6rem;
    background: var(--cream);
    position: relative;
    max-width: 1600px;
    margin: 2rem auto;
}

.hero__content {
    align-content: center;
    justify-content: center;
}

.hero__title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em -1.68px;
    margin-bottom: 1.75rem;
    text-align: center;
}

.hero__highlight {
    display: inline-block;
    background: #FE0B5B;
    color: #FFFFFF;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    padding: 2px 12px 6px;
    border-radius: 6px;
}

.hero__paragraph {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 2.5rem;
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero__cta-button {
    font-size: 1.14rem;
    padding: 1.12rem 2.9rem;
    font-weight: 800;
}

.hero__trust {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stars {
    color: #FFB400;
    font-size: 1.02rem;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
    align-content: center;
}

.hero__trust-text {
    font-size: .9rem;
    color: #444444;
}

.hero__trust-sep {
    color: #888888;
}

/* ========== CRISSCROSS BANDS ========== */
.band__wrap {
    position: relative;
    overflow: hidden;
    height: 130px;
    margin: 1rem 0 2rem;
}

.band {
    position: absolute;
    left: -5%;
    right: -5%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    height: 48px;
    width: 110%;
}

.band-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: marquee 20s linear infinite;
}

.band-black {
    top: 12px;
    background: #000000;
    transform: rotate(-2deg);
    z-index: 2;
}

.band-blue {
    top: 64px;
    background: #1B5DFF;
    transform: rotate(2deg);
    z-index: 1;
}

.band-black .band-item {
    color: #1B5DFF;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.band-blue .band-item {
    color: #FFFFFF;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.band-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 0 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.band-sep {
    opacity: .8;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== WATCH FIRST ========== */
.watch__first {
    padding: 100px 48px 40px;
    background: #000000;
    text-align: center;
    border-radius: 12px;
}

.watch__first-live-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.watch-pill-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    animation: blink 1s ease-in-out infinite;
}

.watch__first-heading {
    font-size: 3em;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: .75rem;
}

.watch__first-highlight {
    color: #FE0B5B;
}

.watch__first-paragraph {
    font-size: .95rem;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.watch__first-YT-video {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.watch__first-YT-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    50% {
        opacity: .2;
        transform: scale(0.8);
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.watch__first-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.watch__first-stats-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

.watch__first-stats-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FE0B5B;
    flex-shrink: 0;
}

/* ========== BRANDS ========== */
.portfolio-section {
    padding: 80px clamp(24px, 5vw, 48px);
    background: #F0EDEA;
    overflow: hidden;
    border-radius: 12px;
    margin: .5rem auto;
}

.portfolio-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(1.4rem, 3vw, 2.5rem);
    margin-bottom: 2.25rem;
    align-items: center;
}

.port-eyebrow {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #E63030;
}

.port-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.025em;
    max-width: 760px;
    margin-top: .5rem !important;
}

.port-h2 .hl {
    background: var(--blue);
    color: var(--white);
    font-family: var(--f-serif);
    font-style: italic;
    padding: 0 6px;
}

.port-desc {
    font-size: .98rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 360px;
    margin-left: auto;
}

.port-desc strong {
    color: var(--ink);
    font-weight: 700;
}

.logo-row-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    margin-bottom: 14px;
    padding: .35rem 0;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    will-change: transform;
    animation: logoScroll 32s linear infinite;
    padding: .25rem 0;
}

.logo-row-ltr {
    animation-direction: reverse;
}

.logo-card {
    flex: 0 0 auto;
    min-width: 132px;
    height: 88px;
    padding: .9rem 1rem;
    border: 1px solid rgba(24, 35, 49, .1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 28px rgba(27, 31, 37, .05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card img {
    display: block;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(.95);
    opacity: .9;
}

/* ========== OFFER ========== */
.offer {
    padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 48px);
    background: #111111;
    border-radius: 12px;
    margin: .5rem auto;
}

.offer-inner {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 5rem);
    max-width: 1120px;
    margin: 0 auto;
}

.offer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.offer-label {
    font-size: clamp(.68rem, 1vw, .75rem);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .75rem;
}

.offer-heading {
    font-size: clamp(1.95rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 1rem 0 .75rem;
    color: #FE0B5B;
}

.offer-tagline {
    font-size: clamp(.95rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.offer-paragraph {
    font-size: clamp(.9rem, 1vw, .95rem);
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.offer-paragraph-strong {
    font-size: clamp(1rem, 1.1vw, 1.05rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 2.25rem;
}

.offer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #FFFFFF;
    font-size: clamp(.9rem, 1vw, .95rem);
    font-weight: 700;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    transition: transform .15s, box-shadow .15s;
    line-height: 1;
    gap: .3rem;
    text-decoration: none;
    background: #FE0B5B;
    border: 1px solid #FE0B5B;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.offer-right-heading {
    font-size: clamp(1.4rem, 2.1vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.offer-list-items {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.offer-cross {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 59, 59, .15);
    border: 1.5px solid rgba(255, 59, 59, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .75rem;
    color: #FF6B6B;
    font-weight: 800;
}

.offer-item-text {
    font-size: clamp(.88rem, 1vw, 1rem);
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.offer-focus {
    margin: 1.5rem 0;
}

.offer-focus-check {
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
    font-weight: 700;
    color: #FE0B5B;
    margin-bottom: .85rem;
    line-height: 1.5;
}

.offer-focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.offer-focus-list li {
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    font-weight: 700;
    color: #FFFFFF;
}

.offer-punchline {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.55;
    margin-top: .5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ========== FOUNDER NOTE ========== */
.note {
    padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 48px);
    background: #F0EDEA;
    border-radius: 12px;
    margin: .5rem auto;
    overflow: visible;
}

.note__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(1.5rem, 3vw, 3.5rem);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.note__card {
    position: relative;
    width: 100%;
    max-width: min(100%, 34rem);
    background: #FFFFFF;
    border: 1.5px solid rgba(0, 0, 0, .12);
    padding: clamp(1.5rem, 3vw, 3.5rem) clamp(1.2rem, 3vw, 3rem);
    box-shadow: 8px 8px 0 #111111;
    box-sizing: border-box;
    margin: 0 auto;
}

.note-mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: "DM-serif-display", serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    color: #1B5DFF;
    opacity: .16;
    pointer-events: none;
}

.note-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1855FF;
    margin-bottom: 1.25rem;
}


.note-eyebrow-dot {
    width: 9px;
    height: 9px;
    background: #1B5DFF;
    border-radius: 50%;
    flex-shrink: 0;
}

.note-heading {
    font-family: "DM-serif-display", serif;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin-bottom: 1.25rem;
    color: #111111;
}

.note-description {
    font-size: clamp(.95rem, 1.1vw, 1.02rem);
    color: #444444;
    line-height: 1.75;
}

.note-hl {
    color: #1B5DFF;
    font-weight: 700;
}

.note-sign {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 1rem
}

a.note-sign {
    text-decoration: none;
    transition: opacity .2s;
}

.note-sign-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111111;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.note-sign-name {
    font-weight: 800;
    font-size: .95rem;
    color: #111111;
}

.note-sign-role {
    font-size: .78rem;
    color: #888888;
}

.note-li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #0A66C2;
    color: #fff;
    font-weight: 800;
    font-size: .6rem;
    border-radius: 3px;
    vertical-align: text-bottom;
    margin-left: .35rem;
}

.philo__left {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-width: 0;
}

.philo-stat-label {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: .2rem;
}

.philo-big-num {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    font-weight: 700;
    color: #1B5DFF;
    line-height: 1;
    margin-bottom: .15rem;
}

.philo-stat-sub {
    font-size: .8rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .5rem;
}

.philo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.philo-box {
    background: #0D0D0D;
    padding: 1.25rem 1rem;
}

.philo-box-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.464);
    margin-bottom: .4rem;
}

.philo-box-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1B5DFF;
    line-height: 1;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: #111111;
    border-radius: 12px;
    margin: .5rem auto;
    padding: clamp(3rem, 6vw, 5rem);
    padding-top: 1rem;
}

.testimonials-header{
    text-align: center;
    margin-bottom: 3.5rem;
    padding-top: 2.5rem;
}

.testimonials-eyebrow{
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
        color: rgba(255, 255, 255, .3);
}

.testimonials-title{
    margin-top: .5rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.025em;
    margin-bottom: .25rem;
    color: #FFFFFF;
}

.testimonials-title span {
    background: #FE0B5B;
    color: #FFFFFF;
}

.testimonials-subtitle{
    font-size: .9rem;
    color: rgba(255, 255, 255, .4);
    margin-top: .75rem;
}

.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonials-card{
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: clamp(1.25rem, 2.2vw, 2rem) clamp(1rem, 2vw, 1.75rem);
    transition: border-color .2s, background .2s;
    position: relative;
}

.testimonials-badge{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(10, 102, 194, .15);
    border: 1px solid rgba(10, 102, 194, .3);
    border-radius: 100px;
    padding: .25rem .7rem;
    font-size: .65rem;
    font-weight: 700;
    color: #6aacf5;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.testimonials-badge-dot{
        width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0A66C2;
    flex-shrink: 0;
}

.testimonials-text{
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.testimonials-author{
    display: flex;
    align-items: center;
    gap: .85rem;
}

.testimonials-author-avtar{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #1B5DFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    border-radius: 50%;
}

.testimonials-author-name{
    font-weight: 700;
    font-size: .85rem;
    color: #FFFFFF;
}

.testimonials-author-role{
        font-size: .72rem;
    color: rgba(255, 255, 255, .4);
}

.testimonials-author-company{
        display: inline-block;
    margin-top: 3px;
    font-size: .68rem;
    font-weight: 700;
    background: #1B5DFF;
    padding: 1px 8px;
    color: #FFFFFF;
}

/* ========== BOOKING ========== */
.booking-section {
    padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 48px);
    margin: .5rem auto;
    background: #F0EDEB;
    border-radius: 12px;
}

.booking-card {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.booking-content {
    padding-top: .25rem;
}

.booking-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1855FF;
    margin-bottom: 1rem;
}

.booking-heading {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em;
    color: #111111;
    margin-bottom: .85rem;
}

.booking-copy {
    font-size: clamp(.95rem, 1.1vw, 1.02rem);
    color: #444444;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 1.25rem;
}

.booking-points {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.booking-point {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .95rem;
    font-weight: 700;
    color: #111111;
}

.booking-embed {
    background: #FFFFFF;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 17, 17, .06);
}

.booking-embed iframe {
    display: block;
    width: 100%;
    min-height: 620px;
    border: 0;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 48px);
    margin: .5rem auto;
    background: #111111;
    border-radius: 12px;
}

.contact-card {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #FE0B5B;
    margin-bottom: 1rem;
}

.contact-heading {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em;
    color: #FFFFFF;
    margin-bottom: .75rem;
}

.contact-copy {
    font-size: clamp(.95rem, 1.1vw, 1.02rem);
    color: #a8a8a8;
    line-height: 1.75;
    max-width: 560px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.106);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, opacity .2s ease;
}

.contact-item-end{
    border: none;
}

.contact-item:hover {
    opacity: .95;
    transform: translateX(4px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FE0B5B 0%, #FE0B5B 100%);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(254, 11, 91, .2);
}

.contact-item strong {
    display: block;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: .2rem;
    font-size: 1rem;
    letter-spacing: -.01em;
}

.contact-item span span {
    display: block;
    font-size: .95rem;
    color: #FE0B5B;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
    margin: .5rem auto 0;
    padding: clamp(3rem, 5vw, 4.25rem) clamp(20px, 4vw, 48px) 1.75rem;
    background: #F0EDEB;
    border-radius: 12px;
}

.footer__inner {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.footer__logo {
    display: inline-block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    margin-bottom: .75rem;
}

.footer__copy {
    font-size: .95rem;
    line-height: 1.75;
    color: #444444;
    max-width: 380px;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer__links a,
.footer__contact a {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: color .2s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: #1855FF;
}

.footer__bottom {
    max-width: 1220px;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .85rem;
    color: #666666;
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 250;
    background: linear-gradient(135deg, #1B5DFF 0%, #1541CC 100%);
    padding: 0;
    box-shadow: 0 -4px 16px rgba(27, 93, 255, .2);
}

.sticky-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex: 1;
    padding: 1.1rem 1rem;
    color: #FFED4E;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
    border-right: 1px solid rgba(255, 255, 255, .2);
    transition: background .2s ease;
}

.sticky-cta__item:last-child {
    border-right: 0;
}

.sticky-cta__item:active {
    background: rgba(255, 255, 255, .1);
}

.sticky-cta__icon {
    font-size: 1.3rem;
    line-height: 1;
}

.sticky-cta__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}


@media (max-width: 1024px) {
    .nav__inner {
        padding: 0 48px;
    }

    .hero {
        padding: 130px 48px 72px;
    }

    .watch__first {
        padding: 90px 40px 36px;
    }

    .watch__first-heading {
        font-size: 2.6rem;
    }
}

@media (max-width: 900px) {
    .main {
        padding-bottom: 70px;
    }

    .nav__inner {
        padding: 0 24px;
    }

    .nav__center {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        display: inline-flex;
        padding: .7rem 1rem;
        font-size: .85rem;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__paragraph {
        font-size: 1rem;
        padding: 0 8px;
    }

    .hero__cta-button {
        justify-content: center;
    }

    .sticky-cta {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav__inner {
        padding: 0 18px;
    }

    .nav__logo-img {
        width: 190px;
        height: auto;
    }

    .hero {
        padding: 116px 20px 56px;
    }

    .hero__title {
        font-size: 1.7rem;
    }

    .hero__paragraph {
        font-size: .96rem;
        line-height: 1.7;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .watch__first {
        padding: 80px 24px 32px;
    }

    .watch__first-heading {
        font-size: 2.2rem;
    }

    .watch__first-paragraph {
        font-size: .92rem;
        margin-bottom: 2rem;
    }

    .watch__first-YT-video {
        margin-bottom: 1.75rem;
    }

    .watch__first-stats {
        gap: 1rem 1.25rem;
        margin-bottom: 2rem;
    }

    .sticky-cta {
        display: flex;
    }
}

@media (max-width: 640px) {
    .nav__inner {
        padding: 0 16px;
    }

    .nav__logo-img {
        width: 170px;
        height: auto;
    }

    .nav__right {
        gap: .7rem;
    }

    .nav__cta {
        display: none;
    }

    .hero {
        padding: 110px 16px 48px;
    }

    .hero__title {
        font-size: 1.45rem;
    }

    .hero__paragraph {
        font-size: .92rem;
        line-height: 1.6;
    }

    .hero__cta-button {
        padding: 1rem 1.4rem;
        font-size: 1rem;
    }

    .watch__first {
        padding: 72px 18px 28px;
        border-radius: 10px;
    }

    .watch__first-live-badge {
        font-size: .7rem;
        padding: .32rem .85rem;
    }

    .watch__first-heading {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .watch__first-paragraph {
        font-size: .88rem;
        line-height: 1.65;
    }

    .watch__first-YT-video {
        margin-bottom: 1.5rem;
    }

    .watch__first-stats {
        gap: .75rem 1rem;
        margin-top: .5rem;
        margin-bottom: 1.75rem;
    }

    .watch__first-stats-item {
        font-size: .77rem;
    }

    .sticky-cta {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav__inner {
        padding: 0 14px;
    }

    .nav__logo-img {
        width: 150px;
    }

    .nav__toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 104px 14px 40px;
    }

    .hero__title {
        font-size: 1.28rem;
    }

    .hero__paragraph {
        font-size: .88rem;
        line-height: 1.55;
        margin-bottom: 1.6rem;
    }

    .hero__cta {
        margin-bottom: 1.4rem;
    }

    .hero__trust-text {
        font-size: .84rem;
    }

    .watch__first {
        padding: 64px 14px 24px;
    }

    .watch__first-live-badge {
        font-size: .66rem;
        padding: .3rem .75rem;
    }

    .watch__first-heading {
        font-size: 1.6rem;
    }

    .watch__first-paragraph {
        font-size: .84rem;
        margin-bottom: 1.5rem;
    }

    .watch__first-YT-video {
        margin-bottom: 1.25rem;
    }

    .watch__first-stats {
        gap: .65rem .9rem;
    }

    .watch__first-stats-item {
        font-size: .72rem;
    }

    .sticky-cta {
        display: flex;
    }
}

@media (max-width: 360px) {
    .nav__logo-img {
        width: 132px;
    }

    .hero__title {
        font-size: 1.16rem;
    }

    .hero__paragraph {
        font-size: .82rem;
    }

    .hero__cta-button {
        font-size: .92rem;
        padding: .95rem 1.1rem;
    }

    .watch__first {
        padding: 58px 12px 22px;
    }

    .watch__first-heading {
        font-size: 1.42rem;
    }

    .watch__first-paragraph {
        font-size: .8rem;
    }

    .watch__first-YT-video {
        margin-bottom: 1rem;
    }

    .watch__first-stats {
        gap: .6rem .8rem;
    }

    .sticky-cta {
        display: flex;
    }
}