@import url("https://fonts.googleapis.com/css2?family=Average+Sans&display=swap");

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-800.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display Italic";

    src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NotoSans-Regular";
    src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #050505;
    --ink: #111111;
    --graphite: #2a2a2c;
    --muted: #6e6e73;
    --soft: #f5f2ec;
    --ivory: #fbf8f1;
    --white: #ffffff;
    --gold: #E8AD00;
    --champagne: #e8d8aa;
    --line: rgba(17, 17, 17, 0.1);
    --line-dark: rgba(255, 255, 255, 0.14);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow: 0 26px 90px rgba(0, 0, 0, 0.16);
    --font-size-eyebrow: 12px;
    --font-size-page-title: 42px;
    --font-size-section-title: 24px;
    --font-size-feature-title: 36px;
    --font-size-card-title: 20px;
    --font-size-article-title: 24px;
    --font-size-content-heading: 24px;
    --font-size-lead: 16px;
    --font-size-body: 14px;
    --font-size-meta: 9px;
    --font-size-control: 11px;
    --font-size-nav: 11px;
    --font-size-48: 48px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.site-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1380px, calc(100% - 32px));
    min-height: 66px;
    padding: 10px 12px 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    background: rgba(251, 248, 241, 0.72);
    backdrop-filter: blur(24px) saturate(155%);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    transition: top 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-nav.scrolled {
    top: 8px;
    background: rgba(251, 248, 241, 0.9);
    border-color: rgba(17, 17, 17, 0.08);
}

.logo {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ink);
    font-size: 31px;
    font-weight: 700;

    background: black;
    border-radius: 40px;
}

.logo {
    width: 150px;
    display: grid;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(13px, 1.55vw, 27px);
}

.nav-links a {
    position: relative;
    color: rgba(17, 17, 17, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-links .nav-cta {}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta,
.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
    padding: 0 20px;
    background: var(--ink);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.button {
    padding: 0 24px;
}

.primary {
    background: var(--ink);
    color: var(--gold);
}

.secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ink);
}

.nav-cta:hover,
.button:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.nav-cta:hover,
.primary:hover {
    background: var(--gold);
    color: var(--black);
}

.text-link:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.menu-button {
    display: none;
    justify-self: end;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    cursor: pointer;
}

.section-pad {
    padding-inline: clamp(22px, 5vw, 76px);
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: var(--font-size-eyebrow);
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    max-width: 980px;
    margin-bottom: 28px;


    font-size: 72px;
    line-height: 1;
}

.lead {
    max-width: 680px;
    color: var(--muted);

    font-size: 18px;
}

@keyframes heroCopySlideIn {
    from {
        opacity: 0;
        transform: translateX(-42px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-link {
    background: black !important;
    color: var(--gold) !important;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.site-footer {
    --footer-bg: #16120d;
    --footer-panel: #1e1a14;
    --footer-cream: #efe9dc;
    --footer-muted: #a29a88;
    --footer-gold: #c9a24b;
    --footer-gold-soft: #dcbd7f;
    --footer-line: rgba(239, 233, 220, 0.12);
    --footer-line-strong: rgba(239, 233, 220, 0.22);
    background: var(--footer-bg);
    color: var(--footer-cream);
    border-top: 6px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.footer-trophy-accent {
    position: absolute;

    right: -10px;
    bottom: -20px;
    z-index: 0;

    height: 60vh;
    width: auto;
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black);
}

.footer-inner {
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-line);
    color: var(--footer-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.footer-kicker .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--footer-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.15);
}

.footer-kicker strong {
    color: var(--footer-gold-soft);
    font-weight: 600;
}

.footer-kicker .live {
    margin-left: auto;
    color: var(--footer-cream);
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-kicker .live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0563b;
    box-shadow: 0 0 0 0 rgba(224, 86, 59, 0.6);
    animation: footer-pulse 2.4s infinite;
}

@keyframes footer-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 86, 59, 0.55);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(224, 86, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 86, 59, 0);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
    gap: 48px 40px;
    padding: 56px 0 60px;
}

.brand .wordmark {
    display: inline-flex;
    align-items: center;
    width: 74px;
    height: 60px;
}

.brand .wordmark img {
    display: block;
    width: 124px;
    height: 100px;
    object-fit: contain;
}

.brand p.blurb {
    max-width: 34ch;
    margin: 18px 0 24px;
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.2;
}

.socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--footer-line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-cream);
    transition: all 0.25s ease;
}

.socials a:hover {
    background: var(--footer-gold);
    border-color: var(--footer-gold);
    color: #16120d;
}

.socials svg,
.apps svg {
    fill: currentColor;
}

.socials svg {
    width: 16px;
    height: 16px;
}

.col h4,
.connect h4 {
    margin: 0 0 20px;
    color: var(--footer-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.col a {
    color: var(--footer-cream);
    display: block;
    font-size: 14.5px;
    line-height: 1.2;
    position: relative;
    width: fit-content;
    transition: color 0.2s ease;
}

.col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 1px;
    width: 0;
    background: var(--footer-gold);
    transition: width 0.28s ease;
}

.col a:hover {
    color: var(--footer-gold-soft);
}

.col a:hover::after {
    width: 100%;
}

.connect .sub {
    margin: 0 0 14px;
    color: var(--footer-muted);
    font-size: 13.5px;
    line-height: 1.2;
}

.connect .news {
    position: relative;
    display: flex;
    border: 1px solid var(--footer-line-strong);
    border-radius: 10px;
    overflow: hidden;
    background: var(--footer-panel);
}

.connect .news[hidden] {
    display: none;
}

.newsletter-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.connect .news input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    color: var(--footer-cream);
    font: inherit;
    font-size: 13.5px;
}

.connect .news input::placeholder {
    color: #7f7767;
}

.connect .news input:focus {
    outline: none;
}

.connect .news button {
    border: 0;
    background: var(--footer-gold);
    color: #16120d;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0 18px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.connect .news button:hover {
    background: var(--footer-gold-soft);
}

.connect .news button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.newsletter-message {
    margin: 12px 0 0;
    font-size: 13.5px;
    line-height: 1.45;
}

.newsletter-message-success {
    color: #b9dda2;
}

.newsletter-message-error {
    color: #f0b2a9;
}

.app-label {
    margin: 26px 0 12px;
    color: var(--footer-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.apps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.apps a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 135px;
    width: 135px;
    height: 40px;
    overflow: hidden;
    border: 0;

    padding: 0;
    background: transparent;
}

.apps a:hover {
    background: transparent;
}

.apps img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.apps svg {
    width: 17px;
    height: 17px;
    color: var(--footer-cream);
}

.apps span small {
    display: block;
    color: var(--footer-muted);
    font-size: 8.5px;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.apps span b {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon-modal[hidden] {
    display: none;
}

.coming-soon-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.coming-soon-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.64);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.coming-soon-dialog {
    position: relative;
    width: min(430px, 100%);
    padding: clamp(26px, 5vw, 38px);
    border: 1px solid rgba(232, 173, 0, 0.42);
    border-radius: 8px;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.coming-soon-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
    font-size: 24px;
    line-height: 1.2;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.coming-soon-close:hover {
    background: var(--black);
    color: var(--gold);
    transform: rotate(90deg);
}

.coming-soon-dialog h2 {
    margin: 8px 0 12px;
    font-family: "Playfair Display", Georgia, serif;

    font-size: 30px;
    line-height: 1.2;
}

.coming-soon-dialog p:last-child {
    margin: 0;
    color: var(--graphite);
    font-size: 16px;
    line-height: 1.2;
}

[data-coming-soon] {
    cursor: pointer;
}

html,
body {
    width: 100%;
    max-width: 100%;
}

main,
section,
header,
footer,
.section-pad,
.site-nav,
.footer-inner,
.footer-grid {
    min-width: 0;
}

img,
video,
svg {
    max-width: 100%;
}

.mobile-show {
    display: none;
}

.mobile-hide {
    display: block;
}

.mobile-section-more {
    display: none;
    grid-column: 1 / -1;
}


.legal {
    border-top: 1px solid var(--footer-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px 0 30px;
    color: var(--footer-muted);
    font-size: 12.5px;
}

.legal .links {
    display: flex;
    gap: 26px;
}

.legal a {
    color: var(--footer-muted);
    transition: color 0.2s ease;
}

.legal a:hover {
    color: var(--footer-gold-soft);
}


@media (min-width: 1181px) {
    .footer-inner {}

    .footer-grid {
        grid-template-columns: minmax(340px, 1.35fr) minmax(128px, 0.58fr) minmax(132px, 0.58fr) minmax(198px, 0.82fr) minmax(280px, 1.08fr);
        column-gap: clamp(20px, 2.1vw, 30px);
        row-gap: 42px;
    }

    .brand p.blurb {
        max-width: 32ch;
    }

    .socials {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .socials a {
        flex: 0 0 38px;
    }

    /* added back from bkp */
    .hero.hero-full-media .media-caption {
        display: none;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    :root {
        --font-size-page-title: 36px;
        --font-size-section-title: 22px;
        --font-size-feature-title: 20px;
        --font-size-card-title: 20px;
        --font-size-article-title: 22px;
        --font-size-content-heading: 22px;
        --font-size-lead: 15px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(128px, 0.72fr));
        column-gap: 26px;
        row-gap: 40px;
    }

    .connect {
        grid-column: 1 / -1;
    }

    .socials {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .socials a {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 1180px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 30px;
    }

    .brand {
        grid-column: 1 / -1;
    }

    .site-nav {
        grid-template-columns: auto auto;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 26px;
        background: rgba(251, 248, 241, 0.96);
        backdrop-filter: blur(24px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 8px;
    }

    .nav-links a::after,
    .nav-cta {
        display: none;
    }

    .site-nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 12px;
    }

    .site-nav .logo {
        justify-self: start;
    }

    .nav-links {
        max-height: min(72vh, 560px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
    }

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-button {
        display: inline-flex !important;
    }

    .nav-links:not(.open) {
        display: none !important;
    }
}

@media (max-width: 760px) {
    :root {
        --font-size-eyebrow: 12px;
        --font-size-page-title: 24px;
        --font-size-section-title: 16px;
        --font-size-feature-title: 18px;
        --font-size-card-title: 16px;
        --font-size-article-title: 20px;
        --font-size-content-heading: 20px;
        --font-size-lead: 14px;
        --font-size-meta: 8px;
        --font-size-control: 10px;
        --font-size-nav: 10px;
    }

    .footer-trophy-accent {
        display: none;
    }

    .footer-inner {
        padding: 52px 22px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 44px 0 48px;
    }

    .footer-kicker .live {
        margin-left: 0;
        width: 100%;
    }

    .brand p.blurb {
        margin: 0px 0 10px;
    }

    .brand .wordmark {
        height: 0px;
    }

    .site-nav {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 60px;
    }

    .logo {
        font-size: 26px;
    }

    .button {
        width: 100%;
    }

    .coming-soon-dialog h2 {
        font-size: 20px;
    }

    .footer_copyright {
        text-align: center;
    }

    .mobile-show {
        display: block;
    }

    .mobile-hide {
        display: none;
    }

    .site-nav {
        top: max(10px, env(safe-area-inset-top));
        width: min(calc(100% - 20px), 680px);
        min-height: 58px;
        padding: 8px 10px 8px 12px;
    }

    .site-nav.scrolled {
        top: max(8px, env(safe-area-inset-top));
    }

    .logo {
        width: clamp(112px, 42vw, 150px);
        min-height: 44px;
        border-radius: 999px;
    }

    .logo img,
    .site-nav .logo img {
        width: clamp(86px, 30vw, 120px) !important;
        height: auto !important;
        max-height: 48px;
        object-fit: contain;
    }

    .menu-button {
        min-height: 42px;
        padding-inline: 18px;
        background: rgba(255, 255, 255, 0.74);
        white-space: nowrap;
    }

    .nav-links {
        left: 0;
        right: 0;
        padding: 12px;
        border-radius: 22px;
    }

    .nav-links a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.25;
    }

    .footer-inner {
        width: min(100% - 32px, 520px);
        max-width: none;
        padding: 0px;
    }

    .footer-grid {
        gap: 34px;
        padding: 38px 0 42px;
    }

    .brand {
        padding-right: 0 !important;
    }

    .connect .sub {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    .connect .news {
        display: grid;
        grid-template-columns: 1fr;
        overflow: visible;
        border-radius: 14px;
    }

    .connect .news input {
        min-height: 52px;
        width: 100%;
    }

    .connect .news button {
        min-height: 50px;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }

    .apps {
        display: grid;


        grid-auto-flow: column;
        align-content: center;
    }

    .apps a {
        justify-content: center;
        width: 100%;
        height: 54px;
        min-height: 54px;
    }

    .site-nav {
        width: calc(100% - 16px);
    }

    .menu-button {
        padding-inline: 14px;
    }

    body {
        overflow-x: hidden;
    }

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .menu-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .section-pad {
        width: 100%;
        padding-left: clamp(18px, 6vw, 24px);
        padding-right: clamp(18px, 6vw, 24px);
    }

    .lead {
        max-width: 100%;
        min-width: 0;
    }

    .button,
    .text-link {
        max-width: 100%;

        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
    }

    .text-link {
        font-size: 8px;
        min-height: 30px;
    }

    h1,
    h2,
    h3,
    p,
    .button,
    .text-link,
    .eyebrow {
        max-width: 100%;
    }

    .lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-grid .col ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 18px;
        align-items: start;
    }

    .footer-grid .col a {
        width: auto;
        max-width: 100%;
        line-height: 1.25;
    }

    :root {
        --phone-home-nav-height: calc(68px + env(safe-area-inset-top));
        --phone-home-controls-space: 92px;
    }

    .site-nav,
    .site-nav.scrolled {
        top: 0;
        width: 100%;
        max-width: none;
        min-height: var(--phone-home-nav-height);
        padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
        border-radius: 0;
        background: #fbf8f1;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .site-nav .nav-links {
        top: 100%;
        margin-top: 0;
        border-radius: 0 0 22px 22px;
    }

    .mobile-section-more {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 5px;
        text-align: center;
    }

    .mobile-section-more a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 0;
        background: transparent;
        color: var(--ink);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        line-height: 1.2;
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 5px;
        text-transform: uppercase;
    }

    .mobile-section-more a span {
        margin-left: 6px;
        text-decoration: none;
    }

    .mobile-section-more a:hover,
    .mobile-section-more a:focus-visible {
        color: var(--gold);
    }

    /* added from bkp */
    .media-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 16px;
        border-radius: 16px;
    }

    .media-caption strong {
        /* font-size: clamp(22px, 7vw, 30px); */
        font-size: 16px !important;
        line-height: 1.12;
    }

    /* .hero .media-caption {
        display: none;
    } */

    .legal {
        justify-content: center;
    }

    .legal {
        font-size: 8px;
    }
}

@media (max-width: 760px) and (orientation: portrait) {
    :root {
        --phone-home-controls-space: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-kicker .live::before {
        animation: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* added back from bkp */

.media-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.42);
    color: var(--white);
    backdrop-filter: blur(22px);
}

.media-caption span,
.hero-meta span,
.partners>span,
.timeline-item span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.media-caption strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    /* letter-spacing: -0.03em; */
}

.hero-full-media .media-caption {
    display: none;
}