:root {
    --color-navy-deep: #0a111a;
    --color-navy-mid: #0f1924;
    --color-gold: #d9a04b;
    --color-gold-hover: #e4b456;
    --color-text-dark: #1a1a1a;
    --color-muted: #6c757d;
    --color-light-soft: #f4f6f8;
    --about-bg: #f9f9f9;
    --about-heading: #111827;
    --about-body: #6b7280;
    --amenity-icon-bg: #fff2e8;
    --amenity-icon-color: #e69b3e;
    --accent-orange: #e69b3e;
    --accent-orange-hover: #f0a94d;
    --cta-navy: #0b1320;
    --color-white-70: rgba(255, 255, 255, 0.78);
    --color-white-60: rgba(255, 255, 255, 0.65);
    --font-sans: "Kulim Park", sans-serif;
    --radius-btn: 5px;
    --radius-card: 6px;
    --header-height: 72px;
    --hero-min-h: 800px;
}

@media (min-width: 576px) {
    :root {
        --layout-content-max: 560px;
    }
}

@media (min-width: 768px) {
    :root {
        --layout-content-max: 750px;
    }
}

@media (min-width: 992px) {
    :root {
        --layout-content-max: 1060px;
    }
}

@media (min-width: 1200px) {
    :root {
        --layout-content-max: 1240px;
    }
}

@media (min-width: 1400px) {
    :root {
        --layout-content-max: 1480px;
    }
}

@media (min-width: 576px) {
    main .container,
    .site-footer .container,
    .container-hostay {
        max-width: var(--layout-content-max);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: var(--header-height);
    overflow-x: clip;
}

@media (min-width: 992px) {
    :root {
        --header-height: 84px;
    }
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    padding-top: var(--header-height);
    background-color: #000000;
    overflow-x: clip;
}

main {
    margin-top: 0;
}

/* ----- Typography helpers ----- */

.text-accent {
    color: var(--color-gold) !important;
}

.text-white-70 {
    color: var(--color-white-70) !important;
}

.text-white-60 {
    color: var(--color-white-60) !important;
}

.letter-spacing {
    letter-spacing: 0.12em;
}

.bg-light-soft {
    background-color: var(--color-light-soft) !important;
}

.object-cover {
    object-fit: cover;
}

.z-1 {
    z-index: 1;
}

/* ----- Header / navbar ----- */

.site-header .navbar.navbar-hostay {
    background-color: #000000;
    margin-top: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 992px) {
    .navbar-hostay.navbar-expand-lg .navbar-toolbar-collapse {
        flex-grow: 1 !important;
        flex-basis: 0;
        min-width: 0;
    }
    .navbar-toolbar-inner {
        border-top: none !important;
        padding-top: 0 !important;
    }
}

.navbar-toolbar-inner {
    border-top: none;
}

/* Notch devices: extend toolbar padding without shifting full-bleed hero/footer */

@supports (padding: max(0px)) {
    .site-header .navbar .navbar-toolbar.container-hostay {
        padding-left: calc(1rem + env(safe-area-inset-left, 0px));
        padding-right: calc(1rem + env(safe-area-inset-right, 0px));
    }
    @media (min-width: 992px) {
        .site-header .navbar .navbar-toolbar.container-hostay {
            padding-left: calc(1.5rem + env(safe-area-inset-left, 0px));
            padding-right: calc(1.5rem + env(safe-area-inset-right, 0px));
        }
    }
}

.navbar-dark .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.55rem 0.75rem;
    position: relative;
}

.navbar-hostay .nav-hostay .nav-link:hover,
.navbar-hostay .nav-hostay .nav-link:focus {
    color: rgba(255, 255, 255, 0.88);
}

.navbar-hostay .nav-hostay .nav-link.active {
    color: #ffffff;
}

.navbar-hostay .nav-hostay .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.25rem;
    transform: translateX(-50%);
    width: 1.75rem;
    max-width: 70%;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 1px;
}

.footer-brand-title .brand-domain,
.brand-domain {
    color: var(--color-gold);
}

.brand-hostay {
    color: #ffffff;
}

.brand-title-line {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    white-space: nowrap;
}

.brand-tagline-wrap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
    width: 100%;
    max-width: 13rem;
}

.brand-tagline {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-tagline-rule {
    flex: 1 1 0;
    min-width: 0.75rem;
    height: 1px;
    background-color: var(--color-gold);
    opacity: 0.95;
}

.brand-lockup-logo {
    width: 150px;
    height: 40px;
    flex-shrink: 0;
    display: block;
}

.footer-brand-title {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nav-hostay .nav-item {
    text-align: center;
}

@media (min-width: 992px) {
    .nav-hostay .nav-item {
        text-align: left;
    }
}

.navbar-hostay .navbar-toggler-hostay {
    padding: 0.35rem 0.5rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-hostay .nav-hostay .nav-link {
        padding-left: 0.45rem;
        padding-right: 0.45rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-actions {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 0.75rem;
    }
    .navbar-nav-cluster {
        width: 100%;
    }
    .navbar-hostay .nav-hostay .nav-link.active::after {
        left: 50%;
        bottom: 0.15rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-actions .btn-enquire-nav {
        width: 100%;
    }
    .navbar-actions .nav-auth-login {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .brand-title-line {
        font-size: clamp(0.95rem, 4.2vw, 1.25rem);
    }
    .brand-tagline-wrap,
    .brand-lockup-logo {
        max-width: 100%;
    }
    .brand-lockup-logo {
        margin-right: 40px;
        width: 150px;
        height: auto;
    }
}

.btn-lang {
    background: transparent;
    border: 1px solid #333333;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-btn);
    padding: 0.45rem 0.9rem;
}

.btn-lang.dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.15em;
}

.btn-lang:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-accent {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-deep);
    font-weight: 500;
    border-radius: var(--radius-btn);
}

.btn-accent:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-navy-deep);
}

.btn-enquire {
    padding-left: 1.15rem;
    padding-right: 1.35rem;
    white-space: nowrap;
}

.btn-enquire-nav {
    border-radius: 6px;
    color: #0f0f0f;
}

.nav-enquire-icon {
    font-size: 1.05rem;
    line-height: 1;
}

.nav-auth-login {
    opacity: 0.92;
}

.nav-auth-login:hover {
    opacity: 1;
    color: var(--color-gold) !important;
}

.btn-outline-gold {
    border-width: 2px;
    border-color: var(--color-gold);
    color: #fff;
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: #fff;
    border-color: var(--color-gold-hover);
}

.btn-dark-navy {
    background-color: var(--color-navy-deep);
    border-color: var(--color-navy-deep);
    color: #fff;
    font-weight: 500;
    border-radius: var(--radius-btn);
}

.btn-dark-navy:hover {
    background-color: #152433;
    border-color: #152433;
    color: #fff;
}

/* ----- Hero ----- */

.hero-main {
    min-height: max(var(--hero-min-h), calc(100vh - var(--header-height)));
    min-height: max(var(--hero-min-h), calc(100dvh - var(--header-height)));
    background-color: var(--color-navy-deep);
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(8, 12, 18, 0.15) 0%, rgba(8, 12, 18, 0.35) 55%, rgba(8, 12, 18, 0.82) 100%), linear-gradient( to right, rgba(10, 17, 26, 0.88) 0%, rgba(10, 17, 26, 0.45) 52%, rgba(10, 17, 26, 0.25) 100%);
    pointer-events: none;
}

.hero-content {
    padding-bottom: 1rem;
}

.hero-copy-wrap {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.hero-eyebrow {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.4;
}

.hero-headline {
    font-size: clamp(2.45rem, 4.8vw, 3.55rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 34rem;
}

.hero-ctas .btn-lg {
    border-radius: var(--radius-btn);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.btn-hero-primary {
    color: var(--color-navy-deep);
}

.btn-hero-secondary {
    border: 1px solid var(--color-gold);
    color: #fff;
    background-color: transparent;
    font-weight: 500;
}

.btn-hero-secondary:hover {
    background-color: rgba(212, 175, 55, 0.12);
    border-color: var(--color-gold-hover);
    color: #fff;
}

.btn-hero-secondary:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.35);
}

/* Hero bottom features bar (overlays image) */

.hero-features-bar {
    background-color: rgba(0, 0, 0, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-features-row {
    --bs-gutter-x: 1.25rem;
}

.hero-feature-item .feature-title {
    font-weight: 500;
    font-size: 1.0625rem;
    line-height: 1.25;
}

.hero-feature-item .feature-sub {
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.35;
    opacity: 0.92;
    margin-top: 0.15rem;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-btn);
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.35rem;
    flex-shrink: 0;
}

/* ----- About ----- */

.section-about {
    background-color: #f9f4f0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .section-about {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.about-eyebrow {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.about-heading {
    color: var(--about-heading);
    font-size: clamp(1.9rem, 3.6vw, 2.65rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.about-lead {
    color: var(--about-body);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 36rem;
}

.btn-about-dark {
    background-color: var(--about-heading);
    border-color: var(--about-heading);
    color: #fff;
}

.btn-about-dark:hover {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.btn-about-outline {
    color: var(--about-heading);
    border: 2px solid var(--about-heading);
    background-color: transparent;
}

.btn-about-outline:hover {
    background-color: var(--about-heading);
    border-color: var(--about-heading);
    color: #fff;
}

.btn-about-outline:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(17, 24, 39, 0.2);
}

.section-about-continued {
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

/* Collage: main (tall) | stacked middle | thin city strip */

.about-collage-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-rows: minmax(140px, 1fr) minmax(140px, 1fr);
    min-height: 300px;
}

.about-collage-main {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 280px;
}

.about-collage-top {
    grid-column: 2;
    grid-row: 1;
    min-height: 120px;
}

.about-collage-bottom {
    grid-column: 2;
    grid-row: 2;
    min-height: 120px;
}

.about-collage-strip {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 120px;
    max-height: 160px;
}

.about-collage-photo {
    display: block;
    min-height: 100%;
}

@media (max-width: 575.98px) {
    .about-collage-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        min-height: 0;
    }
    .about-collage-main {
        grid-column: 1;
        grid-row: 1;
        min-height: 200px;
    }
    .about-collage-top {
        grid-column: 1;
        grid-row: 2;
        min-height: 160px;
    }
    .about-collage-bottom {
        grid-column: 1;
        grid-row: 3;
        min-height: 160px;
    }
    .about-collage-strip {
        grid-column: 1;
        grid-row: 4;
        min-height: 100px;
        max-height: 140px;
    }
}

@media (min-width: 992px) {
    .about-collage-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) 4.5rem;
        grid-template-rows: 1fr 1fr;
        min-height: 400px;
        gap: 0.85rem;
    }
    .about-collage-main {
        min-height: 420px;
    }
    .about-collage-strip {
        grid-column: 3;
        grid-row: 1 / -1;
        min-width: 0;
        min-height: 0;
        max-height: none;
    }
    .about-collage-top {
        grid-column: 2;
        grid-row: 1;
    }
    .about-collage-bottom {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (min-width: 1200px) {
    .about-collage-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) 5.25rem;
        min-height: 440px;
    }
}

.floating-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: auto;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-btn);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.floating-badge-icon {
    color: var(--color-gold);
    font-size: 1.35rem;
    line-height: 1;
}

.floating-badge-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.floating-badge-num {
    font-size: 1.5rem;
    color: var(--about-heading);
    letter-spacing: -0.02em;
}

.floating-badge-label {
    font-size: 0.8125rem;
    color: var(--about-body);
    letter-spacing: 0.02em;
}

/* ----- Room cards ----- */

.room-card {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.room-card .card-img-top {
    border-top-left-radius: var(--radius-card);
    border-top-right-radius: var(--radius-card);
}

.room-card-img {
    height: 220px;
    object-fit: cover;
}

.room-card .ribbon {
    position: absolute;
    top: 16px;
    right: -36px;
    background: var(--color-gold);
    color: var(--color-navy-deep);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Homepage rooms strip: eyebrow, title, cards */

body[data-page="home"] #rooms .container>.d-flex .small {
    font-size: 0.9375rem;
}

body[data-page="home"] #rooms h2.fw-bold.mb-0 {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body[data-page="home"] #rooms .room-card .card-body h3 {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    body[data-page="home"] #rooms .room-card .card-body h3 {
        font-size: 1.35rem;
    }
}

body[data-page="home"] #rooms .room-card .list-unstyled.small {
    font-size: 0.9375rem;
}

body[data-page="home"] #rooms .room-card .card-body>p.fw-semibold.mb-4 {
    font-size: 1.0625rem;
}

/* ----- How it works ----- */

.section-how {
    background-color: var(--color-navy-deep);
    overflow: hidden;
}

.how-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background-image: url("../images/skyline.svg");
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100px;
    opacity: 0.15;
    pointer-events: none;
}

.how-step {
    position: relative;
    padding: 1rem 0.5rem;
}

.how-step-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border: 2px dashed var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    background: rgba(225, 177, 90, 0.08);
}

@media (min-width: 992px) {
    .how-step:not(.how-step-last)::after {
        content: "";
        position: absolute;
        top: 52px;
        left: calc(50% + 36px);
        width: calc(100% - 72px);
        height: 0;
        border-top: 2px dashed rgba(225, 177, 90, 0.45);
        pointer-events: none;
    }
}

.section-how .text-center>.small {
    font-size: 0.9375rem;
}

.section-how .text-center h2.fw-bold {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-how .how-step h3 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.section-how .how-step p.small {
    font-size: 0.9375rem;
    line-height: 1.55;
}

.how-step-num {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

@media (min-width: 992px) {
    .how-steps .how-step {
        text-align: center;
    }
    .how-steps .how-step-icon-wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ----- Amenities & testimonials ----- */

.section-amenities {
    background-color: var(--about-bg);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .section-amenities {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.amenities-eyebrow,
.testimonials-eyebrow {
    font-size: 0.9375rem;
    letter-spacing: 0.14em;
    color: var(--accent-orange);
}

@media (min-width: 992px) {
    .amenities-split-col {
        padding-right: 2rem;
    }
    .testimonials-split-col {
        padding-left: 2rem;
        border-left: 1px solid #d1d5db;
    }
}

.amenities-heading {
    color: var(--about-heading);
    font-size: clamp(1.9rem, 3.6vw, 2.65rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    max-width: 100%;
}

@media (min-width: 992px) {
    .amenities-heading {
        max-width: 28rem;
    }
}

.testimonials-eyebrow-first {
    position: relative;
    display: inline-block;
    padding-bottom: 0.35rem;
}

.testimonials-eyebrow-first::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
    border-radius: 1px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
}

@media (min-width: 576px) {
    .amenity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }
}

.amenity-cell {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    min-height: 0;
}

.amenity-cell-icon {
    flex-shrink: 0;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    background-color: var(--amenity-icon-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--amenity-icon-color);
    font-size: 1.05rem;
    line-height: 1;
}

.amenity-cell-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--about-heading);
    line-height: 1.35;
    padding-top: 0.35rem;
}

.btn-amenities-cta {
    background-color: var(--cta-navy);
    border-color: var(--cta-navy);
    color: #ffffff;
    font-weight: 500;
}

.btn-amenities-cta:hover {
    background-color: #060d18;
    border-color: #060d18;
    color: #ffffff;
}

.testimonial-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-brand {
    color: var(--accent-orange);
    font-weight: 500;
}

.testimonial-author .text-start {
    text-align: left !important;
}

.testimonial-slides-wrap {
    position: relative;
    min-height: 280px;
}

@media (min-width: 768px) {
    .testimonial-slides-wrap {
        min-height: 280px;
    }
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.is-active {
    display: block;
}

.text-accent-opacity {
    opacity: 0.35;
    line-height: 1;
}

.testimonials-column {
    z-index: 1;
}

.testimonial-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 0.65rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2.25rem 2rem;
    }
}

.testimonial-quote-mark {
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent-orange);
    opacity: 0.85;
    margin-bottom: 0.35rem;
}

.testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--about-body);
    font-weight: 400;
    text-align: center;
}

.testimonial-stack .testimonial-carousel-bar {
    margin-top: 1.25rem;
}

.testimonial-carousel-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.35rem;
    padding: 0.5rem 0.85rem;
    background-color: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 17rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-testimonial-arrow {
    border: none;
    background: transparent;
    color: var(--about-heading);
    padding: 0.2rem 0.35rem;
    line-height: 1;
    border-radius: var(--radius-btn);
}

.btn-testimonial-arrow:hover {
    color: var(--accent-orange);
}

.btn-testimonial-arrow:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

button.testimonial-dot {
    width: 7px;
    height: 7px;
    border: none;
    padding: 0;
    border-radius: 50%;
    background-color: #d1d5db;
    flex-shrink: 0;
    cursor: pointer;
    line-height: 0;
    vertical-align: middle;
}

button.testimonial-dot:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.testimonial-dot.is-active {
    background-color: var(--accent-orange);
    width: 8px;
    height: 8px;
}

.testimonial-name {
    color: var(--about-heading);
    font-size: 1.0625rem;
}

.testimonial-role {
    color: var(--about-body);
    font-weight: 500;
    font-size: 0.9375rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ----- CTA (card matches View All Amenities button / --cta-navy) ----- */

.section-cta {
    background-color: var(--about-bg);
}

.cta-bar {
    background-color: var(--cta-navy);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(11, 19, 32, 0.18);
}

.cta-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    flex-shrink: 0;
}

.cta-icon-img {
    display: block;
    width: 36px;
    height: 36px;
}

.cta-headline {
    font-size: clamp(1.35rem, 2.85vw, 1.65rem);
    font-weight: 500;
    line-height: 1.35;
    color: #ffffff;
}

.cta-brand {
    color: var(--accent-orange);
    font-weight: 500;
}

.cta-sub {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.btn-cta-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #111827;
    font-weight: 500;
}

.btn-cta-primary:hover {
    background-color: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
    color: #111827;
}

/* ----- Footer ----- */

.site-footer {
    background-color: var(--color-navy-deep);
}

@supports (padding: max(0px)) {
    .site-footer {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
}

.footer-rule {
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-links a {
    color: var(--color-white-60);
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    color: #fff;
    font-size: 1.25rem;
    opacity: 0.85;
}

.footer-social:hover {
    color: var(--color-gold);
}

.footer-contact a {
    color: var(--color-white-60);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-legal a {
    color: var(--color-white-60);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.footer-social:focus-visible,
.footer-legal a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.footer-brand-logo {
    width : 150px;
    height : 40px;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .hero-main {
        min-height: min(720px, calc(100vh - var(--header-height) + 40px));
        min-height: min(720px, calc(100dvh - var(--header-height) + 40px));
    }
    .hero-feature-item {
        justify-content: flex-start;
    }
    .hero-features-row .feature-icon-wrap {
        flex-shrink: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-feature-item {
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header .navbar {
        transition: none;
    }
}