:root {
    --wine-950: #2a081d;
    --wine-900: #3d0b2a;
    --wine-800: #551039;
    --wine-700: #6b1649;
    --wine-600: #84215d;
    --ivory-50: #fffdf8;
    --ivory-100: #f8f3e9;
    --ivory-200: #eee4d4;
    --gold-500: #c9a765;
    --gold-400: #d9bd83;
    --gold-300: #ead7ad;
    --charcoal-950: #171311;
    --charcoal-800: #332b27;
    --charcoal-600: #665d57;
    --green-700: #2f754d;
    --white: #fff;
    --shadow-sm: 0 8px 24px rgb(42 8 29 / 10%);
    --shadow-lg: 0 24px 70px rgb(42 8 29 / 18%);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --header-height: 68px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--charcoal-950);
    background: var(--ivory-50);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--wine-800);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 36px, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: 72px;
}

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

h1,
h2,
h3,
.brand-lockup__primary {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 9.1vw, 4.45rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 8vw, 3.65rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold-300);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.eyebrow--wine {
    color: var(--wine-700);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading > p:last-child {
    color: var(--charcoal-600);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:hover {
    transform: translateY(-2px);
}

.button--compact {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 0.78rem;
}

.button--gold {
    color: var(--wine-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 12px 34px rgb(201 167 101 / 25%);
}

.button--wine {
    color: var(--white);
    background: var(--wine-700);
    box-shadow: 0 12px 34px rgb(107 22 73 / 20%);
}

.button--whatsapp {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 10px 24px rgb(47 117 77 / 18%);
}

.button--outline {
    color: var(--wine-800);
    background: transparent;
    border-color: rgb(107 22 73 / 35%);
}

.button--full {
    width: 100%;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    padding-inline: 18px;
    background: rgb(255 253 248 / 94%);
    border-bottom: 1px solid rgb(85 16 57 / 8%);
    backdrop-filter: blur(14px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgb(42 8 29 / 10%);
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    color: var(--wine-900);
    line-height: 1;
    text-decoration: none;
}

.brand-lockup__primary {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

.brand-lockup__secondary {
    margin-top: 4px;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.hero {
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    color: var(--white);
    background: var(--wine-950);
}

.hero__media {
    position: relative;
    height: 38svh;
    min-height: 300px;
    overflow: hidden;
    background: var(--charcoal-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 800ms ease, transform 6s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    object-fit: cover;
}

.hero-slide figcaption,
.unit-card__media figcaption {
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 3;
    padding: 4px 8px;
    color: rgb(255 255 255 / 82%);
    background: rgb(0 0 0 / 38%);
    border-radius: 5px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
}

.hero__shade {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgb(42 8 29 / 55%) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 4;
    padding-block: 38px 32px;
}

.hero__description {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgb(255 255 255 / 78%);
}

.hero__headline-highlight {
    color: var(--gold-300);
}

.hero-badge {
    background: var(--wine-950);
    padding: 16px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-badge__label {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 8px 16px;
    color: var(--charcoal-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-badge strong {
    color: rgb(255 255 255 / 92%);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.hero-badge__date {
    color: var(--gold-300);
    white-space: nowrap;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-meta__item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.hero-meta__item svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: var(--gold-400);
    fill: currentColor;
}

.hero-price {
    display: inline-grid;
    gap: 2px;
    margin-bottom: 24px;
}

.hero-price span,
.hero-price strong {
    display: block;
}

.hero-price span {
    color: rgb(255 255 255 / 86%);
    font-size: 0.92rem;
    line-height: 1.2;
}

.hero-price strong {
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

.hero__actions {
    display: grid;
    gap: 12px;
}

.hero-controls {
    position: absolute;
    z-index: 7;
    top: calc(var(--header-height) + 38svh - 42px);
    right: 18px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgb(255 255 255 / 45%);
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 50%;
    cursor: pointer;
}

.hero-dot.is-active {
    width: 24px;
    background: var(--gold-400);
    border-radius: 999px;
}

.hero-progress {
    position: absolute;
    z-index: 7;
    top: calc(var(--header-height) + 38svh - 3px);
    right: 0;
    left: 0;
    height: 3px;
    background: rgb(255 255 255 / 15%);
}

.hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-400);
}

.hero-progress span.is-running {
    animation: carousel-progress 5s linear forwards;
}

@keyframes carousel-progress {
    to { width: 100%; }
}

.benefits {
    background:
        radial-gradient(circle at 10% 0%, rgb(201 167 101 / 16%), transparent 32%),
        var(--ivory-50);
}

.countdown {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
    margin-top: 12px;
    padding: 12px 20px;
    color: var(--wine-900);
    background: linear-gradient(135deg, var(--gold-300), var(--ivory-100));
    box-shadow: 0 16px 34px rgb(97 17 63 / 12%);
    border-radius: 999px;
    font-size: 0.82rem;
}

.countdown strong {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.countdown strong:empty {
    display: none;
}

.benefit-grid {
    display: grid;
    gap: 14px;
}

.benefit-card {
    position: relative;
    min-height: 188px;
    padding: 26px 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--ivory-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefit-card--featured {
    color: var(--white);
    background: var(--wine-900);
    border-color: var(--wine-900);
}

.benefit-card__number {
    display: block;
    margin-bottom: 24px;
    color: var(--gold-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--charcoal-600);
    font-size: 0.9rem;
}

.benefit-card--featured p {
    color: rgb(255 255 255 / 72%);
}

.trip-callout {
    display: grid;
    gap: 4px;
    margin-top: 24px;
    padding: 22px;
    color: var(--wine-950);
    background: linear-gradient(135deg, var(--gold-300), var(--ivory-100));
    border-radius: var(--radius-md);
    text-align: center;
}

.trip-callout span,
.trip-callout small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trip-callout strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 7vw, 2.5rem);
}

.section-cta {
    margin-top: 28px;
    text-align: center;
}

.lead-section {
    color: var(--white);
    background:
        linear-gradient(135deg, rgb(42 8 29 / 98%), rgb(107 22 73 / 95%)),
        var(--wine-950);
}

.lead-section__layout {
    display: grid;
    gap: 36px;
}

.lead-section__copy > p:not(.eyebrow) {
    color: rgb(255 255 255 / 72%);
}

.lead-benefits {
    display: grid;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.lead-benefits li::before {
    margin-right: 10px;
    color: var(--gold-300);
    content: "✓";
}

.lead-form {
    padding: 24px 20px;
    color: var(--charcoal-950);
    background: var(--ivory-50);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--charcoal-950);
    background: var(--white);
    border: 1px solid #d9d0c5;
    border-radius: 10px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--wine-600);
    box-shadow: 0 0 0 3px rgb(132 33 93 / 12%);
    outline: none;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.form-status {
    padding: 10px 12px;
    color: #8d1c34;
    background: #ffedf1;
    border-radius: 8px;
    font-size: 0.82rem;
}

.form-status.is-success {
    color: #175f3d;
    background: #e9f7ef;
}

.form-consent {
    margin: 14px 6px 0;
    color: var(--charcoal-600);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
}

.units {
    background: var(--ivory-100);
}

.unit-grid {
    display: grid;
    gap: 24px;
}

.unit-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.unit-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
}

.unit-card__media picture,
.unit-card__media img {
    width: 100%;
    height: 100%;
}

.unit-card__media img {
    object-fit: cover;
    transition: transform 500ms ease;
}

.unit-card:hover .unit-card__media img {
    transform: scale(1.025);
}

.unit-card__body {
    padding: 26px 22px;
}

.unit-card__title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.unit-card__title span {
    color: var(--wine-600);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.unit-card__title h3 {
    margin: 3px 0 0;
    font-size: 2rem;
}

.unit-card__title > strong {
    max-width: 130px;
    color: var(--wine-700);
    font-size: 0.82rem;
    text-align: right;
}

.unit-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 22px 0;
    padding-block: 16px;
    border-block: 1px solid var(--ivory-200);
}

.unit-specs div + div {
    padding-left: 10px;
    border-left: 1px solid var(--ivory-200);
}

.unit-specs dt {
    color: var(--charcoal-600);
    font-size: 0.62rem;
}

.unit-specs dd {
    margin: 3px 0 0;
    font-size: 0.8rem;
    font-weight: 700;
}

.unit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.unit-features li {
    padding: 5px 9px;
    color: var(--wine-700);
    background: var(--ivory-100);
    border-radius: 999px;
    font-size: 0.68rem;
}

.gallery-section {
    overflow: hidden;
}

.gallery-scroller {
    display: grid;
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    gap: 16px;
    margin-inline: -18px;
    padding: 4px 18px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.gallery-card {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    scroll-snap-align: center;
}

.gallery-card picture,
.gallery-card img {
    width: 100%;
    height: 100%;
}

.gallery-card img {
    object-fit: cover;
}

.gallery-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding: 50px 18px 16px;
    color: var(--white);
    background: linear-gradient(transparent, rgb(23 19 17 / 82%));
}

.gallery-card figcaption span {
    font-size: 0.62rem;
}

.facilities {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgb(201 167 101 / 22%), transparent 35%),
        var(--wine-900);
}

.facilities__layout {
    display: grid;
    gap: 36px;
}

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

.facilities .section-heading > p:last-child {
    color: rgb(255 255 255 / 68%);
}

.facility-stats {
    display: grid;
    gap: 12px;
}

.facility-stats div {
    display: grid;
    padding: 20px;
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: var(--radius-md);
}

.facility-stats strong {
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.facility-stats span {
    color: rgb(255 255 255 / 66%);
    font-size: 0.78rem;
}

.location {
    background: var(--ivory-100);
}

.location__layout {
    display: grid;
    gap: 40px;
}

.location__layout h2 {
    margin-bottom: 18px;
}

.location__layout > div > p:not(.eyebrow) {
    color: var(--charcoal-600);
}

.location__copy {
    display: grid;
    gap: 18px;
}

.location-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    list-style: none;
}

.location-points li {
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.75rem;
}

.location-visual {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid rgb(97 17 63 / 10%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.location-visual picture {
    display: block;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
}

.location-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 555 / 390;
    object-fit: cover;
}

.location-visual figcaption {
    color: var(--charcoal-500);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.faq__layout {
    display: grid;
    gap: 18px;
}

.faq-list details {
    border-bottom: 1px solid var(--ivory-200);
}

.faq-list summary {
    position: relative;
    padding: 20px 38px 20px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 18px;
    right: 2px;
    color: var(--wine-700);
    font-family: Arial, Helvetica, sans-serif;
    content: "+";
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding-right: 20px;
    color: var(--charcoal-600);
}

.site-footer {
    padding: 24px 0 50px;
    color: var(--white);
    background: var(--charcoal-950);
}

.brand-lockup--light {
    color: var(--white);
}

.site-footer__top {
    display: grid;
    gap: 18px;
}

.site-footer__copy {
    display: grid;
    gap: 14px;
}

.site-footer__top p {
    max-width: 540px;
    color: rgb(255 255 255 / 60%);
}

.site-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
}

.site-footer__logos img {
    display: block;
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.site-footer__logos img[src$=".svg"] {
    max-height: 42px;
}

.site-footer__favicon-logo {
    max-height: 40px;
    border-radius: 10px;
}

.site-footer__legal {
    display: grid;
    gap: 5px;
    margin-top: 40px;
    padding-top: 4px;
    color: rgb(255 255 255 / 46%);
    border-top: 1px solid rgb(255 255 255 / 12%);
    font-size: 0.62rem;
}

.site-footer__legal small {
    margin-top: 12px;
}

.mobile-cta {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgb(255 253 248 / 96%);
    box-shadow: 0 -8px 28px rgb(42 8 29 / 14%);
    backdrop-filter: blur(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
}

.mobile-cta .button {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.72rem;
}

.thank-you-page {
    min-height: 100svh;
    color: var(--charcoal-950);
    background:
        radial-gradient(circle at 10% 20%, rgb(201 167 101 / 24%), transparent 30%),
        linear-gradient(145deg, var(--ivory-50), var(--ivory-100));
}

.thank-you {
    display: grid;
    min-height: 100svh;
    padding: calc(var(--header-height) + 36px) 18px 36px;
    place-items: center;
}

.thank-you__card {
    width: min(100%, 620px);
    padding: 42px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thank-you__mark {
    display: inline-grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--white);
    background: var(--green-700);
    border-radius: 50%;
    font-size: 1.5rem;
}

.thank-you__card h1 {
    margin-inline: auto;
    color: var(--wine-900);
}

.thank-you__card > p:not(.eyebrow) {
    color: var(--charcoal-600);
}

.thank-you__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 64px, var(--container));
    }

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

    .hero__actions,
    .thank-you__actions {
        display: flex;
        flex-wrap: wrap;
    }

    .gallery-scroller {
        grid-auto-columns: 60%;
        margin-inline: -32px;
        padding-inline: 32px;
    }
}

@media (min-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .section {
        padding-block: 110px;
    }

    .site-header {
        padding-inline: 40px;
    }

    .brand-lockup__primary {
        font-size: 1.55rem;
    }

    .site-header .button--compact {
        min-width: 152px;
    }

    .hero {
        display: grid;
        min-height: 92svh;
        align-items: center;
        padding-top: var(--header-height);
    }

    .hero__media {
        position: absolute;
        inset: var(--header-height) 0 0;
        height: auto;
        min-height: 0;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgb(30 8 22 / 88%) 0%, rgb(42 8 29 / 54%) 42%, transparent 72%),
            linear-gradient(0deg, rgb(42 8 29 / 35%), transparent 42%);
    }

    .hero__content {
        padding-block: 70px;
    }

    .hero__description {
        max-width: 590px;
        font-size: 1.04rem;
    }

    .hero-meta {
        max-width: 620px;
    }

    .hero-controls {
        top: 50%;
        right: 34px;
        flex-direction: column;
        transform: translateY(-50%);
    }

    .hero-dot.is-active {
        width: 9px;
        height: 30px;
    }

    .hero-progress {
        top: auto;
        bottom: 0;
    }

    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trip-callout {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding-inline: 38px;
        text-align: left;
    }

    .trip-callout small {
        text-align: right;
    }

    .lead-section__layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
        align-items: center;
        gap: 70px;
    }

    .lead-form {
        padding: 34px;
    }

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

    .gallery-scroller {
        grid-auto-columns: 42%;
        margin-inline: calc((100vw - min(100vw - 64px, var(--container))) / -2);
        padding-inline: calc((100vw - min(100vw - 64px, var(--container))) / 2);
    }

    .facilities__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
        align-items: center;
        gap: 90px;
    }

    .location__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 80px;
    }

    .location-visual {
        align-self: center;
    }

    .faq__layout {
        grid-template-columns: 0.72fr 1.28fr;
        gap: 80px;
    }

    .site-footer {
        padding-bottom: 24px;
    }

    .site-footer__top {
        grid-template-columns: 0.6fr 1.4fr auto;
        align-items: center;
    }

    .site-footer__top p {
        margin-bottom: 0;
    }

    .mobile-cta {
        display: none;
    }

    .thank-you__card {
        padding: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
