:root {
    --tdi-chrome-ink: #11131a;
    --tdi-chrome-muted: #5f6470;
    --tdi-chrome-white: #fff;
    --tdi-chrome-yellow: #f9e382;
    --tdi-chrome-teal: #12afb2;
    --tdi-chrome-pink: #df3e74;
    --tdi-chrome-purple: #4f49c5;
    --tdi-chrome-line: rgba(17, 19, 26, 0.12);
    --tdi-header-height: 88px;
}

.tdi-site-header *,
.tdi-site-footer * {
    box-sizing: border-box;
}

.tdi-site-header :where(a, button),
.tdi-site-footer :where(a, button) {
    font: inherit;
}

.tdi-site-header :where(a, button):focus-visible,
.tdi-site-footer :where(a, button):focus-visible {
    border-radius: 8px;
    outline: 3px solid #ffd166 !important;
    outline-offset: 3px;
}

.tdi-chrome-solid #lqd-site-content {
    padding-top: var(--tdi-header-height);
}

.tdi-site-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    color: var(--tdi-chrome-ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(17, 19, 26, 0.08);
    box-shadow: 0 8px 24px rgba(17, 19, 26, 0.06);
    transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, min-height 180ms ease;
}

body.admin-bar .tdi-site-header {
    top: 32px;
}

.tdi-site-header--overlay:not(.is-scrolled) {
    color: #fff;
    background: linear-gradient(180deg, rgba(11, 13, 21, 0.48), rgba(11, 13, 21, 0));
    border-bottom-color: transparent;
    box-shadow: none;
}

.tdi-header__inner {
    display: flex;
    width: min(1380px, calc(100% - 64px));
    min-height: var(--tdi-header-height);
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    margin-inline: auto;
}

.tdi-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.tdi-brand img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: filter 180ms ease, transform 180ms ease;
}

.tdi-site-header--overlay:not(.is-scrolled) .tdi-header__brand img {
    filter: invert(1);
}

.tdi-brand:hover img {
    transform: scale(1.035);
}

.tdi-header__desktop {
    min-width: 0;
    flex: 1 1 auto;
}

.tdi-nav,
.tdi-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tdi-nav--desktop > .tdi-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(4px, 0.65vw, 12px);
}

.tdi-nav__item {
    position: relative;
}

.tdi-nav__item-row {
    display: flex;
    align-items: center;
}

.tdi-nav--desktop .tdi-nav__item > a,
.tdi-nav--desktop .tdi-nav__item-row > a,
.tdi-language-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.tdi-nav--desktop .tdi-nav__item > a:hover,
.tdi-nav--desktop .tdi-nav__item-row > a:hover,
.tdi-language-button:hover,
.tdi-nav--desktop .is-current-parent > .tdi-nav__item-row > a,
.tdi-nav--desktop [aria-current="page"] {
    text-decoration: underline;
    text-decoration-color: var(--tdi-chrome-yellow);
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
}

.tdi-submenu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.tdi-submenu-toggle svg,
.tdi-language-button svg {
    width: 18px;
    height: 18px;
    transition: transform 160ms ease;
}

.tdi-language-button {
    gap: 4px;
    cursor: pointer;
}

.tdi-submenu-toggle[aria-expanded="true"] svg,
.tdi-language-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.tdi-submenu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    min-width: 240px;
    max-width: min(320px, calc(100vw - 32px));
    padding: 10px !important;
    color: var(--tdi-chrome-ink);
    background: #fff;
    border: 1px solid rgba(17, 19, 26, 0.09);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(17, 19, 26, 0.18);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.tdi-nav__item--language .tdi-submenu {
    right: 0;
    left: auto;
    min-width: 190px;
}

.tdi-nav--desktop .tdi-nav__item--has-children:hover > .tdi-submenu,
.tdi-nav--desktop .tdi-nav__item--has-children:focus-within > .tdi-submenu,
.tdi-nav--desktop .tdi-nav__item--has-children:has([aria-expanded="true"]) > .tdi-submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.tdi-submenu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 13px;
    color: var(--tdi-chrome-ink);
    border-radius: 11px;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none;
}

.tdi-submenu a:hover,
.tdi-submenu a[aria-current] {
    color: #fff;
    background: var(--tdi-chrome-purple);
}

.tdi-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.tdi-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    color: var(--tdi-chrome-ink) !important;
    background: var(--tdi-chrome-yellow);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(17, 19, 26, 0.12);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.tdi-button:hover {
    color: var(--tdi-chrome-ink) !important;
    background: #ffe993;
    box-shadow: 0 14px 32px rgba(17, 19, 26, 0.18);
    transform: translateY(-2px);
}

.tdi-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.tdi-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
}

.tdi-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.tdi-drawer[hidden] {
    display: none;
}

.tdi-drawer {
    position: fixed;
    z-index: 10010;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    color: var(--tdi-chrome-ink);
}

.tdi-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(7, 8, 13, 0.62);
    border: 0;
    opacity: 0;
    cursor: pointer;
    transition: opacity 220ms ease;
}

.tdi-drawer__panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(500px, 100%);
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: -24px 0 70px rgba(7, 8, 13, 0.24);
    transform: translateX(100%);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tdi-drawer[data-open="true"] .tdi-drawer__backdrop {
    opacity: 1;
}

.tdi-drawer[data-open="true"] .tdi-drawer__panel {
    transform: translateX(0);
}

.tdi-drawer__topbar {
    display: flex;
    min-height: 92px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    border-bottom: 1px solid var(--tdi-chrome-line);
}

.tdi-drawer__brand img {
    width: 66px;
    height: 66px;
}

.tdi-drawer__close {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--tdi-chrome-ink);
    background: #f5f5f7;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.tdi-drawer__close svg {
    width: 24px;
    height: 24px;
}

.tdi-drawer__content {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px 22px max(32px, env(safe-area-inset-bottom));
}

.tdi-nav--mobile .tdi-nav__list {
    display: grid;
    gap: 4px;
}

.tdi-nav--mobile .tdi-nav__item {
    border-bottom: 1px solid var(--tdi-chrome-line);
}

.tdi-nav--mobile .tdi-nav__item-row,
.tdi-nav--mobile .tdi-nav__item > a {
    display: flex;
    min-height: 56px;
    align-items: center;
}

.tdi-nav--mobile .tdi-nav__item-row > a,
.tdi-nav--mobile .tdi-nav__item > a,
.tdi-nav--mobile .tdi-language-button {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 13px 4px;
    color: var(--tdi-chrome-ink);
    background: transparent;
    border: 0;
    font-size: clamp(19px, 5.2vw, 24px);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.tdi-nav--mobile .tdi-submenu-toggle {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin: 0;
    background: #f3f3f5;
}

.tdi-nav--mobile .tdi-submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0 0 12px 10px !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
}

.tdi-nav--mobile .tdi-nav__item--has-children:has([aria-expanded="true"]) > .tdi-submenu {
    display: grid;
    gap: 2px;
}

.tdi-nav--mobile .tdi-submenu a {
    padding-inline: 14px;
    background: #f7f7f8;
}

.tdi-nav--mobile .tdi-submenu a:hover,
.tdi-nav--mobile .tdi-submenu a[aria-current] {
    color: #fff;
    background: var(--tdi-chrome-purple);
}

.tdi-button--drawer {
    width: 100%;
    min-height: 58px;
    margin-top: 28px;
}

.tdi-drawer__help {
    margin: 16px 0 0;
    color: var(--tdi-chrome-muted);
    font-size: 15px;
    text-align: center;
}

.tdi-drawer__help a {
    color: var(--tdi-chrome-ink);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

html.tdi-drawer-open,
html.tdi-drawer-open body {
    overflow: hidden;
}

.tdi-site-footer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 86% 8%, rgba(18, 175, 178, 0.2), transparent 28%),
        radial-gradient(circle at 8% 78%, rgba(223, 62, 116, 0.19), transparent 32%),
        #11131a;
}

.tdi-site-footer a,
.tdi-site-footer button {
    color: inherit;
}

.tdi-footer-cta {
    display: grid;
    width: min(1280px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: center;
    gap: 48px;
    margin: 0 auto;
    padding: clamp(58px, 7vw, 96px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tdi-footer__eyebrow {
    margin: 0 0 14px !important;
    color: var(--tdi-chrome-yellow);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.tdi-footer-cta h2 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #fff;
    font-family: "integral-demi-bold", "Oswald", sans-serif;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

/* Boat Party landing styles load later and use important heading colors. */
.tdi-site-footer .tdi-footer-cta h2,
.tdi-site-footer .tdi-footer__group h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.tdi-footer-cta__content > p:last-child {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.55;
}

.tdi-footer-cta__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.tdi-button--footer {
    min-height: 58px;
}

.tdi-footer-cta__help {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 4px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tdi-footer__main {
    display: grid;
    width: min(1280px, calc(100% - 64px));
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 2.3fr);
    gap: clamp(48px, 7vw, 100px);
    margin: 0 auto;
    padding: clamp(58px, 7vw, 90px) 0;
}

.tdi-footer__brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tdi-footer__brand img {
    width: 106px;
    height: 106px;
    filter: invert(1);
}

.tdi-footer__contact {
    display: grid;
    gap: 8px;
    margin: 26px 0 0;
    font-style: normal;
}

.tdi-footer__contact a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
}

.tdi-footer__contact a:hover {
    color: var(--tdi-chrome-yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tdi-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.tdi-footer__socials a {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.tdi-footer__socials a:hover {
    color: var(--tdi-chrome-ink);
    background: var(--tdi-chrome-yellow);
    transform: translateY(-2px);
}

.tdi-footer__socials svg {
    width: 21px;
    height: 21px;
}

.tdi-footer__navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.tdi-footer__group h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tdi-footer__group ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tdi-footer__group a,
.tdi-footer__group button {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    border: 0;
    font-size: 15px;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.tdi-footer__group a:hover,
.tdi-footer__group button:hover,
.tdi-footer__group a[aria-current] {
    color: var(--tdi-chrome-yellow);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tdi-footer__accessibility summary {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.35;
    cursor: pointer;
}

.tdi-footer__accessibility summary:hover,
.tdi-footer__accessibility[open] summary {
    color: var(--tdi-chrome-yellow);
}

.tdi-footer__accessibility p {
    margin: 4px 0 12px;
    padding: 12px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.tdi-footer__accessibility p a {
    display: inline;
    min-width: 0;
    min-height: 0;
    padding: 0;
    color: #fff;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tdi-footer__bottom {
    display: flex;
    width: min(1280px, calc(100% - 64px));
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tdi-footer__bottom p,
.tdi-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.tdi-footer__bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    text-decoration: none;
}

.tdi-footer__bottom a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tdi-footer__languages ul {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tdi-footer__languages a {
    min-width: 44px;
    justify-content: center;
    border-radius: 8px;
    font-weight: 750;
}

.tdi-footer__languages a[aria-current] {
    color: var(--tdi-chrome-ink);
    background: var(--tdi-chrome-yellow);
}

@media (max-width: 1199px) {
    :root {
        --tdi-header-height: 82px;
    }

    .tdi-header__inner {
        width: min(100% - 30px, 1080px);
        gap: 14px;
    }

    .tdi-header__brand img {
        width: 60px;
        height: 60px;
    }

    .tdi-header__desktop {
        display: none;
    }

    .tdi-header__actions {
        margin-left: auto;
    }

    .tdi-menu-toggle {
        display: inline-flex;
    }

    .tdi-footer__main {
        grid-template-columns: 1fr;
    }

    .tdi-footer__brand-column {
        display: grid;
        grid-template-columns: auto minmax(220px, 1fr) auto;
        align-items: center;
        gap: 30px;
    }

    .tdi-footer__contact,
    .tdi-footer__socials {
        margin: 0;
    }
}

@media (max-width: 900px) {
    .tdi-footer-cta {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tdi-footer-cta__actions {
        justify-content: flex-start;
    }

    .tdi-footer__navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .tdi-site-header {
        top: 46px;
    }
}

@media (max-width: 600px) {
    :root {
        --tdi-header-height: 78px;
    }

    .tdi-header__inner {
        width: calc(100% - 24px);
    }

    .tdi-header__brand img {
        width: 56px;
        height: 56px;
    }

    .tdi-button--header {
        min-height: 46px;
        padding: 11px 15px;
        font-size: 12px;
    }

    .tdi-button--header svg {
        display: none;
    }

    .tdi-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .tdi-drawer__topbar {
        min-height: 84px;
        padding-inline: 16px;
    }

    .tdi-drawer__content {
        padding: 16px 18px max(28px, env(safe-area-inset-bottom));
    }

    .tdi-footer-cta,
    .tdi-footer__main,
    .tdi-footer__bottom {
        width: calc(100% - 36px);
    }

    .tdi-footer-cta {
        padding-block: 58px;
    }

    .tdi-footer-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tdi-button--footer {
        width: 100%;
    }

    .tdi-footer-cta__help {
        justify-content: center;
    }

    .tdi-footer__main {
        gap: 52px;
        padding-block: 58px;
    }

    .tdi-footer__brand-column {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .tdi-footer__contact {
        align-items: center;
        margin-top: 22px;
    }

    .tdi-footer__contact a {
        justify-content: center;
    }

    .tdi-footer__socials {
        margin-top: 22px;
    }

    .tdi-footer__navigation {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tdi-footer__group {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .tdi-footer__group:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .tdi-footer__group h2 {
        margin-bottom: 10px;
    }

    .tdi-footer__bottom {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        padding-block: 24px 30px;
    }

    .tdi-footer__languages {
        width: 100%;
    }

    .tdi-footer__languages ul {
        justify-content: space-between;
    }
}

@media (max-width: 370px) {
    .tdi-button--header {
        padding-inline: 12px;
        font-size: 11px;
    }

    .tdi-header__actions {
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tdi-site-header *,
    .tdi-site-footer * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .tdi-site-header,
    .tdi-footer-cta,
    .tdi-footer__navigation,
    .tdi-footer__socials {
        display: none !important;
    }

    .tdi-chrome-solid #lqd-site-content {
        padding-top: 0;
    }
}
