:root {
    --ink: #101010;
    --muted: #69727d;
    --line: #e6e6e6;
    --paper: #ffffff;
    --soft: #f6f7f9;
    --yellow: #fcd800;
    --blue: #1267b1;
    --green: #1f8f67;
    --shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color: var(--ink);
    background: var(--paper);
    font-family: "Work Sans", "Segoe UI", Arial, sans-serif;
}

body {
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
}

h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.mla-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

/* ── Header ── */
.header-main {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    justify-self: center;
}

.brand img {
    width: 100px;
    display: block;
}

/* ── Circular mega-menu trigger ── */
.mega-toggle {
    display: none;
}

.menu-trigger-wrap {
    justify-self: start;
}

.menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 30px;
    border: none;
    background: #f6f5f2;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.15s;
}

.menu-trigger:hover {
    background: #eceae6;
}

.menu-trigger .icon-close {
    display: none;
}

.mla-header:has(.mega-toggle:checked) .menu-trigger .icon-menu {
    display: none;
}

.mla-header:has(.mega-toggle:checked) .menu-trigger .icon-close {
    display: block;
}

/* ── Right header actions ── */
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1.2rem;
    border-radius: 999px;
    background: var(--yellow);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--ink);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    color: var(--ink);
    transition: border-color 0.15s;
}

.btn-phone:hover {
    border-color: var(--ink);
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--ink);
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #f6f5f2;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    padding: 0;
}

.header-icon-btn:hover {
    background: #eceae6;
}

.logout-form {
    margin: 0;
}

/* ── Mega menu ── */
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px; /* right below header-main, overlaps topic-nav */
    padding: 12px 16px 24px; /* top padding creates gap for triangle */
    z-index: 30;
}

.mla-header:has(.mega-toggle:checked) .mega-menu {
    display: block;
}

.mega-menu__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 28px 24px;
    background: #f0efed;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(16, 16, 16, 0.18);
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Triangle — tip sits exactly at the header-main bottom border */
.mega-menu__inner::before {
    content: '';
    position: absolute;
    top: -12px; /* 12px = padding-top of .mega-menu → tip touches header border */
    left: 38px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #f0efed;
}

/* Catalog card */
.mega-catalog {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;
}

.mega-catalog > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.mega-catalog__overlay {
    position: absolute;
    inset: 0;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(0,0,0,0.25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-catalog__label {
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.35;
    margin: 0;
    color: #fff;
}

.mega-catalog-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    border-radius: 999px;
    padding: 7px 7px 7px 14px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: none;
}

.mega-catalog-btn__arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
    color: var(--ink);
}

.mega-catalog-btn:hover .mega-catalog-btn__arrow {
    background: var(--ink);
    color: #fff;
}

/* Column titles */
.mega-col__title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 12px;
}

/* Program links (with subtitle) */
.mega-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 3px 12px;
    border-radius: 10px;
    margin-bottom: 0;
    color: var(--ink);
    transition: background 0.12s;
}

.mega-link span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mega-link strong {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
}

.mega-link small {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
}

.mega-link::after {
    content: '';
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") center / 14px no-repeat;
    opacity: 0;
    transition: opacity 0.12s;
}

.mega-link:hover {
    background: var(--yellow);
}

.mega-link:hover small {
    color: rgba(0,0,0,0.55);
}

.mega-link:hover::after {
    opacity: 1;
}

/* Simple text links */
.mega-simple-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 10px 3px 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    border-radius: 10px;
    transition: background 0.12s;
    text-decoration: none;
}

.mega-simple-link::after {
    content: '';
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") center / 14px no-repeat;
    opacity: 0;
    transition: opacity 0.12s;
}

.mega-simple-link:hover {
    background: var(--yellow);
}

.mega-simple-link:hover::after {
    opacity: 1;
}

/* Backdrop — starts below full header height so it never covers it */
.mega-backdrop {
    display: none;
    position: fixed;
    top: 120px; /* header-main (72px) + topic-nav (48px) */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 15;
    cursor: default;
}

/* Also ensure header is fully opaque white when mega is open */
.mla-header:has(.mega-toggle:checked) {
    background: #fff;
    backdrop-filter: none;
}

body:has(.mega-toggle:checked) .mega-backdrop {
    display: block;
}

/* Darken topic-nav when mega menu is open */
.mla-header:has(.mega-toggle:checked) .topic-nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

/* ── Topic nav (second bar) ── */
.topic-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 48px;
    overflow-x: auto;
    padding: 0 16px;
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.topic-nav a {
    border-radius: 999px;
    padding: 4px 14px;
    transition: background 0.15s, color 0.15s;
}

.topic-nav a:hover {
    background: var(--ink);
    color: #fff;
}

.topic-nav__active {
    background: var(--ink);
    color: #fff;
}

.nav-toggle,
.nav-toggle-button {
    display: none;
}

.site-main {
    background: var(--paper);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.hero-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.hero-action {
    flex: 0 0 auto;
    padding-bottom: 6px;
}

.hero h1 {
    font-family: "Work Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: none;
    margin: 0;
}

.hero-media img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.breadcrumb a {
    color: var(--muted);
    display: flex;
    align-items: center;
}

.breadcrumb__current {
    background: #fff;
    border: 0.8px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 5px 15px;
    color: var(--ink);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-actions,
.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.35rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
}

.button-primary {
    color: var(--ink);
    background: var(--yellow);
}

.button-outline {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
}

.button-dark {
    color: #fff;
    background: var(--ink);
}

.button-light {
    color: var(--ink);
    background: var(--yellow);
}

.hero-media {
    display: block;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}

.hero-cta__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
}

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

/* ── Intro section ── */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
    padding-top: 72px;
    padding-bottom: 72px;
}

.intro-left h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.2;
    max-width: none;
}

.intro-right h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.intro-right p {
    color: #33373d;
    font-size: 1rem;
    margin-bottom: 14px;
}

/* ── Filter band ── */
.filter-band {
    background: var(--yellow);
    padding: 44px 0;
}

.filter-band__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 48px;
}

.filter-label {
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.filter-title {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    white-space: nowrap;
}

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

.destination-filter label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.destination-filter select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 2px solid rgba(16, 16, 16, 0.18);
    background: #fff;
}

/* ── Destinations section ── */
.destinations-section {
    background: linear-gradient(180deg, #f6f5f2 0%, #fff 60%);
    padding: 80px 0 90px;
}

.destinations-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.destinations-heading {
    margin-bottom: 40px;
    text-align: center;
}

.destinations-heading .eyebrow {
    color: var(--blue);
}

.destinations-heading h2 {
    margin-bottom: 24px;
}

.destinations-more {
    margin-top: 42px;
    text-align: center;
}

.pill-row--centered {
    justify-content: center;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 22px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading.compact {
    max-width: 760px;
    display: block;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.pill-row button {
    min-height: 38px;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.pill-row .active {
    color: var(--ink);
    border-color: var(--yellow);
    background: var(--yellow);
}

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

.destination-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    color: #fff;
    background: #333;
}

.destination-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
}

.destination-card span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    font-family: Poppins, "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.plus-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 90px max(16px, calc((100vw - 1180px) / 2));
    background: var(--soft);
}

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

.plus-grid article {
    min-height: 220px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
}

/* Featured yellow card */
.plus-featured {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.plus-featured h2 {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.2;
    margin: 0;
    max-width: none;
}

.plus-featured__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service card icon */
.plus-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.plus-grid h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.plus-grid p,
.faq-list p,
.app-section p,
.site-footer p {
    color: var(--muted);
}

/* ── Video section ── */
.video-section {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 52px 0;
}

.video-section__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.video-section p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    margin: 0;
    max-width: 600px;
    color: var(--ink);
}

.video-play {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    padding-left: 4px;
    transition: transform 0.15s;
}

.video-play:hover {
    transform: scale(1.08);
}

.app-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 0;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: stretch;
    gap: 40px;
}

.app-section > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.app-card {
    background: var(--yellow);
    border-radius: 20px;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-card p {
    color: rgba(16, 16, 16, 0.7);
}

.faq-section {
    padding-top: 40px;
}

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

.faq-list details {
    border: 1px solid var(--line);
    background: #fff;
}

.faq-list summary {
    padding: 22px 24px;
    cursor: pointer;
    font-family: Poppins, "Segoe UI", Arial, sans-serif;
    font-weight: 800;
}

.faq-list p {
    margin: -6px 24px 24px;
}

.site-footer {
    color: #fff;
    background: #101010;
}

.footer-help {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: start;
    gap: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-help img {
    width: 110px;
    filter: brightness(0) invert(1);
    margin-top: 10px;
}

.footer-help h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    gap: 34px;
}

.footer-grid h3 {
    color: var(--yellow);
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.footer-social a:hover {
    color: #fff;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
    background: #b32121;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

@media (max-width: 980px) {
    .mega-menu__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px 24px;
    }

    .mega-catalog {
        grid-column: 1 / -1;
        min-height: 360px;
    }

    .hero-row,
    .intro-section,
    .filter-band__inner,
    .app-section {
        grid-template-columns: 1fr;
    }

    .hero-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        min-height: 0;
    }

    .destination-filter,
    .destination-grid,
    .plus-grid,
    .footer-grid,
    .footer-help {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-help {
        align-items: start;
    }

    .app-card {
        padding: 36px 32px;
    }

    .plus-featured {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding: 24px;
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .brand {
        order: -1;
        justify-self: start;
    }

    .header-actions {
        order: 0;
        justify-self: end;
    }

    .menu-trigger-wrap {
        order: 1;
        justify-self: end;
        margin-left: 32px;
    }

    .mega-menu__inner {
        grid-template-columns: 1fr;
    }

    .topic-nav {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-media img {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }

    .section,
    .app-section {
        padding: 58px 0;
    }

    .quote-band {
        padding: 24px;
    }

    .destination-filter,
    .destination-grid,
    .plus-grid,
    .footer-grid,
    .footer-help,
    .section-heading {
        grid-template-columns: 1fr;
    }

    .app-card {
        padding: 32px 24px;
    }

    .filter-title {
        white-space: normal;
    }

    .video-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .pill-row {
        justify-content: flex-start;
    }

    .destination-card,
    .destination-card img {
        min-height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
