:root {
    --home-ink: #101820;
    --home-ink-soft: #42515d;
    --home-muted: #71808c;
    --home-cream: #f7f2e9;
    --home-paper: #fffdf8;
    --home-line: rgba(16, 24, 32, 0.12);
    --home-blue: #0f3f46;
    --home-blue-2: #155d66;
    --home-gold: #c9a46a;
    --home-shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
    --home-radius-lg: 34px;
    --home-radius-md: 22px;
    --home-radius-sm: 14px;
}

body.is-immersive {
    background: var(--home-paper);
}

.page-content.is-immersive {
    padding: 0;
}

.lux-home {
    color: var(--home-ink);
    background:
        radial-gradient(circle at 14% 18%, rgba(201, 164, 106, 0.16), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #f6f1e8 54%, #fffdf8 100%);
    font-family: var(--font-family-primary, "Segoe UI", sans-serif);
    overflow: hidden;
}

body.home-theme-night {
    background: #071114;
}

body.home-theme-night .site-header.is-immersive {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(4, 12, 15, 0.92);
}

body.home-theme-night .site-footer.is-immersive {
    background: #071114;
    color: rgba(255, 255, 255, 0.74);
}

body.home-theme-night .lux-home {
    --home-ink: #f7fbfc;
    --home-ink-soft: #c9d5d9;
    --home-muted: #9cafb6;
    --home-paper: #071114;
    --home-cream: #0d1d22;
    --home-line: rgba(255, 255, 255, 0.14);
    --home-blue: #4fb3c3;
    --home-blue-2: #7ad4df;
    --home-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 12% 12%, rgba(79, 179, 195, 0.18), transparent 30%),
        linear-gradient(180deg, #071114 0%, #0d1d22 54%, #071114 100%);
}

body.home-theme-night .lux-search-card,
body.home-theme-night .search-grid,
body.home-theme-night .places-list {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(9, 24, 29, 0.94);
    color: var(--home-ink);
}

body.home-theme-night .field-block {
    border-color: rgba(255, 255, 255, 0.14);
    background: transparent;
}

body.home-theme-night .field-block input,
body.home-theme-night .field-block select {
    color: var(--home-ink);
}

body.home-theme-night .field-block select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f7fbfc' d='M1.4.8 6 5.4 10.6.8 12 2.2l-6 6-6-6z'/%3E%3C/svg%3E");
}

body.home-theme-night .field-block.is-disabled {
    background: rgba(255, 255, 255, 0.06);
}

body.home-theme-night .lux-stat-row span,
body.home-theme-night .lux-benefit-card,
body.home-theme-night .lux-testimonial-card,
body.home-theme-night .lux-faq details,
body.home-theme-night .lux-final-cta {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

body.home-theme-night .lux-testimonials {
    background:
        linear-gradient(135deg, rgba(8, 24, 28, 0.98), rgba(4, 12, 15, 0.98)),
        #071114;
}

body.home-theme-night .lux-final-cta a {
    background: #f7fbfc;
    color: #0d1d22;
}

.lux-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--home-gold);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lux-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 12px 0 0 rgba(201, 164, 106, 0.34);
}

.lux-hero {
    position: relative;
    min-height: clamp(660px, 74vh, 760px);
    isolation: isolate;
    color: #fff;
    background: #081316;
    overflow: hidden;
}

.lux-hero__media,
.lux-hero__overlay {
    position: absolute;
    inset: 0;
}

.lux-hero__media {
    z-index: -3;
    background-image:
        url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=2200&q=82"),
        url("/assets/hero-transfer-1.svg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.lux-hero__overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 18, 22, 0.9) 0%, rgba(7, 24, 29, 0.66) 48%, rgba(8, 19, 22, 0.28) 100%),
        linear-gradient(180deg, rgba(4, 11, 14, 0.28) 0%, rgba(4, 11, 14, 0.76) 100%);
}

.lux-hero::after {
    content: "";
    position: absolute;
    inset: auto -4vw -1px;
    height: 150px;
    z-index: -1;
    background: var(--home-paper);
    clip-path: polygon(0 46%,
            10% 52%,
            24% 48%,
            38% 57%,
            54% 50%,
            70% 56%,
            86% 47%,
            100% 54%,
            100% 100%,
            0 100%);
}

.lux-hero__inner {
    width: min(1360px, calc(100% - 56px));
    min-height: clamp(660px, 74vh, 760px);
    margin: 0 auto;
    padding: 122px 0 54px;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(680px, 1.18fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: end;
}

.lux-hero__copy {
    padding-bottom: 18px;
}

.lux-hero__copy h1 {
    max-width: 650px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(3rem, 4.8vw, 5.35rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.lux-hero__copy p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.7;
}

.lux-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.lux-hero__trust span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.lux-search-card {
    width: 100%;
    max-width: 780px;
    justify-self: end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    color: var(--home-ink);
    backdrop-filter: blur(18px);
}

.lux-search-card__label {
    display: block;
    margin-bottom: 6px;
    color: var(--home-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lux-search-card h2 {
    margin: 0 0 16px;
    color: var(--home-ink);
    font-size: 1.25rem;
    line-height: 1.2;
}

.booking-form {
    margin: 0;
}

.search-grid {
    display: grid;
    grid-template-columns: minmax(112px, 1.1fr) minmax(180px, 2.1fr) minmax(128px, 1.28fr) minmax(128px, 1.28fr) minmax(72px, 0.72fr) minmax(72px, 0.72fr) minmax(76px, 0.78fr) minmax(132px, 1.16fr);
    gap: 0;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.field-block {
    position: relative;
    min-height: 70px;
    padding: 11px 12px;
    display: grid;
    align-content: center;
    gap: 4px;
    border-right: 1px solid var(--home-line);
}

.field-block:last-child {
    border-right: 0;
}

.field-block.is-disabled {
    background: #f5f3ee;
    color: rgba(16, 24, 32, 0.44);
}

.field-block.is-disabled label {
    color: rgba(113, 128, 140, 0.66);
}

.field-block label {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field-block input,
.field-block select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0;
    background: transparent;
    color: var(--home-ink);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 750;
}

.field-block input:disabled,
.field-block select:disabled {
    color: rgba(16, 24, 32, 0.42);
    cursor: not-allowed;
    -webkit-text-fill-color: rgba(16, 24, 32, 0.42);
}

.field-block select {
    appearance: none;
    padding-right: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23101820' d='M1.4.8 6 5.4 10.6.8 12 2.2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.field-block input:focus-visible,
.field-block select:focus-visible {
    outline: 2px solid rgba(201, 164, 106, 0.7);
    outline-offset: 4px;
    border-radius: 6px;
}

.field-block--submit {
    padding: 6px;
}

.booking-submit {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--home-blue), var(--home-blue-2));
    color: #fff;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(15, 63, 70, 0.26);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.booking-submit:hover {
    filter: brightness(1.06);
    box-shadow: 0 18px 34px rgba(15, 63, 70, 0.32);
    transform: translateY(-1px);
}

.booking-submit:focus-visible,
.fab-toggle:focus-visible,
.fab-channel-item:focus-visible,
.lux-final-cta a:focus-visible {
    outline: 3px solid rgba(201, 164, 106, 0.72);
    outline-offset: 3px;
}

.error-text {
    margin: 6px 0 0;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 700;
}

.places-list {
    position: absolute;
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    z-index: 30;
    display: none;
    max-height: 270px;
    margin: 0;
    padding: 6px;
    overflow-y: auto;
    list-style: none;
    border: 1px solid var(--home-line);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(16, 24, 32, 0.16);
}

.places-list-button,
.places-list-empty {
    width: 100%;
    display: grid;
    gap: 3px;
    padding: 11px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--home-ink);
    text-align: left;
    font: inherit;
}

.places-list-button {
    cursor: pointer;
}

.places-list-button span {
    color: var(--home-muted);
    font-size: 0.82rem;
}

.places-list-button:hover,
.places-list-button:focus-visible {
    background: rgba(15, 63, 70, 0.08);
    outline: 0;
}

.lux-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
}

.lux-welcome {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.lux-welcome__image {
    min-height: 440px;
    border-radius: var(--home-radius-lg);
    background-image:
        linear-gradient(180deg, rgba(16, 24, 32, 0.06), rgba(16, 24, 32, 0.18)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=82");
    background-size: cover;
    background-position: center;
    box-shadow: var(--home-shadow);
}

.lux-welcome__copy h2,
.lux-section__header h2,
.lux-seo h2,
.lux-final-cta h2 {
    margin: 16px 0 0;
    color: var(--home-ink);
    font-size: clamp(2.15rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.lux-welcome__copy p,
.lux-seo__copy p {
    margin: 20px 0 0;
    color: var(--home-ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.lux-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.lux-stat-row span {
    padding: 16px;
    border: 1px solid var(--home-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--home-muted);
    line-height: 1.35;
}

.lux-stat-row strong {
    display: block;
    color: var(--home-blue);
    font-size: 1.4rem;
}

.lux-section__header {
    max-width: 820px;
    margin-bottom: 34px;
}

.lux-benefit-grid,
.lux-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.lux-benefit-card,
.lux-testimonial-card,
.lux-faq details {
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 42px rgba(16, 24, 32, 0.06);
}

.lux-benefit-card {
    min-height: 230px;
    padding: 24px;
}

.lux-benefit-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(201, 164, 106, 0.9), rgba(201, 164, 106, 0.42)),
        var(--home-gold);
    color: #fff;
    box-shadow: 0 12px 26px rgba(201, 164, 106, 0.22);
}

.lux-benefit-card svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.lux-benefit-card h3,
.lux-testimonial-card strong {
    margin: 0;
    color: var(--home-ink);
    font-size: 1.08rem;
}

.lux-benefit-card p,
.lux-testimonial-card blockquote,
.lux-testimonial-card span,
.lux-faq p {
    color: var(--home-ink-soft);
    line-height: 1.65;
}

.lux-benefit-card p {
    margin: 12px 0 0;
    font-size: 0.94rem;
}

.lux-testimonials {
    width: 100%;
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, var(--home-blue), var(--home-blue-2));
    color: #fff;
}

.lux-testimonials .lux-section__header h2 {
    color: #fff;
}

.lux-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lux-testimonial-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.lux-stars {
    color: var(--home-gold);
    letter-spacing: 0.14em;
}

.lux-testimonial-card blockquote {
    margin: 18px 0 24px;
    font-size: 1.04rem;
}

.lux-testimonial-card p {
    margin: 0;
}

.lux-testimonial-card span {
    display: block;
    margin-top: 3px;
    font-size: 0.86rem;
}

.lux-seo {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    gap: 48px;
    align-items: start;
}

.lux-faq {
    display: grid;
    gap: 12px;
}

.lux-faq details {
    padding: 18px 20px;
}

.lux-faq summary {
    cursor: pointer;
    color: var(--home-ink);
    font-weight: 850;
}

.lux-faq summary:focus-visible {
    outline: 2px solid rgba(201, 164, 106, 0.72);
    outline-offset: 4px;
    border-radius: 8px;
}

.lux-faq p {
    margin: 12px 0 0;
}

.lux-final-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 76px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    border-radius: var(--home-radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(247, 242, 233, 0.92)),
        var(--home-cream);
    box-shadow: var(--home-shadow);
}

.lux-final-cta h2 {
    max-width: 780px;
    font-size: clamp(2rem, 3.4vw, 3.55rem);
}

.lux-final-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--home-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Compatibility for the existing /search validation view, which reuses this asset. */
.travel-home {
    background: var(--home-paper);
}

.travel-home .hero-media {
    position: relative;
    min-height: 760px;
    color: #fff;
    background: #081316;
    overflow: hidden;
}

.travel-home .hero-slide-layer,
.travel-home .hero-video-layer,
.travel-home .hero-slide {
    position: absolute;
    inset: 0;
}

.travel-home .hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 500ms ease;
}

.travel-home .hero-slide.is-active {
    opacity: 1;
}

.travel-home .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 18, 22, 0.9), rgba(8, 19, 22, 0.48));
}

.travel-home .hero-content {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: grid;
    align-items: end;
    padding: 90px 20px 56px;
}

.travel-home .hero-layout,
.travel-home .routes-copy,
.travel-home .route-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.travel-home .hero-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
}

.travel-home .hero-main {
    max-width: 720px;
    margin-bottom: 0;
}

.travel-home .hero-kicker {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.travel-home .hero-booking {
    width: 100%;
    max-width: 780px;
    justify-self: end;
}

.travel-home .hero-main h1 {
    margin: 0;
    color: #fff;
    max-width: 560px;
    font-size: clamp(2.2rem, 5.2vw, 4.55rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.travel-home .hero-summary {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
    line-height: 1.25;
    margin-top: 9px;
}

.travel-home .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    max-width: 560px;
}

.travel-home .hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
}

.travel-home .booking-panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--home-shadow);
    color: var(--home-ink);
}

.travel-home .booking-panel h2 {
    margin: 0 0 16px;
    color: var(--home-ink);
}

@media (max-width: 980px) {
    .travel-home .hero-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .travel-home .hero-booking {
        max-width: 100%;
        justify-self: stretch;
    }

    .travel-home .hero-main h1,
    .travel-home .hero-summary,
    .travel-home .hero-badges {
        max-width: 100%;
    }
}

@media (max-width: 1500px) {
    .lux-hero__inner {
        width: min(1240px, calc(100% - 40px));
        grid-template-columns: minmax(320px, 0.74fr) minmax(620px, 1.26fr);
        gap: 28px;
    }

    .lux-hero__copy h1 {
        font-size: clamp(2.8rem, 4.4vw, 4.7rem);
    }

    .lux-hero__copy p {
        font-size: 1rem;
    }

    .lux-search-card {
        justify-self: stretch;
        max-width: 100%;
    }

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

    .field-block {
        border-top: 1px solid var(--home-line);
    }

    .field-block:nth-child(-n+3) {
        border-top: 0;
    }

    .field-block:nth-child(4n) {
        border-right: 0;
    }

    .field-span-wide {
        grid-column: span 2;
    }

    .field-block--submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1180px) {
    .lux-hero__inner {
        grid-template-columns: 1fr;
        align-items: center;
        padding-top: 140px;
    }

    .lux-search-card {
        max-width: 860px;
        justify-self: stretch;
    }

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

@media (max-width: 900px) {

    .lux-welcome,
    .lux-seo {
        grid-template-columns: 1fr;
    }

    .lux-welcome__image {
        min-height: 360px;
    }

    .lux-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .lux-final-cta {
        display: grid;
    }

    .lux-final-cta a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lux-hero {
        min-height: 0;
    }

    .lux-hero__inner {
        width: min(100% - 28px, 620px);
        min-height: 0;
        padding: 116px 0 44px;
        gap: 24px;
    }

    .lux-hero__copy h1 {
        font-size: clamp(2.65rem, 13vw, 4.3rem);
    }

    .lux-hero__copy p {
        font-size: 1rem;
    }

    .lux-search-card {
        padding: 16px;
        border-radius: 22px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .field-block,
    .field-span-wide,
    .field-block--submit {
        grid-column: auto;
    }

    .field-block {
        min-height: 62px;
        border: 1px solid var(--home-line);
        border-radius: 15px;
        background: #fff;
    }

    .field-block--submit {
        padding: 0;
        border: 0;
        background: transparent;
    }

    .booking-submit {
        min-height: 58px;
    }

    .lux-section {
        width: min(100% - 28px, 620px);
        padding: 62px 0;
    }

    .lux-benefit-grid,
    .lux-stat-row {
        grid-template-columns: 1fr;
    }

    .lux-benefit-card {
        min-height: 0;
    }

    .lux-benefit-card span {
        margin-bottom: 26px;
    }

    .lux-final-cta {
        width: min(100% - 28px, 620px);
        margin-bottom: 110px;
        padding: 28px;
    }
}

@media (max-width: 430px) {
    .lux-hero__trust {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lux-search-card h2 {
        font-size: 1.08rem;
    }

    .lux-welcome__copy h2,
    .lux-section__header h2,
    .lux-seo h2,
    .lux-final-cta h2 {
        font-size: 2.05rem;
    }
}