/* tokens */
:root {
    --brand: #8b0000;
    --brand-700: #75090c;
    --deep: #4a0a12;
    --ink: #2a1c1a;
    --muted: #6e5b57;
    --gold: #ffd100;
    --gold-300: #ffe788;
    --sand: #f4e7e0;
    --line: #e4d8d3;
    --white: #fff;
    --phone: #17181a;
    --radius: 4px;
    --chamfer: 14px;
    --shadow-lift: 0 18px 40px rgba(42, 28, 26, .18);
    --ease: cubic-bezier(.4, .12, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* keeps the hidden attribute working on flex/grid components */
[hidden] {
    display: none !important;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "Oxygen", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    font-family: "Outfit", "Oxygen", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--deep);
    letter-spacing: -.01em;
}

p {
    margin: 0 0 1em;
}

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

sup {
    font-size: .5em;
    vertical-align: super;
    line-height: 0;
}

.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    padding: 14px 30px;
    border-radius: var(--radius);
    transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-700);
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
}

.btn-gold:hover {
    background: var(--gold-300);
}

.btn-sm {
    font-size: 15px;
    padding: 11px 22px;
}

/* brand lockup */
.brand {
    display: inline-flex;
    align-items: center;
}

.lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--gold);
    padding: 7px 9px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.08;
    letter-spacing: .04em;
    color: var(--deep);
    text-transform: uppercase;
}

/* lockup blocks (pass artwork) */
.lockup--blocks {
    background: none;
    padding: 0;
    gap: 3px;
}

.lockup--blocks span {
    background: var(--deep);
    color: var(--gold);
    padding: 2px 5px 3px;
}

/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 74px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
}

.burger span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--ink);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-family: "Outfit", sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color .18s var(--ease), border-color .18s var(--ease);
}

.nav__link:hover {
    color: var(--brand);
    border-bottom-color: var(--gold);
}

.nav__lang {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.flag {
    width: 26px;
    height: 18px;
    border-radius: 2px;
    display: block;
}

/* hero */
.hero__media {
    position: relative;
    height: 520px;
    background: var(--sand);
}

.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(102deg, rgba(252, 246, 243, .93) 0%, rgba(252, 246, 243, .6) 28%, rgba(252, 246, 243, 0) 56%);
}

.hero__titlewrap {
    position: relative;
    z-index: 2;
    padding-top: 54px;
}

.hero__title {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.hero__band {
    background: var(--white);
}

.hero__band-inner {
    display: flex;
    align-items: flex-end;
    gap: 44px;
    padding-bottom: 34px;
}

.hero__lede {
    font-family: "Outfit", sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.42;
    color: var(--deep);
    max-width: 34ch;
    padding-bottom: 4px;
}

.hero__lede em {
    font-style: normal;
    color: var(--brand);
}

.hero__sale {
    padding-bottom: 34px;
}

.hero__sale-rule {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--line);
}

.sale-chip {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 26px;
}

.hero__note {
    margin: 12px 0 0;
    text-align: right;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep);
}

/* pass artwork */
.pass-mock {
    display: flex;
    align-items: flex-end;
    flex: none;
    margin-top: -238px;
    position: relative;
    z-index: 3;
}

.pass-phone-wrap {
    width: 186px;
    height: 341px;
    flex: none;
    position: relative;
    z-index: 2;
}

.pass-phone {
    width: 300px;
    height: 550px;
    transform: scale(.62);
    transform-origin: top left;
    background: var(--phone);
    border-radius: 42px;
    padding: 11px;
    box-shadow: var(--shadow-lift);
}

.pass-screen {
    position: relative;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pass-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 22px;
    background: var(--phone);
    border-radius: 0 0 14px 14px;
    z-index: 4;
}

.pass-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px 0;
    font-size: 9px;
    font-weight: 700;
    color: var(--phone);
    letter-spacing: .02em;
}

.pass-status>span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.pass-signal {
    display: inline-flex;
    gap: 2px;
    margin-right: 2px;
}

.pass-signal i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 1px solid var(--phone);
    display: block;
}

.pass-signal i:nth-child(-n+3) {
    background: var(--phone);
}

.pass-battery {
    width: 16px;
    height: 8px;
    border: 1px solid var(--phone);
    border-radius: 2px;
    position: relative;
    display: inline-block;
}

.pass-battery::before {
    content: "";
    position: absolute;
    inset: 1.5px;
    right: 6px;
    background: var(--phone);
    border-radius: 1px;
}

.pass-battery::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 2px;
    width: 2px;
    height: 4px;
    background: var(--phone);
    border-radius: 0 1px 1px 0;
}

.pass-ticket {
    position: relative;
    margin: 10px 12px 12px;
    flex: 1;
    border-radius: 12px;
    background: linear-gradient(150deg, var(--gold) 0%, #ffdc4f 46%, var(--gold) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pass-ticket::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 120%;
    height: 90%;
    background: linear-gradient(200deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 62%);
    transform: rotate(-8deg);
    pointer-events: none;
}

.pass-ticket__top {
    position: relative;
    padding: 22px 20px 0;
}

.pass-ticket .lockup--blocks {
    font-size: 14px;
    letter-spacing: .03em;
}

.pass-ticket__plan {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep);
    margin: 34px 0 12px;
    line-height: 1;
}

.pass-ticket__meta {
    display: flex;
    gap: 24px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--deep);
}

.pass-ticket__meta b {
    display: block;
    font-weight: 400;
    opacity: .85;
}

.pass-perf {
    position: relative;
    margin-top: 26px;
    border-top: 2px dotted rgba(74, 10, 18, .45);
}

.pass-perf::before,
.pass-perf::after {
    content: "";
    position: absolute;
    top: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
}

.pass-perf::before {
    left: -29px;
}

.pass-perf::after {
    right: -29px;
}

.pass-ticket__bottom {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pass-qr {
    width: 122px;
    height: 122px;
    display: block;
    padding: 5px;
    background: #fff;
    margin-top: -12px;
}

.pass-tray {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: var(--deep);
    z-index: 3;
}

.pass-tray svg {
    width: 17px;
    height: 17px;
    display: block;
}

.pass-pagedots {
    display: flex;
    gap: 5px;
}

.pass-pagedots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--deep);
    display: block;
    opacity: .35;
}

.pass-pagedots i:nth-child(2) {
    opacity: 1;
}

/* pass card */
.pass-card {
    width: 246px;
    height: 151px;
    flex: none;
    margin-left: 18px;
    margin-bottom: 4px;
    border-radius: 13px;
    padding: 22px 20px 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(140deg, #ffdc4f 0%, var(--gold) 55%, #f5c400 100%);
    box-shadow: 0 14px 30px rgba(42, 28, 26, .16);
}

.pass-card .lockup--blocks {
    font-size: 11px;
    letter-spacing: .03em;
}

.pass-card__slogan {
    align-self: flex-end;
    text-align: right;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.3;
    color: var(--deep);
}

/* sections */
.section-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-exp {
    padding: 52px 0 46px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--deep);
}

.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.6px solid var(--brand);
    color: var(--brand);
    flex: none;
    transition: background-color .2s var(--ease), color .2s var(--ease);
}

.circle-arrow svg {
    width: 14px;
    height: 14px;
}

.link-arrow:hover .circle-arrow {
    background: var(--brand);
    color: var(--white);
}

.exp-foot {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

/* carousel */
.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 24px;
    max-width: 1230px;
    margin: 0 auto;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.car-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.6px solid var(--brand);
    color: var(--brand);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}

.car-arrow svg {
    width: 15px;
    height: 15px;
}

.car-arrow:hover {
    background: var(--brand);
    color: var(--white);
}

.car-arrow[disabled] {
    opacity: .3;
    cursor: default;
}

.car-arrow[disabled]:hover {
    background: var(--white);
    color: var(--brand);
}

.car-arrow--prev {
    left: 8px;
}

.car-arrow--next {
    right: 8px;
}

.exp-card {
    position: relative;
    flex: none;
    width: 294px;
    scroll-snap-align: start;
    background: var(--deep);
    display: flex;
    flex-direction: column;
    clip-path: polygon(var(--chamfer) 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)), 0 var(--chamfer));
    /* side scallops meet as full circles between cards */
    --notch: 4px;
    --notch-pitch: 14px;
    -webkit-mask:
        radial-gradient(circle var(--notch) at 0 50%, #0000 98%, #000) 0 4px / 100% var(--notch-pitch) repeat,
        radial-gradient(circle var(--notch) at 100% 50%, #0000 98%, #000) 0 4px / 100% var(--notch-pitch) repeat;
    -webkit-mask-composite: source-in;
    mask:
        radial-gradient(circle var(--notch) at 0 50%, #0000 98%, #000) 0 4px / 100% var(--notch-pitch) repeat,
        radial-gradient(circle var(--notch) at 100% 50%, #0000 98%, #000) 0 4px / 100% var(--notch-pitch) repeat;
    mask-composite: intersect;
}

.exp-card__img {
    display: block;
    width: 100%;
    height: 196px;
    object-fit: cover;
}

.exp-card__body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 20px 18px;
    flex: 1;
}

.exp-card__text {
    flex: 1;
}

.exp-card__title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 4px;
}

.exp-card__meta {
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--gold-300);
    margin: 0;
}

.exp-card__go {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.6px solid var(--white);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.exp-card__go svg {
    width: 15px;
    height: 15px;
}

.exp-card:hover .exp-card__go {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
}

/* save money */
.section-save {
    background: var(--deep);
    color: var(--white);
    padding-top: 0;
}

.chip-heading {
    position: relative;
    top: -26px;
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    padding: 12px 26px;
}

.section-save .save__lede {
    max-width: 78ch;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
    margin: -8px 0 44px;
}

.save__feature {
    position: relative;
}

.save__feature::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    height: 1px;
    background: rgba(255, 255, 255, .22);
}

.save__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 30px;
    padding-bottom: 48px;
}

.save__icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 84px;
    padding-bottom: 12px;
    color: var(--gold);
}

.save__icon svg {
    width: 72px;
    height: 72px;
}

.save__item p {
    text-align: center;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
    max-width: 23ch;
    margin: 0 auto;
    padding-top: 26px;
}

/* ticket perforations */
.perf {
    position: relative;
    height: 34px;
    background-image: radial-gradient(circle at 7px 50%, var(--white) 2.2px, transparent 2.6px);
    background-size: 14px 100%;
}

.perf::before,
.perf::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
}

.perf::before {
    left: 0;
    border-left: 17px solid var(--white);
}

.perf::after {
    right: 0;
    border-right: 17px solid var(--white);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 0 56px;
}

.cta-band h2 {
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    max-width: 30ch;
}

.cta-band .btn {
    flex: none;
    min-width: 178px;
}

/* how it works */
.section-how {
    padding: 54px 0 58px;
}

.how__grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 74px;
    align-items: start;
}

.video-ph {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 420 / 262;
    overflow: hidden;
    background: var(--deep);
}

.video-ph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-ph__caption {
    position: absolute;
    left: 18px;
    bottom: 58px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.video-ph__caption span {
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.25;
    padding: 3px 10px;
}

.video-ph__tools {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-ph__tools i {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: rgba(23, 24, 26, .78);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-ph__tools svg {
    width: 15px;
    height: 15px;
}

.video-ph__bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 40px;
    background: rgba(23, 24, 26, .82);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .85);
    font-size: 11px;
}

.video-ph__play {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-ph__play svg {
    width: 13px;
    height: 13px;
}

.video-ph__time {
    background: rgba(255, 255, 255, .18);
    padding: 1px 5px;
    border-radius: 2px;
    letter-spacing: .04em;
}

.video-ph__brand {
    margin-left: auto;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--white);
    opacity: .85;
}

.video-ph__big {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-ph__big i {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(74, 10, 18, .72);
    border: 2px solid rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform .25s var(--ease), background-color .25s var(--ease);
}

.video-ph__big svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.video-ph:hover .video-ph__big i {
    transform: scale(1.06);
    background: var(--brand);
}

.steps {
    list-style: none;
    margin: 0;
    padding: 4px 0 0;
}

.steps li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 40px;
}

.steps li:last-child {
    padding-bottom: 0;
}

.steps li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}

.steps__num {
    width: 47px;
    height: 47px;
    flex: none;
    border-radius: 50%;
    border: 1.8px solid var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--deep);
    background: var(--white);
}

.steps p {
    margin: 0;
    padding-top: 10px;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 46ch;
}

/* experts */
.section-experts {
    padding: 6px 0 64px;
}

.quote {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 90ch;
    margin: 0 0 22px;
}

.quote-by {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
}

.quote-by b {
    font-family: "Outfit", sans-serif;
    color: var(--brand);
    font-weight: 700;
}

/* footer */
.footer {
    background: var(--deep);
    color: var(--white);
    padding: 62px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.6fr 1.35fr;
}

.footer__col+.footer__col {
    padding-left: 34px;
}

.footer__col:nth-child(n+3) {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.footer__title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--gold);
    margin: 0 0 22px;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    transition: color .18s var(--ease);
}

.footer__link:hover {
    color: var(--gold);
}

.footer__iata {
    display: block;
    width: 96px;
    height: auto;
    margin-top: 22px;
}

.subscribe {
    display: flex;
    align-items: stretch;
    max-width: 340px;
}

.subscribe input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    padding: 10px 2px;
}

.subscribe input::placeholder {
    color: rgba(255, 255, 255, .62);
}

.subscribe input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.subscribe button {
    flex: none;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    padding: 0 26px;
    transition: background-color .2s var(--ease);
}

.subscribe button:hover {
    background: var(--gold-300);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    max-width: 340px;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .75);
}

.consent input {
    accent-color: var(--gold);
    margin: 3px 0 0;
    flex: none;
}

.consent b {
    font-family: "Outfit", sans-serif;
    color: var(--white);
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 11px;
    margin-bottom: 34px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.4px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s var(--ease), color .2s var(--ease);
}

.socials svg {
    width: 15px;
    height: 15px;
}

.socials a:hover {
    background: var(--gold);
    color: var(--deep);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 34px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b0b0c;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 5px;
    padding: 7px 14px 7px 11px;
    color: var(--white);
}

.store-badge svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.store-badge__text {
    display: block;
}

.store-badge__text>span {
    display: block;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .8;
}

.store-badge__text>b {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 600;
}

.brought {
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 14px;
}

.footer__oj img {
    width: 176px;
    height: auto;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
}

.footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* responsive */
@media (max-width: 1199.98px) {
    .hero__lede {
        font-size: 21px;
    }

    .how__grid {
        gap: 44px;
    }

    .nav,
    .nav__list {
        gap: 22px;
    }

    .nav__link {
        font-size: 14.5px;
    }
}

@media (max-width: 991.98px) {
    .burger {
        display: flex;
    }

    .header__inner {
        height: 66px;
        gap: 14px;
    }

    .header .btn {
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 26px rgba(42, 28, 26, .12);
        padding: 8px 24px 22px;
        display: none;
    }

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

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav__list li+li {
        border-top: 1px solid var(--line);
    }

    .nav__link {
        display: block;
        padding: 13px 0;
        font-size: 17px;
        border-bottom: 0;
    }

    .nav__lang {
        padding-top: 16px;
    }

    .hero__media {
        height: 400px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .pass-mock {
        margin-top: -196px;
    }

    .hero__lede {
        font-size: 21px;
        max-width: none;
    }

    .save__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

    .save__feature::before {
        display: none;
    }

    .save__item {
        padding-bottom: 26px;
    }

    .save__item p {
        padding-top: 14px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .hero__media {
        height: 330px;
    }

    .hero__titlewrap {
        padding-top: 34px;
    }

    .hero__title {
        font-size: 30px;
    }

    .pass-phone-wrap {
        width: 156px;
        height: 286px;
    }

    .pass-phone {
        transform: scale(.52);
    }

    .pass-card {
        width: 198px;
        height: 122px;
        border-radius: 11px;
        padding: 16px 15px 14px;
    }

    .pass-card .lockup--blocks {
        font-size: 9.5px;
    }

    .pass-card__slogan {
        font-size: 9px;
    }

    .pass-mock {
        margin-top: -168px;
    }

    .hero__lede {
        font-size: 19px;
    }

    .hero__sale {
        padding-bottom: 0;
    }

    .hero__sale .container {
        padding: 0;
    }

    .hero__sale-rule {
        border-bottom: 0;
    }

    .sale-chip {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 13px 20px;
    }

    .hero__note {
        background: var(--deep);
        color: var(--white);
        margin: 0;
        padding: 12px 20px;
        font-size: 13px;
    }

    .section-exp {
        padding: 34px 0 40px;
    }

    .section-title {
        font-size: 21px;
        margin-bottom: 22px;
    }

    .section-exp .section-title {
        background: var(--gold);
        color: var(--deep);
        display: inline-block;
        padding: 9px 20px;
        margin: 0 0 24px -20px;
    }

    .carousel__track {
        flex-direction: column;
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .car-arrow {
        display: none;
    }

    .exp-card {
        width: 100%;
        clip-path: none;
        -webkit-mask: none;
        mask: none;
    }

    .exp-card__img {
        height: 208px;
    }

    .exp-card__body {
        padding: 14px 20px 18px;
    }

    .exp-foot {
        justify-content: center;
        margin-top: 22px;
    }

    .chip-heading {
        font-size: 18px;
        padding: 10px 20px;
        margin-left: -20px;
        top: -22px;
    }

    .section-save .save__lede {
        margin-bottom: 26px;
    }

    .save__row {
        grid-template-columns: 1fr;
        padding-bottom: 28px;
    }

    .save__item {
        padding-bottom: 22px;
    }

    .save__icon {
        height: auto;
        padding-bottom: 0;
    }

    .save__icon svg {
        width: 62px;
        height: 62px;
    }

    .cta-band {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        padding: 26px 0 44px;
    }

    .cta-band h2 {
        font-size: 21px;
        max-width: none;
    }

    .section-how {
        padding: 34px 0 40px;
    }

    .how__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-ph__caption span {
        font-size: 17px;
    }

    .steps li {
        gap: 18px;
        padding-bottom: 28px;
    }

    .steps__num {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .steps li:not(:last-child)::before {
        left: 20.5px;
        top: 46px;
    }

    .section-experts {
        padding: 2px 0 44px;
    }

    .footer {
        padding: 42px 0 30px;
    }

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

    .footer__col+.footer__col {
        padding-left: 0;
    }

    .footer__col:nth-child(n+3) {
        border-left: 0;
    }

    .footer__bottom {
        margin-top: 34px;
    }
}

@media (max-width: 575.98px) {
    .hero__title {
        font-size: 27px;
    }

    .pass-mock {
        margin-top: -150px;
    }

    .pass-card {
        margin-left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    .carousel__track {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* ==========================================================================
   how it works page
   ========================================================================== */

/* active nav state */
.nav__link.is-active {
    color: var(--brand);
    border-bottom-color: var(--gold);
}

/* explained banner */
.explained {
    background: var(--deep);
    color: var(--white);
    padding: 46px 0 40px;
}

.explained__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.explained__title {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 14px;
}

.explained__lede {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    max-width: 58ch;
    margin: 0;
}

.explained__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.assurance {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.assurance svg {
    width: 52px;
    height: 52px;
    flex: none;
    color: var(--gold);
}

.assurance p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
    max-width: 30ch;
}

.explained__sale {
    text-align: right;
}

.explained__sale .sale-chip {
    background: var(--brand);
}

.explained__note {
    margin: 14px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* how to get your pass */
.section-get {
    padding: 58px 0 44px;
}

.get__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: 50px;
    align-items: center;
}

.get__heading {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    padding: 12px 26px;
    margin-bottom: 26px;
}

.get__copy {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--deep);
    max-width: 44ch;
}

.pass-mock--static {
    margin-top: 0;
    justify-content: center;
}

/* alternating panels */
.panels-shell {
    padding-bottom: 12px;
}

.panels {
    background: var(--deep);
    color: var(--white);
}

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

.panel__media {
    position: relative;
    min-height: 300px;
    background: var(--brand-700);
}

.panel__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel--flip .panel__media {
    order: 2;
}

.panel__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 52px 48px;
}

.panel__body h2 {
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    max-width: 22ch;
}

.panel__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    max-width: 46ch;
}

.panel__body .btn {
    margin-top: 6px;
}

.panels .perf {
    background-image: radial-gradient(circle at 7px 50%, var(--white) 2.2px, transparent 2.6px);
}

/* help & questions */
.section-help {
    padding: 58px 0 60px;
}

.help__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: start;
}

.help__col h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 16px;
}

.help__col p {
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 26px;
}

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-list li+li {
    border-top: 1px solid var(--line);
}

.faq-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 16px 0;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink);
    transition: color .18s var(--ease);
}

.faq-list a:hover {
    color: var(--brand);
}

.faq-list a:hover .circle-arrow {
    background: var(--brand);
    color: var(--white);
}

/* closing strip */
.strip {
    background: var(--deep);
    color: var(--white);
}

.strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 0;
}

.strip h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    max-width: 34ch;
}

.strip .btn {
    flex: none;
    min-width: 178px;
}

/* trust */
.section-trust {
    padding: 52px 0 64px;
    text-align: center;
}

.section-trust .section-title {
    margin-bottom: 22px;
}

.trust__score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--deep);
}

.trust__stars {
    display: inline-flex;
    gap: 4px;
    color: var(--gold);
}

.trust__stars svg {
    width: 24px;
    height: 24px;
    display: block;
}

.trust__note {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .explained__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .explained__aside {
        align-items: stretch;
    }

    .get__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pass-mock--static {
        justify-content: flex-start;
    }

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

    .panel--flip .panel__media {
        order: 0;
    }

    .panel__media {
        min-height: 220px;
    }

    .panel__body {
        padding: 34px 28px 38px;
    }

    .help__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .explained {
        padding: 32px 0 0;
    }

    .explained__title {
        font-size: 25px;
    }

    .explained__sale {
        margin: 0 -20px;
    }

    .explained__sale .sale-chip {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 13px 20px;
    }

    .explained__note {
        background: var(--brand-700);
        margin: 0;
        padding: 12px 20px;
        font-size: 13px;
        text-align: center;
    }

    .section-get {
        padding: 34px 0 30px;
    }

    .panels-shell {
        padding: 0 0 8px;
    }

    .get__heading {
        font-size: 18px;
        padding: 10px 20px;
        margin: 0 0 22px -20px;
    }

    .get__copy {
        font-size: 17px;
        max-width: none;
    }

    .panel__body h2 {
        font-size: 21px;
        max-width: none;
    }

    .panel__body .btn {
        width: 100%;
    }

    .section-help {
        padding: 34px 0 36px;
    }

    .help__col h2 {
        font-size: 21px;
    }

    .help__col .btn {
        width: 100%;
    }

    .strip__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 28px 0 34px;
    }

    .strip h2 {
        font-size: 20px;
        max-width: none;
    }

    .section-trust {
        padding: 34px 0 44px;
    }
}

/* ==========================================================================
   experiences page
   ========================================================================== */

/* banner */
.expbanner__head {
    background: var(--white);
    padding-top: 42px;
}

.expbanner__grid {
    display: grid;
    grid-template-columns: 216px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.expbanner__art {
    position: relative;
    z-index: 2;
}

.expbanner__art .pass-mock {
    margin-top: 0;
    margin-bottom: -190px;
}

.expbanner__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.32;
    max-width: 32ch;
}

.expbanner__chip {
    display: inline-block;
    position: relative;
    z-index: 2;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    padding: 12px 26px;
    margin: 26px 0 -22px;
}

.expbanner__body {
    background: var(--deep);
    color: var(--white);
    padding-bottom: 36px;
}

.expbanner__lede {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    max-width: 74ch;
    margin: 0;
    padding-top: 40px;
}

.expbanner__sale {
    text-align: right;
    margin-top: 28px;
}

.expbanner__note {
    margin: 14px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* toolbar */
.section-catalogue {
    padding: 34px 0 64px;
}

.toolbar__intro {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 16px;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.toolbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-family: "Outfit", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 16px;
    transition: border-color .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}

.tool:hover {
    border-color: var(--brand);
}

.tool svg {
    width: 15px;
    height: 15px;
}

select.tool {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 34px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%232a1c1a' stroke-width='1.8'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.viewtabs {
    display: flex;
    gap: 8px;
}

.viewtab[aria-pressed="true"] {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
    font-weight: 700;
}

/* filters panel */
.filters {
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 20px 22px;
    margin-top: 14px;
}

.filters__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
}

.filters__legend {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}

.filters__row+.filters__row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.checkchip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    cursor: pointer;
}

.checkchip input {
    accent-color: var(--brand);
    width: 16px;
    height: 16px;
    margin: 0;
}

.filters__clear {
    margin-left: auto;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--brand);
    text-decoration: underline;
}

.result-count {
    font-size: 14.5px;
    color: var(--muted);
    margin: 22px 0 14px;
}

/* catalogue layout */
.cat__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 268px;
    gap: 34px;
    align-items: start;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 0;
}

.exp-grid .exp-card {
    width: 100%;
}

.exp-grid .exp-card__img {
    height: 172px;
}

.exp-card__tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    margin: 14px 18px -6px;
}

.exp-empty {
    grid-column: 1 / -1;
    padding: 40px 0;
    font-size: 15.5px;
    color: var(--muted);
}

/* list view */
.exp-grid.is-list {
    grid-template-columns: 1fr;
    gap: 10px;
}

.exp-grid.is-list .exp-card {
    flex-direction: row;
    align-items: stretch;
}

.exp-grid.is-list .exp-card__img {
    width: 216px;
    height: auto;
    min-height: 118px;
    flex: none;
}

.exp-grid.is-list .exp-card__tag {
    display: none;
}

.exp-grid.is-list .exp-card__body {
    padding: 18px 24px;
}

/* map view */
.map-panel {
    border: 1px solid var(--line);
    padding: 26px;
    text-align: center;
}

.map-panel svg {
    width: 100%;
    max-width: 560px;
    height: auto;
}

.map-panel p {
    margin: 18px auto 0;
    max-width: 62ch;
    font-size: 15px;
    color: var(--muted);
}

/* sidebar */
.cat__side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.map-card {
    display: block;
    border: 1px solid var(--line);
}

.map-card svg {
    display: block;
    width: 100%;
    height: auto;
}

.map-card span {
    display: block;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    text-align: center;
    padding: 12px 14px;
    transition: background-color .2s var(--ease);
}

.map-card:hover span {
    background: var(--gold-300);
}

.side-card {
    background: var(--deep);
    color: var(--white);
    padding: 28px 24px;
}

.side-card h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.side-card .btn {
    display: flex;
    margin-top: 22px;
}

.side-card--list h2 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 14px;
}

.side-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}

.side-card li {
    margin-bottom: 10px;
}

.side-card li::marker {
    color: var(--gold);
}

@media (max-width: 1199.98px) {
    .cat__layout {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 26px;
    }
}

@media (max-width: 991.98px) {
    .expbanner__grid {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 30px;
    }

    .expbanner__title {
        font-size: 26px;
    }

    .cat__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cat__side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .expbanner__head {
        padding-top: 26px;
    }

    .expbanner__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .expbanner__art .pass-mock {
        margin-bottom: 22px;
    }

    .expbanner__body .expbanner__art-spacer {
        display: none;
    }

    .expbanner__title {
        font-size: 23px;
    }

    .expbanner__chip {
        font-size: 17px;
        padding: 10px 20px;
        margin: 22px 0 -20px -20px;
    }

    .expbanner__lede {
        padding-top: 36px;
    }

    .expbanner__sale {
        margin: 24px -20px 0;
    }

    .expbanner__sale .sale-chip {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 13px 20px;
    }

    .expbanner__note {
        background: var(--brand-700);
        margin: 0;
        padding: 12px 20px;
        font-size: 13px;
        text-align: center;
    }

    .expbanner__body {
        padding-bottom: 0;
    }

    .section-catalogue {
        padding: 26px 0 40px;
    }

    .toolbar {
        gap: 12px;
    }

    .toolbar__right {
        width: 100%;
    }

    .viewtabs {
        margin-left: auto;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .exp-grid .exp-card__img {
        height: 200px;
    }

    .exp-grid.is-list .exp-card {
        flex-direction: column;
    }

    .exp-grid.is-list .exp-card__img {
        width: 100%;
        height: 200px;
    }

    .cat__side {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ==========================================================================
   plan & save page
   ========================================================================== */

/* duration selector */
.section-duration {
    padding: 42px 0 0;
    text-align: center;
}

.duration__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 26px;
}

.durations {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.duration-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1.6px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-family: "Outfit", sans-serif;
    color: var(--deep);
    transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.duration-btn b {
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
}

.duration-btn span {
    font-size: 12.5px;
    color: var(--muted);
}

.duration-btn:hover {
    border-color: var(--brand);
}

.duration-btn[aria-pressed="true"] {
    background: var(--gold);
    border-color: var(--gold);
}

.duration-btn[aria-pressed="true"] span {
    color: var(--deep);
}

/* itinerary */
.section-plan {
    padding: 34px 0 8px;
}

.plan__title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.plan__sub {
    text-align: center;
    font-size: 14.5px;
    color: var(--muted);
    margin-bottom: 30px;
}

.itin {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 34px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}

.itin--1 {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.itin--2 {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
}

.itin__col h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.itin__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.itin__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.itin__text {
    flex: 1;
    min-width: 0;
}

.itin__name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--deep);
    margin: 0 0 4px;
}

.itin__price {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0 0 6px;
}

.itin__more {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.itin__more:hover {
    text-decoration: underline;
}

.itin__thumb {
    width: 96px;
    height: 68px;
    object-fit: cover;
    flex: none;
}

/* savings summary */
.savings {
    padding: 40px 0 52px;
    text-align: center;
}

.savings__chip {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    padding: 11px 24px;
    margin-bottom: 34px;
}

.savings__table {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.savings__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 26px;
    padding: 9px 0;
    font-size: 15px;
}

.savings__row b {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.savings__row--total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 18px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--deep);
    font-size: 16px;
}

.savings__note {
    max-width: 640px;
    margin: 4px auto 0;
    text-align: left;
    font-size: 14px;
    color: var(--brand);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .itin {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 26px;
    }

    .itin--1,
    .itin--2 {
        grid-template-columns: minmax(0, 420px);
        justify-content: start;
    }
}

@media (max-width: 767.98px) {
    .section-duration {
        padding-top: 30px;
    }

    .duration__title {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .durations {
        gap: 14px;
    }

    .duration-btn {
        width: 76px;
        height: 76px;
    }

    .duration-btn b {
        font-size: 23px;
    }

    .plan__title {
        font-size: 20px;
    }

    .itin,
    .itin--1,
    .itin--2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .itin__col+.itin__col {
        margin-top: 26px;
    }

    .itin__col h3 {
        font-size: 18px;
    }

    .savings {
        padding: 30px 0 38px;
    }

    .savings__chip {
        font-size: 17px;
        padding: 10px 20px;
        margin-bottom: 24px;
    }

    .savings__row {
        font-size: 14.5px;
        gap: 16px;
    }
}

.savings__fine {
    max-width: 640px;
    margin: 8px auto 0;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* ==========================================================================
   guidebook page
   ========================================================================== */

.explained--plain .explained__grid {
    grid-template-columns: minmax(0, 1fr);
}

.section-guide {
    padding: 44px 0 52px;
}

.guide__intro {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 80ch;
}

.guide__intro p+p {
    margin-top: 14px;
}

.guide__title {
    font-size: 25px;
    font-weight: 600;
    margin: 34px 0 14px;
}

.guide__sub {
    font-size: 15.5px;
    margin-bottom: 26px;
}

/* form */
.gform {
    max-width: 760px;
}

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

.field {
    width: 100%;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    background: #f7f1ee;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.field::placeholder {
    color: var(--muted);
}

.field:focus {
    outline: none;
    background: var(--white);
    border-color: var(--brand);
}

select.field {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236e5b57' stroke-width='1.8'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
}

.consent--light {
    color: var(--ink);
    max-width: 80ch;
    font-size: 13px;
}

.consent--light b {
    color: var(--deep);
}

.consent--light a {
    color: var(--brand);
    text-decoration: underline;
}

.gform__foot {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.gform__done {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--brand);
    margin: 0;
}

/* what you get */
.section-discs {
    background: var(--deep);
    color: var(--white);
    padding-top: 0;
}

.discs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding: 6px 0 58px;
}

.disc {
    text-align: center;
}

.disc__media {
    width: 172px;
    height: 172px;
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: var(--sand);
}

.disc__media img,
.disc__media svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disc p {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 17.5px;
    line-height: 1.35;
    color: var(--white);
    max-width: 16ch;
    margin-inline: auto;
}

/* planning help */
.section-planhelp {
    padding: 54px 0 60px;
}

.section-planhelp h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-planhelp p {
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 52ch;
    margin-bottom: 26px;
}

@media (max-width: 991.98px) {
    .discs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }
}

@media (max-width: 767.98px) {
    .section-guide {
        padding: 30px 0 36px;
    }

    .guide__title {
        font-size: 20px;
        margin-top: 26px;
    }

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

    .gform__foot .btn {
        width: 100%;
    }

    .discs {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .disc__media {
        width: 190px;
        height: 190px;
    }

    .section-planhelp {
        padding: 34px 0 40px;
    }

    .section-planhelp h2 {
        font-size: 20px;
    }

    .section-planhelp .btn {
        width: 100%;
    }
}

/* ==========================================================================
   prices page
   ========================================================================== */

.pricebanner {
    background: var(--deep);
    color: var(--white);
    padding: 40px 0 30px;
}

.pricebanner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 230px);
    gap: 40px;
    align-items: start;
}

.pricebanner__title {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricebanner__sub {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    margin: 0;
}

.pricebanner__art {
    position: relative;
    z-index: 2;
    margin-bottom: -140px;
}

.pricebanner__art .pass-mock {
    margin-top: 0;
}

.pricebanner__art .pass-phone-wrap {
    width: 150px;
    height: 275px;
}

.pricebanner__art .pass-phone {
    transform: scale(.5);
}

.pricebanner__art .pass-card {
    width: 198px;
    height: 122px;
    border-radius: 11px;
    padding: 16px 15px 14px;
    margin-left: 14px;
}

.pricebanner__art .pass-card .lockup--blocks {
    font-size: 9.5px;
}

.pricebanner__art .pass-card__slogan {
    font-size: 9px;
}

/* price grid */
.section-prices {
    padding: 30px 0 56px;
}

.prices__sale .sale-chip {
    font-size: 21px;
    padding: 15px 30px;
}

.prices__ends {
    font-size: 24px;
    font-weight: 600;
    margin: 22px 0 28px;
}

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

.price-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
}

.price-card__head {
    position: relative;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    padding: 12px 16px;
    margin: 14px 22px 0 14px;
}

.price-card__flag {
    position: absolute;
    top: -12px;
    right: -16px;
    background: var(--brand);
    color: var(--white);
    font-size: 10.5px;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 9px;
}

.price-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 16px 18px;
    text-align: center;
}

.price-row {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep);
    margin: 0 0 6px;
}

.price-card__meta {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin: 6px 0 18px;
}

.price-card__meta b {
    color: var(--brand);
    font-family: "Outfit", sans-serif;
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

.price-promo {
    background: var(--gold);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    text-align: center;
}

.price-promo p {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.4;
}

/* quantity stepper */
.qty {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    text-align: left;
}

.qty__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14.5px;
}

.qty__controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.qty__btn {
    width: 30px;
    height: 30px;
    border: 1.4px solid var(--line);
    border-radius: 50%;
    color: var(--brand);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}

.qty__btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.qty__val {
    min-width: 26px;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.qty__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 14px 0 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep);
}

/* attractions & savings duo */
.section-duo {
    padding: 8px 0 62px;
}

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

.duo .panel {
    background: var(--deep);
    color: var(--white);
}

.duo .panel__media {
    min-height: 250px;
}

.duo .panel__body {
    padding: 32px 26px;
    gap: 16px;
}

.duo .panel__body h2 {
    font-size: 20px;
    max-width: none;
}

.duo .panel__body .btn {
    font-size: 15px;
    padding: 12px 20px;
}

@media (max-width: 1199.98px) {
    .prices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .pricebanner__grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 26px;
    }

    .pricebanner__assurance {
        grid-column: 1 / -1;
    }

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

@media (max-width: 767.98px) {
    .pricebanner {
        padding: 26px 0 24px;
    }

    .pricebanner__title {
        font-size: 24px;
    }

    .pricebanner__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricebanner__art {
        margin-bottom: 0;
        order: -1;
    }

    .section-prices {
        padding: 26px 0 38px;
    }

    .prices__sale {
        margin: 0 -20px;
    }

    .prices__sale .sale-chip {
        display: block;
        font-size: 17px;
        padding: 13px 20px;
    }

    .prices__ends {
        font-size: 19px;
        margin: 18px 0 22px;
    }

    .prices {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-promo p {
        font-size: 17px;
    }

    .section-duo {
        padding-bottom: 40px;
    }

    .duo .panel__media {
        min-height: 200px;
    }
}

/* ==========================================================================
   experience detail pages
   ========================================================================== */

.dhero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
}

.dhero__media {
    position: relative;
    min-height: 350px;
    background: var(--sand);
    -webkit-mask: radial-gradient(circle 5px at 100% 50%, #0000 98%, #000) 0 6px / 100% 16px repeat;
    mask: radial-gradient(circle 5px at 100% 50%, #0000 98%, #000) 0 6px / 100% 16px repeat;
}

.dhero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dhero__panel {
    background: var(--deep);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 34px 36px;
}

.dhero__title {
    background: var(--gold);
    color: var(--deep);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    padding: 13px 22px;
}

.dhero__lede {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

.included {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    background: rgba(255, 255, 255, .08);
    padding: 14px 16px;
}

.included__card {
    width: 62px;
    height: 40px;
    flex: none;
    border-radius: 4px;
    background: linear-gradient(140deg, #ffdc4f 0%, var(--gold) 55%, #f5c400 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.included__card .lockup--blocks {
    font-size: 6px;
    letter-spacing: .02em;
    gap: 2px;
}

.included__text b {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.35;
    color: var(--white);
}

.included__text span {
    display: block;
    font-size: 13.5px;
    color: var(--gold-300);
}

/* section tabs */
.dtabs {
    border-bottom: 1px solid var(--line);
}

.dtabs ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.dtabs ul::-webkit-scrollbar {
    display: none;
}

.dtabs a {
    display: block;
    white-space: nowrap;
    padding: 18px 0;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 3px solid transparent;
    transition: color .18s var(--ease), border-color .18s var(--ease);
}

.dtabs a:hover {
    color: var(--brand);
    border-bottom-color: var(--gold);
}

/* overview */
.section-detail {
    padding: 36px 0 34px;
}

.detail__body p {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 84ch;
}

.tips {
    margin-top: 26px;
}

.tips h2 {
    font-size: 16px;
    color: var(--brand);
    margin-bottom: 10px;
}

.tips ul {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 84ch;
}

.tips li {
    margin-bottom: 8px;
}

.tips li::marker {
    color: var(--gold);
}

/* getting there */
.section-getting {
    padding-top: 22px;
}

.getting {
    background: var(--deep);
    color: var(--white);
}

.getting__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    gap: 34px;
    align-items: start;
    padding-bottom: 38px;
}

.getting__list {
    list-style: none;
    margin: -8px 0 0;
    padding: 0;
}

.getting__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 13px 0;
}

.getting__icon {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.getting__icon svg {
    width: 22px;
    height: 22px;
}

.getting__item b {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--white);
    margin-bottom: 2px;
}

.getting__item span {
    display: block;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .86);
}

.getting__map {
    background: var(--white);
    padding: 8px;
}

.getting__map svg {
    display: block;
    width: 100%;
    height: auto;
}

.getting__map p {
    margin: 8px 4px 4px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
}

/* opening times + nearby */
.section-times {
    padding: 40px 0 10px;
}

.section-times h2,
.section-nearby h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-times p {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 74ch;
}

.section-nearby {
    padding: 30px 0 56px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 0;
    margin-top: 18px;
}

.nearby-grid .exp-card {
    width: 100%;
}

.nearby-grid .exp-card__img {
    height: 150px;
}

@media (max-width: 991.98px) {
    .dhero {
        grid-template-columns: 1fr;
    }

    .dhero__media {
        min-height: 260px;
        -webkit-mask: radial-gradient(circle 5px at 50% 100%, #0000 98%, #000) 6px 0 / 16px 100% repeat;
        mask: radial-gradient(circle 5px at 50% 100%, #0000 98%, #000) 6px 0 / 16px 100% repeat;
    }

    .getting__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 767.98px) {
    .dhero__media {
        min-height: 220px;
    }

    .dhero__panel {
        padding: 26px 20px 30px;
    }

    .dhero__title {
        font-size: 19px;
        padding: 11px 18px;
        margin-left: -20px;
    }

    .dtabs ul {
        gap: 22px;
    }

    .dtabs a {
        font-size: 14px;
        padding: 14px 0;
    }

    .section-detail {
        padding: 26px 0;
    }

    .section-times {
        padding-top: 30px;
    }

    .section-times h2,
    .section-nearby h2 {
        font-size: 19px;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nearby-grid .exp-card__img {
        height: 190px;
    }

    .section-nearby {
        padding-bottom: 38px;
    }
}

/* ==========================================================================
   whole-card click targets
   ========================================================================== */

/* the arrow link stretches over its card, so the whole card is clickable.
   .exp-card is already position: relative, so the overlay anchors to it. */
.exp-card {
    cursor: pointer;
}

.exp-card__go::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* keyboard focus lands on the arrow, so show it on the card instead.
   offset is negative because the card is clipped at its chamfered edges. */
.exp-card:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: -3px;
}

/* ==========================================================================
   FAQ & contact page
   ========================================================================== */

.section-contact {
    padding: 40px 0 46px;
}

.contact__intro {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 84ch;
    margin-bottom: 32px;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    gap: 54px;
    align-items: start;
}

.contact__form .gform__grid {
    margin-bottom: 16px;
}

textarea.field {
    min-height: 160px;
    resize: vertical;
    display: block;
}

.contact__aside {
    border-left: 1px solid var(--line);
    padding-left: 46px;
}

.support h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 14px;
}

.support p {
    font-size: 14.5px;
    line-height: 1.7;
}

.support__hours {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    font-size: 14.5px;
    line-height: 1.8;
}

.support__hours b {
    font-family: "Outfit", sans-serif;
    color: var(--deep);
}

.support__big {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--brand);
    margin-bottom: 4px;
    word-break: break-word;
}

.support__big:hover {
    text-decoration: underline;
}

.support__note {
    font-size: 13px;
    color: var(--muted);
}

.support h3 {
    font-size: 16px;
    margin: 28px 0 14px;
}

.socials--light a {
    border-color: var(--brand);
    color: var(--brand);
}

.socials--light a:hover {
    background: var(--brand);
    color: var(--white);
}

/* faq accordions */
.section-faq {
    padding: 6px 0 44px;
}

.faq-group {
    margin-bottom: 34px;
}

.faq-group__title {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    padding: 11px 22px;
    margin-bottom: 10px;
}

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

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 15px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink);
    transition: color .18s var(--ease);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--brand);
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 50%;
    border: 1.6px solid var(--brand);
    color: var(--brand);
    transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
}

.faq-item summary:hover .faq-toggle,
.faq-item[open] .faq-toggle {
    background: var(--brand);
    color: var(--white);
}

.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 52px 20px 0;
    margin: -4px 0 0;
    font-size: 15px;
    line-height: 1.75;
    max-width: 92ch;
}

.faq-item__answer a {
    color: var(--brand);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact__aside {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 30px 0 0;
    }
}

@media (max-width: 767.98px) {
    .section-contact {
        padding: 28px 0 32px;
    }

    .contact__form .btn {
        width: 100%;
    }

    .faq-group__title {
        font-size: 17px;
        padding: 10px 18px;
        margin-left: -20px;
    }

    .faq-item summary {
        font-size: 15px;
        gap: 14px;
    }

    .faq-item__answer {
        padding-right: 0;
    }
}
