:root {
    --v2-navy-950: #091523;
    --v2-navy-900: #0e2031;
    --v2-navy-850: #112c42;
    --v2-navy-800: #153750;
    --v2-blue-600: #1f5fa6;
    --v2-blue-500: #2f7bd6;
    --v2-coral-500: #ff7c4d;
    --v2-coral-400: #ff966f;
    --v2-sand-300: #f3d9b0;
    --v2-sand-200: #f6e8cd;
    --v2-mist-100: #f6f8fb;
    --v2-mist-200: #edf2f7;
    --v2-surface: rgba(255, 255, 255, 0.88);
    --v2-surface-strong: #ffffff;
    --v2-line: rgba(14, 32, 49, 0.1);
    --v2-line-strong: rgba(14, 32, 49, 0.18);
    --v2-text: #102132;
    --v2-text-soft: rgba(16, 33, 50, 0.72);
    --v2-text-muted: rgba(16, 33, 50, 0.54);
    --v2-white: #ffffff;
    --v2-shadow-xl: 0 30px 80px rgba(10, 29, 46, 0.18);
    --v2-shadow-lg: 0 20px 48px rgba(10, 29, 46, 0.14);
    --v2-shadow-md: 0 14px 32px rgba(10, 29, 46, 0.1);
    --v2-shadow-sm: 0 10px 22px rgba(10, 29, 46, 0.07);
    --v2-radius-xl: 34px;
    --v2-radius-lg: 28px;
    --v2-radius-md: 22px;
    --v2-radius-sm: 16px;
    --v2-width: min(1280px, calc(100vw - 28px));
}

html,
body {
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(255, 185, 91, 0.16), transparent 28%),
        linear-gradient(180deg, #f9fbfd 0%, #eef3f8 42%, #f7f8fa 100%);
    color: var(--v2-text);
    font-family: "Manrope", sans-serif;
}

body.site-shell {
    display: flex;
    flex-direction: column;
    color: var(--v2-text);
}

body.site-nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--v2-navy-900);
}

p {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible {
    outline: 3px solid rgba(255, 150, 111, 0.9);
    outline-offset: 3px;
}

img {
    display: block;
    max-width: 100%;
}

.site-main {
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
}

.site-nav {
    padding: 1rem 0;
    transition: padding 0.25s ease;
}

.site-nav.is-scrolled {
    padding: 0.5rem 0;
}

.site-nav__inner {
    width: var(--v2-width);
    margin: 0 auto;
    padding: 0.8rem 1rem 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(9, 21, 35, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--v2-shadow-lg);
}

.site-nav.is-scrolled .site-nav__inner {
    background: rgba(9, 21, 35, 0.88);
    border-radius: 28px;
}

.site-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.site-nav__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 124, 77, 0.22));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.site-nav__brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.site-nav__brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-nav__brand-name {
    color: var(--v2-white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-nav__brand-tag {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav__links {
    gap: 0.5rem;
}

.site-nav__links .nav-link,
.site-nav__controls .dropdown-toggle {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1rem !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__links .nav-link:hover,
.site-nav__links .nav-link:focus,
.site-nav__links .nav-link.active,
.site-nav__controls .dropdown-toggle:hover,
.site-nav__controls .dropdown-toggle:focus {
    color: var(--v2-white);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-nav__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.62rem 0.92rem;
}

.site-nav__pill i {
    font-size: 0.9rem;
}

.site-nav__toggle {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle .navbar-toggler-icon {
    filter: invert(1);
}

.site-nav__cta {
    white-space: nowrap;
}

.site-nav__collapse {
    min-width: 0;
}

.site-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1030;
    border: 0;
    background: rgba(9, 21, 35, 0.48);
}

.site-nav .dropdown-menu {
    min-width: 10rem;
    padding: 0.5rem;
    border: 1px solid rgba(16, 33, 50, 0.1);
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
}

.site-nav .dropdown-item {
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-weight: 700;
}

.site-nav .dropdown-item:hover {
    background: rgba(31, 95, 166, 0.08);
}

.v2-shell,
.v2-section {
    width: var(--v2-width);
    margin: 0 auto;
}

.v2-section {
    padding: 5rem 0;
}

.v2-section--tight {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    color: var(--v2-blue-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.v2-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--v2-coral-500), rgba(255, 124, 77, 0.1));
}

.v2-title {
    font-size: clamp(2.7rem, 5vw, 5.6rem);
    line-height: 0.94;
    color: var(--v2-navy-900);
}

.v2-title--section {
    font-size: clamp(2rem, 3.6vw, 3.5rem);
    line-height: 1;
}

.v2-copy,
.page-hero__copy,
.section-heading__copy {
    color: var(--v2-text-soft);
    font-size: 1.02rem;
    line-height: 1.85;
}

.v2-actions,
.cta-panel__actions,
.hero-search__actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.v2-button,
.v2-button-outline,
.v2-button-light,
.v2-button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.v2-button:hover,
.v2-button-outline:hover,
.v2-button-light:hover,
.v2-button-ghost:hover {
    transform: translateY(-2px);
}

.v2-button {
    color: var(--v2-white);
    background: linear-gradient(135deg, var(--v2-coral-500), var(--v2-coral-400));
    box-shadow: 0 18px 36px rgba(255, 124, 77, 0.28);
}

.v2-button-outline {
    color: var(--v2-navy-900);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 33, 50, 0.12);
}

.v2-button-light {
    color: var(--v2-white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.v2-button-ghost {
    color: var(--v2-blue-600);
    background: rgba(31, 95, 166, 0.08);
}

.section-heading {
    margin-bottom: 1.75rem;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 1.6rem;
    align-items: end;
}

.editorial-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--v2-white);
}

.editorial-hero {
    padding: 8.2rem 0 5.2rem;
    background:
        linear-gradient(180deg, rgba(9, 21, 35, 0.28) 0%, rgba(9, 21, 35, 0.12) 28%, rgba(9, 21, 35, 0.82) 100%),
        linear-gradient(120deg, rgba(255, 124, 77, 0.12), transparent 45%),
        url("/images/banner.webp") center/cover no-repeat;
}

.editorial-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -24% auto;
    width: 42vw;
    min-width: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 142, 0.44) 0%, rgba(255, 211, 142, 0.08) 42%, transparent 68%);
    pointer-events: none;
}

.editorial-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    gap: 1.4rem;
    align-items: end;
}

.editorial-hero__panel,
.editorial-hero__stats,
.page-hero__compact,
.hero-search {
    position: relative;
    z-index: 1;
}

.editorial-hero__panel {
    max-width: 760px;
}

.editorial-hero__panel .v2-title,
.page-hero .v2-title {
    color: var(--v2-white);
}

.editorial-hero__copy,
.page-hero__copy {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
}

.hero-search {
    margin-top: 2rem;
    max-width: 720px;
}

.hero-search--stacked {
    max-width: none;
}

.hero-search__shell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: var(--v2-shadow-lg);
}

.hero-search__group {
    display: grid;
    gap: 0.45rem;
    flex: 1 1 0;
}

.hero-search__label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-search__field {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1 1 auto;
    padding: 0.4rem 0.5rem 0.4rem 1.1rem;
    border-radius: 999px;
    background: var(--v2-white);
}

.hero-search__field i {
    color: var(--v2-blue-600);
    font-size: 1rem;
}

.hero-search__field input,
.hero-search__field select,
.hero-search__field textarea {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--v2-text);
    font-size: 0.98rem;
    outline: none;
}

.hero-search__field select {
    cursor: pointer;
}

.page-actions--tight {
    margin-bottom: 1rem;
}

.editorial-hero__stats {
    display: grid;
    gap: 1rem;
}

.editorial-stat {
    padding: 1.4rem 1.5rem;
    border-radius: var(--v2-radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.editorial-stat strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--v2-white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.editorial-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.65;
}

.page-hero {
    padding: 5.2rem 0 2.4rem;
    background:
        linear-gradient(180deg, rgba(12, 27, 42, 0.94) 0%, rgba(17, 44, 66, 0.88) 70%, rgba(17, 44, 66, 0.3) 100%),
        url("/images/inner-banner.webp") center/cover no-repeat;
}

.page-hero__compact {
    width: min(860px, 100%);
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(19, 55, 80, 0.07);
    color: var(--v2-text-soft);
    font-size: 0.82rem;
    font-weight: 800;
}

.meta-pill--light {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
}

.card-grid-2,
.card-grid-3,
.card-grid-4,
.mosaic-grid,
.trust-strip {
    display: grid;
    gap: 1.25rem;
}

.card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-card,
.listing-card,
.story-card-v2,
.content-card,
.trust-card,
.testimonial-card-v2,
.aside-card,
.form-card,
.experience-card {
    overflow: hidden;
    border: 1px solid rgba(16, 33, 50, 0.08);
    border-radius: var(--v2-radius-md);
    background: var(--v2-surface);
    box-shadow: var(--v2-shadow-sm);
}

.editorial-card,
.listing-card,
.story-card-v2,
.atlas-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.editorial-card:hover,
.listing-card:hover,
.story-card-v2:hover,
.atlas-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v2-shadow-lg);
    border-color: rgba(31, 95, 166, 0.14);
}

.editorial-card img,
.listing-card img,
.story-card-v2 img,
.atlas-card img,
.media-card img,
.mosaic-card img {
    width: 100%;
    object-fit: cover;
}

.editorial-card__body,
.listing-card__body,
.story-card-v2__body,
.content-card__body,
.form-card__body,
.trust-card,
.testimonial-card-v2__body {
    padding: 1.5rem;
}

.editorial-card__body h3,
.listing-card__body h3,
.story-card-v2__body h3,
.content-card__body h3,
.trust-card h3,
.testimonial-card-v2__meta strong {
    font-size: 1.35rem;
    line-height: 1.12;
}

.listing-card img,
.story-card-v2 img {
    aspect-ratio: 1.05;
}

.listing-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.listing-card__footer strong {
    color: var(--v2-blue-600);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
}

.listing-card__summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.atlas-card,
.mosaic-card,
.media-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--v2-radius-md);
    box-shadow: var(--v2-shadow-md);
}

.atlas-card img,
.mosaic-card img,
.media-card img {
    height: 100%;
}

.atlas-card__overlay,
.mosaic-card__overlay,
.media-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(9, 21, 35, 0.02) 10%, rgba(9, 21, 35, 0.84) 100%);
    color: var(--v2-white);
}

.atlas-card__overlay h3,
.mosaic-card__overlay h3,
.media-card__overlay h3 {
    color: var(--v2-white);
    font-size: clamp(1.45rem, 2vw, 2.3rem);
}

.atlas-card__overlay p,
.mosaic-card__overlay p,
.media-card__overlay p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.mosaic-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, 1fr);
}

.mosaic-card--wide {
    grid-column: span 7;
    min-height: 290px;
}

.mosaic-card--tall {
    grid-column: span 5;
    min-height: 290px;
}

.mosaic-card--small {
    grid-column: span 4;
    min-height: 220px;
}

.mosaic-card--large {
    grid-column: span 8;
    min-height: 220px;
}

.details-grid {
    display: grid;
    gap: 1.5rem;
}

.details-grid--balanced {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
}

.details-aside,
.aside-stack {
    display: grid;
    gap: 1rem;
}

.experience-hero-card,
.detail-surface {
    overflow: hidden;
}

.experience-hero-card img,
.detail-gallery__main img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.experience-hero-card__icon {
    display: grid;
    place-items: center;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(31, 95, 166, 0.14), rgba(255, 124, 77, 0.18));
    color: var(--v2-blue-600);
    font-size: 4rem;
}

.detail-gallery {
    display: grid;
    gap: 0.9rem;
}

.detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.75rem;
}

.detail-gallery__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    background: transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-gallery__thumb.is-active {
    border-color: rgba(31, 95, 166, 0.44);
    box-shadow: var(--v2-shadow-sm);
}

.detail-gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.detail-summary {
    padding: 1.6rem;
}

.detail-summary__price {
    display: flex;
    align-items: end;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.detail-summary__price strong {
    color: var(--v2-blue-600);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.detail-summary__price span {
    color: var(--v2-text-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.detail-summary__lead {
    margin-bottom: 1rem;
    color: var(--v2-text-soft);
    line-height: 1.8;
}

.feature-list,
.bullet-list {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-list li,
.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--v2-text-soft);
    line-height: 1.75;
}

.feature-list i,
.bullet-list i {
    color: var(--v2-coral-500);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
    padding: 1.5rem;
}

.testimonial-card-v2 {
    background: linear-gradient(180deg, rgba(11, 44, 66, 0.98), rgba(10, 31, 49, 0.98));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--v2-shadow-lg);
}

.testimonial-stars {
    color: #ffd166;
    letter-spacing: 0.15em;
}

.testimonial-card-v2__quote {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.85;
    margin: 1rem 0 1.4rem;
}

.testimonial-card-v2__meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-card-v2__meta strong {
    color: var(--v2-white);
}

.testimonial-card-v2__meta span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    font-weight: 700;
}

.review-band {
    padding: 4rem 0;
    background: linear-gradient(180deg, #12335b, #0b2740);
    color: var(--v2-white);
}

.review-band h2,
.review-band h3 {
    color: var(--v2-white);
}

.cta-panel {
    background:
        linear-gradient(130deg, rgba(15, 34, 53, 0.96), rgba(20, 55, 83, 0.9)),
        url("/images/IMG_6073.webp") center/cover no-repeat;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--v2-shadow-xl);
}

.cta-panel__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.65fr);
    gap: 1.4rem;
    align-items: center;
    padding: 2rem;
}

.cta-panel .v2-title,
.cta-panel .v2-copy,
.cta-panel .v2-eyebrow {
    color: var(--v2-white);
}

.cta-panel .v2-copy {
    color: rgba(255, 255, 255, 0.78);
}

.story-detail {
    width: min(940px, calc(100vw - 28px));
    margin: 0 auto;
}

.story-detail__content {
    padding: 2rem;
    background: var(--v2-surface-strong);
    border: 1px solid rgba(16, 33, 50, 0.08);
    border-radius: var(--v2-radius-lg);
    box-shadow: var(--v2-shadow-md);
}

.story-detail__content .content,
.rich-copy {
    color: var(--v2-text-soft);
    line-height: 1.92;
}

.story-detail__content .content h2,
.story-detail__content .content h3,
.rich-copy h2,
.rich-copy h3 {
    margin: 1.8rem 0 0.8rem;
}

.story-detail__content .content p,
.rich-copy p {
    margin-bottom: 1rem;
}

.story-detail__content .content ul,
.story-detail__content .content ol,
.rich-copy ul,
.rich-copy ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.empty-state-card {
    background: rgba(255, 255, 255, 0.76);
}

.utility-card,
.preferences-card {
    width: min(620px, calc(100vw - 28px));
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--v2-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 33, 50, 0.08);
    box-shadow: var(--v2-shadow-lg);
}

.booking-form__section {
    margin: 1.4rem 0 0.8rem;
}

.booking-form__section:first-of-type {
    margin-top: 0;
}

.booking-form__section h4 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.preferences-loading-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(9, 21, 35, 0.72), rgba(9, 21, 35, 0.8)),
        url("/images/banner.webp") center/cover no-repeat;
}

.preferences-card {
    text-align: center;
}

.preferences-card__status {
    color: var(--v2-text-muted);
}

.spinner-orb {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 3px solid rgba(31, 95, 166, 0.16);
    border-top-color: var(--v2-coral-500);
    border-right-color: var(--v2-blue-600);
    animation: v2-spin 0.9s linear infinite;
}

@keyframes v2-spin {
    to {
        transform: rotate(360deg);
    }
}

.site-footer {
    padding: 0 0 2rem;
}

.site-footer__inner {
    width: var(--v2-width);
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--v2-radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94)),
        linear-gradient(135deg, rgba(255, 211, 142, 0.08), rgba(47, 123, 214, 0.05));
    border: 1px solid rgba(16, 33, 50, 0.08);
    box-shadow: var(--v2-shadow-md);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(16, 33, 50, 0.08);
}

.site-footer__lead h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.site-footer__lead p {
    color: var(--v2-text-soft);
    line-height: 1.8;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.site-footer__grid h3 {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid span {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--v2-text-soft);
    font-size: 0.96rem;
}

.site-footer__grid a:hover {
    color: var(--v2-blue-600);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    color: var(--v2-text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1199.98px) {
    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid-3,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading--split,
    .cta-panel__body,
    .editorial-hero__grid,
    .details-grid--balanced,
    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .site-nav__inner {
        border-radius: 30px;
        padding: 0.8rem 0.95rem;
    }

    .site-nav__collapse {
        margin-top: 0.9rem;
        padding: 1rem;
        border-radius: 26px;
        background: rgba(9, 21, 35, 0.92);
        box-shadow: var(--v2-shadow-lg);
    }

    .site-nav .dropdown-menu {
        background: rgba(255, 255, 255, 0.96);
    }

    .site-nav__controls {
        padding-top: 1rem;
        align-items: stretch;
    }

    .site-nav__controls,
    .site-nav__links {
        gap: 0.5rem;
    }

    .site-nav__links {
        padding-bottom: 0.35rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav__cta {
        width: 100%;
    }

    .site-nav__brand-tag {
        display: none;
    }

    .mosaic-card--wide,
    .mosaic-card--tall,
    .mosaic-card--small,
    .mosaic-card--large {
        grid-column: span 12;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    :root {
        --v2-width: min(100vw - 18px, 100%);
    }

    .v2-section {
        padding: 3.5rem 0;
    }

    .editorial-hero {
        padding: 7rem 0 4rem;
    }

    .hero-search__shell,
    .hero-search__field {
        border-radius: 28px;
    }

    .hero-search__shell {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search__group,
    .hero-search__actions,
    .hero-search__shell .v2-button,
    .hero-search__shell .v2-button-outline {
        width: 100%;
    }

    .hero-search__actions {
        flex-direction: column;
    }

    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .trust-strip,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__inner,
    .story-detail__content,
    .utility-card,
    .preferences-card {
        padding: 1.4rem;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}
