:root {
    --emerald: #0F4C45;
    --emerald-dark: #0A312D;
    --gold: #D4AF37;
    --gold-soft: #F0D98A;
    --ivory: #FAF8F2;
    --charcoal: #1B1B1B;
    --ink-muted: #6F6B62;
    --white: #FFFFFF;
    --line: rgba(27, 27, 27, 0.12);
    --glass: rgba(250, 248, 242, 0.14);
    --shadow-soft: 0 24px 70px rgba(15, 76, 69, 0.16);
    --shadow-dark: 0 22px 56px rgba(0, 0, 0, 0.26);
    --radius: 8px;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "IBM Plex Sans", Inter, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

::selection {
    background: var(--gold);
    color: var(--charcoal);
}

.container-xl {
    --bs-gutter-x: 1.5rem;
}

.navbar-luxury {
    padding: 18px 0;
    background: rgba(27, 27, 27, 0.08);
    border-bottom: 1px solid rgba(250, 248, 242, 0.16);
    backdrop-filter: blur(18px);
    transition: padding 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.navbar-luxury.is-scrolled,
.navbar-luxury.menu-active {
    padding: 12px 0;
    background: rgba(15, 76, 69, 0.94);
    border-bottom-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ivory);
}

.brand-mark:hover {
    color: var(--ivory);
}

.brand-mark__symbol {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.85);
    border-radius: var(--radius);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.brand-mark__text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.navbar-luxury .nav-link {
    color: rgba(250, 248, 242, 0.82);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 0.65rem 0.7rem;
    position: relative;
    transition: color 220ms ease;
}

.navbar-luxury .nav-link::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.38rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link:focus {
    color: var(--white);
}

.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link:focus::after {
    transform: scaleX(1);
}

.luxury-toggler {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgba(250, 248, 242, 0.28);
    border-radius: var(--radius);
    box-shadow: none;
}

.luxury-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.28);
}

.luxury-toggler span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ivory);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius);
    min-height: 46px;
    padding: 0.82rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-gold {
    color: var(--charcoal);
    background: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: 0 16px 34px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
    color: var(--charcoal);
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    box-shadow: 0 18px 42px rgba(212, 175, 55, 0.32);
}

.btn-ghost-light {
    color: var(--ivory);
    border: 1px solid rgba(250, 248, 242, 0.42);
    background: rgba(250, 248, 242, 0.06);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
    color: var(--ivory);
    border-color: rgba(212, 175, 55, 0.75);
    background: rgba(250, 248, 242, 0.12);
}

.btn-search {
    color: var(--ivory);
    background: var(--emerald);
    border: 1px solid var(--emerald);
    min-height: 58px;
    width: 100%;
}

.btn-search:hover,
.btn-search:focus {
    color: var(--ivory);
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    box-shadow: 0 18px 38px rgba(15, 76, 69, 0.26);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 126px 0 72px;
    overflow: hidden;
    color: var(--ivory);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 27, 0.16);
    transform: scale(1.05);
    animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 22, 20, 0.82) 0%, rgba(7, 22, 20, 0.52) 48%, rgba(7, 22, 20, 0.22) 100%),
        linear-gradient(0deg, rgba(27, 27, 27, 0.64) 0%, rgba(27, 27, 27, 0.08) 54%, rgba(27, 27, 27, 0.32) 100%);
    z-index: 1;
}

.hero-section__inner {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 850px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.section-title,
.cta-content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy h1 {
    margin: 0;
    max-width: 960px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.hero-copy__lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(250, 248, 242, 0.86);
    font-size: clamp(1.04rem, 1.5vw, 1.26rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-note {
    max-width: 390px;
    margin-left: auto;
    padding: 24px;
    border: 1px solid rgba(250, 248, 242, 0.22);
    border-radius: var(--radius);
    background: rgba(250, 248, 242, 0.11);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-dark);
}

.hero-note__label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-note p {
    margin: 0;
    color: rgba(250, 248, 242, 0.84);
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(180px, 1.35fr) repeat(3, minmax(150px, 1fr)) minmax(148px, 0.8fr);
    gap: 12px;
    align-items: end;
    margin-top: 56px;
    padding: 14px;
    border: 1px solid rgba(250, 248, 242, 0.28);
    border-radius: var(--radius);
    background: rgba(250, 248, 242, 0.9);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(20px);
}

.booking-field {
    min-width: 0;
}

.booking-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.luxury-input {
    min-height: 58px;
    border: 1px solid rgba(15, 76, 69, 0.18);
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.78);
    color: var(--charcoal);
    font-weight: 600;
    box-shadow: none;
}

.luxury-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.24);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    display: inline-grid;
    width: 34px;
    height: 54px;
    place-items: start center;
    padding-top: 10px;
    border: 1px solid rgba(250, 248, 242, 0.4);
    border-radius: 999px;
}

.scroll-cue span {
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: var(--gold);
    animation: scrollCue 1.8s ease-in-out infinite;
}

.section {
    padding: 108px 0;
}

.section-ivory {
    background: var(--ivory);
}

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

.section-charcoal {
    background: var(--charcoal);
    color: var(--ivory);
}

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

.section-heading h2,
.section-title {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.section-heading--light h2 {
    color: var(--ivory);
}

.section-copy {
    max-width: 500px;
    margin: 22px 0 0;
    color: var(--ink-muted);
    font-size: 1.04rem;
}

.property-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(27, 27, 27, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 54px rgba(27, 27, 27, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: var(--shadow-soft);
}

.property-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--emerald-dark);
}

.property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 600ms ease, filter 600ms ease;
}

.property-card:hover .property-card__image img {
    transform: scale(1.08);
    filter: saturate(1.04) contrast(1.02);
}

.property-card__image span {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 7px 11px;
    border-radius: var(--radius);
    background: rgba(250, 248, 242, 0.88);
    color: var(--emerald);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.property-card__body {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

.property-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.property-card__location svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.property-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.2;
}

.property-meta {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
    color: var(--ink-muted);
    font-size: 0.92rem;
}

.property-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-meta svg {
    width: 17px;
    height: 17px;
    color: var(--emerald);
}

.property-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.property-card__footer span {
    color: var(--emerald);
    font-weight: 800;
    line-height: 1.3;
}

.property-card__footer a {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(15, 76, 69, 0.18);
    border-radius: var(--radius);
    color: var(--emerald);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.property-card__footer a:hover,
.property-card__footer a:focus {
    background: var(--emerald);
    border-color: var(--emerald);
    color: var(--ivory);
}

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

.advantage-card {
    min-height: 252px;
    padding: 28px;
    border: 1px solid rgba(15, 76, 69, 0.12);
    border-radius: var(--radius);
    background: var(--ivory);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 46px rgba(15, 76, 69, 0.12);
}

.icon-box {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.14);
    color: var(--emerald);
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

.icon-box--light {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.advantage-card h3,
.experience-card h3 {
    margin: 22px 0 10px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.2;
}

.advantage-card p,
.experience-card p {
    margin: 0;
    color: var(--ink-muted);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 18px;
}

.experience-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(250, 248, 242, 0.12);
    border-radius: var(--radius);
    background: var(--emerald-dark);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.experience-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 680ms ease, filter 680ms ease;
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.08) 0%, rgba(27, 27, 27, 0.82) 100%);
}

.experience-card__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 24px;
    color: var(--ivory);
    transform: translateY(10px);
    transition: transform 280ms ease;
}

.experience-card p {
    color: rgba(250, 248, 242, 0.78);
}

.experience-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.08) contrast(1.03);
}

.experience-card:hover .experience-card__content {
    transform: translateY(0);
}

.testimonial-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--emerald);
    color: var(--ivory);
    box-shadow: var(--shadow-soft);
}

.testimonial-card {
    min-height: 360px;
    margin: 0;
    padding: 48px;
}

.testimonial-card > svg {
    width: 38px;
    height: 38px;
    color: var(--gold);
}

.testimonial-card blockquote {
    margin: 28px 0;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.22;
}

.testimonial-card figcaption {
    display: grid;
    gap: 2px;
}

.testimonial-card strong {
    color: var(--gold);
    font-size: 1.02rem;
}

.testimonial-card span {
    color: rgba(250, 248, 242, 0.72);
}

.testimonial-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.testimonial-control {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(250, 248, 242, 0.28);
    border-radius: var(--radius);
    background: rgba(250, 248, 242, 0.1);
    color: var(--ivory);
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.testimonial-control:hover,
.testimonial-control:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.destination-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--emerald);
    box-shadow: 0 16px 44px rgba(27, 27, 27, 0.12);
}

.destination-card:first-child {
    grid-row: span 2;
}

.destination-card:nth-child(5) {
    grid-column: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 620ms ease, filter 620ms ease;
}

.destination-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.02), rgba(27, 27, 27, 0.72));
}

.destination-card__content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: var(--ivory);
}

.destination-card small {
    display: block;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.destination-card strong {
    display: block;
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.destination-card:hover img,
.destination-card:focus img {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.03);
}

.stats-section {
    padding: 62px 0;
    background:
        linear-gradient(90deg, rgba(15, 76, 69, 0.96), rgba(10, 49, 45, 0.98)),
        var(--emerald);
    color: var(--ivory);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(250, 248, 242, 0.14);
    border-radius: var(--radius);
    background: rgba(250, 248, 242, 0.14);
}

.stat-card {
    display: grid;
    gap: 6px;
    min-height: 170px;
    place-items: center;
    padding: 28px 18px;
    background: rgba(250, 248, 242, 0.05);
    text-align: center;
}

.stat-card strong {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1;
}

.stat-card span:last-child {
    color: rgba(250, 248, 242, 0.8);
    font-weight: 700;
}

.cta-section {
    position: relative;
    min-height: 68svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 118px 0;
    color: var(--ivory);
    background-image: var(--cta-image);
    background-position: center;
    background-size: cover;
}

.cta-section__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 22, 20, 0.86), rgba(7, 22, 20, 0.45), rgba(7, 22, 20, 0.18)),
        linear-gradient(0deg, rgba(27, 27, 27, 0.22), rgba(27, 27, 27, 0.1));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-content h2 {
    margin: 0;
    color: var(--ivory);
    font-size: clamp(3rem, 6vw, 6rem);
}

.cta-content p:not(.eyebrow) {
    max-width: 540px;
    margin: 24px 0 34px;
    color: rgba(250, 248, 242, 0.84);
    font-size: 1.1rem;
}

.site-footer {
    padding: 76px 0 28px;
    background: var(--charcoal);
    color: rgba(250, 248, 242, 0.76);
}

.brand-mark--footer {
    margin-bottom: 22px;
}

.footer-copy {
    max-width: 360px;
    margin: 0 0 20px;
}

.site-footer h2 {
    margin: 0 0 18px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.32rem;
}

.footer-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a,
.footer-bottom a {
    color: rgba(250, 248, 242, 0.78);
    transition: color 200ms ease;
}

.footer-list a:hover,
.footer-bottom a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(250, 248, 242, 0.16);
    border-radius: var(--radius);
    color: var(--ivory);
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.social-links a:hover,
.social-links a:focus {
    transform: translateY(-2px);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 10px;
}

.newsletter-form .btn {
    min-width: 54px;
    min-height: 58px;
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 248, 242, 0.12);
    font-size: 0.92rem;
}

.luxury-toast {
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: var(--radius);
    background: rgba(27, 27, 27, 0.95);
    color: var(--ivory);
    box-shadow: var(--shadow-dark);
}

.trial-badge {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(212, 175, 55, 0.62);
    border-radius: var(--radius);
    background: rgba(27, 27, 27, 0.86);
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.trial-badge:hover,
.trial-badge:focus {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--charcoal);
}

.trial-modal .modal-content {
    max-height: calc(100dvh - 2rem);
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: var(--radius);
    background:
        linear-gradient(140deg, rgba(15, 76, 69, 0.96), rgba(27, 27, 27, 0.98)),
        var(--charcoal);
    color: var(--ivory);
    box-shadow: var(--shadow-dark);
}

.trial-modal .modal-body {
    position: relative;
    padding: 42px;
}

.trial-modal .modal-body::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 6px;
    background: var(--gold);
}

.trial-modal__close {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    filter: invert(1) grayscale(1);
    opacity: 0.72;
}

.trial-modal__label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.trial-modal h2 {
    margin: 0;
    max-width: 420px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.22;
}

.trial-modal p {
    margin: 18px 0 28px;
    color: rgba(250, 248, 242, 0.78);
    font-size: 1.02rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroBreath {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes scrollCue {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }
    50% {
        transform: translateY(14px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

    .btn-search {
        grid-column: span 2;
    }

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

    .experience-card:last-child {
        grid-column: span 2;
        min-height: 360px;
    }
}

@media (max-width: 991.98px) {
    .navbar-luxury .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid rgba(250, 248, 242, 0.16);
        border-radius: var(--radius);
        background: rgba(15, 76, 69, 0.98);
    }

    .hero-section {
        padding: 118px 0 60px;
    }

    .hero-note {
        margin-left: 0;
    }

    .section {
        padding: 82px 0;
    }

    .destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }

    .destination-card:first-child,
    .destination-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

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

@media (max-width: 767.98px) {
    .brand-mark__text {
        font-size: 1.1rem;
    }

    .brand-mark__symbol {
        width: 38px;
        height: 38px;
    }

    .hero-section {
        min-height: auto;
        padding: 116px 0 48px;
    }

    .hero-copy h1 {
        font-size: clamp(2.85rem, 14vw, 4.6rem);
    }

    .booking-panel,
    .advantage-grid,
    .experience-grid,
    .destination-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-search,
    .experience-card:last-child {
        grid-column: auto;
    }

    .experience-card,
    .experience-card:last-child {
        min-height: 390px;
    }

    .testimonial-card {
        min-height: 420px;
        padding: 34px 26px 88px;
    }

    .testimonial-controls {
        left: 26px;
        right: auto;
    }

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

@media (max-width: 575.98px) {
    .hero-actions,
    .footer-bottom {
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-panel {
        margin-top: 38px;
        padding: 12px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .section-title {
        font-size: clamp(2.15rem, 12vw, 3.15rem);
    }

    .property-card__image {
        aspect-ratio: 1 / 1;
    }

    .property-card__body {
        min-height: auto;
    }

    .cta-section {
        min-height: 620px;
        padding: 86px 0;
    }

    .trial-badge {
        left: 14px;
        bottom: 14px;
        min-height: 40px;
        padding: 0 13px;
        font-size: 0.9rem;
    }

    .trial-modal .modal-body {
        padding: 38px 28px 30px;
    }
}
