:root {
    --gold-50: #FDFBFA;
    --gold-100: #F7EFEA;
    --gold-200: #ECDCCF;
    --gold-300: #DCBF9F;
    --gold-400: #C59F75;
    --gold-500: #B59670;
    --gold-600: #9B7E58;
    --gold-700: #7E6341;
    --forest-600: #A84F3D;
    --forest-700: #883B2C;
    --forest-800: #682B1E;
    --alabaster: #d3d3d3;
    --charcoal-950: #191411;
    --charcoal-900: #2C231D;
    --charcoal-800: #3F342C;
    --charcoal-700: #55483E;
    --muted: #85776B;
    --font-display: "Cormorant Garamond","Playfair Display",serif;
    --font-sans: "Inter",sans-serif;
    --font-mono: "Playfair Display","Cormorant Garamond",serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--alabaster);
    font-family: var(--font-sans);
    color: #302820;
    overflow-x: hidden
}

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

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

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--alabaster)
}

::-webkit-scrollbar-thumb {
    background: var(--gold-400);
    border-radius: 4px
}

.container {
    max-width: 1280px
}

.font-display,h1,h2,h3,h4 {
    font-family: var(--font-display)
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 22px 0;
    color: white;
    transition: .35s ease;
    background: transparent
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(255,255,255,.98);
    color: var(--charcoal-950);
    box-shadow: 0 10px 35px rgba(25,20,17,.06);
    border-bottom: 1px solid rgba(236,220,207,.5);
    backdrop-filter: blur(12px)
}

.brand,.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase
}

.brand {
    font-size: 18px
}

.brand:hover,.main-nav a:hover,.nav-phone:hover {
    color: var(--gold-500)
}

.main-nav a,.nav-phone {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    transition: .25s
}

.btn-outline-gold {
    border: 1px solid var(--gold-500);
    color: var(--gold-500);
    border-radius: 999px;
    padding: 11px 21px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.site-header.scrolled .btn-outline-gold {
    border-color: var(--charcoal-950);
    color: var(--charcoal-950)
}

.btn-outline-gold:hover,.site-header.scrolled .btn-outline-gold:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--charcoal-950)
}

.menu-trigger {
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 30px
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--charcoal-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: .35s
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: 0;
    color: white;
    font-size: 44px
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: center
}

.mobile-drawer a {
    font-family: var(--font-display);
    color: white;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 22px
}

.drawer-cta {
    background: var(--gold-500);
    color: var(--charcoal-950)!important;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700
}

.drawer-phone {
    font-family: var(--font-sans)!important;
    font-size: 14px!important;
    color: #999!important
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 70px;
    background: #111;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(25,20,17,.10),rgba(25,20,17,.18),rgba(25,20,17,.16));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 30px

}

.hero-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(181,150,112,.22);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 9px 22px;
    margin-bottom: 24px;
    color: var(--gold-300);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .25em
}

.hero-title {
    font-size: clamp(46px,7vw,74px);
    font-weight: 300;
    color: white;
    line-height: 1.05;
    letter-spacing: .01em
}

.hero-title em {
    color: var(--gold-400);
    font-weight: 400
}

.hero-subtitle {
    color: #d5d0cc;
    font-size: clamp(15px,1.4vw,18px);
    max-width: 720px;
    margin: 24px auto 0;
    line-height: 1.75;
    font-weight: 300
}

.hero-ctas {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    max-width: 560px;
    margin: 42px auto 0
}

.btn-gold,.btn-ghost,.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border: 1px solid transparent;
    transition: .25s
}

.btn-gold {
    background: var(--gold-500);
    color: var(--charcoal-950)!important;
    box-shadow: 0 12px 35px rgba(181,150,112,.12)
}

.btn-gold:hover {
    background: var(--gold-600);
    color: white!important
}

.btn-ghost {
    border-color: rgba(255,255,255,.22);
    color: white!important
}

.btn-ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: white
}

.dark-text {
    color: var(--charcoal-950)!important;
    border-color: var(--gold-200)
}

.btn-light {
    background: #fff;
    border-color: var(--gold-200);
    color: var(--charcoal-900)!important
}

.hero-badges {
    max-width: 900px;
    margin: 64px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1)
}

.hero-badges strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(25px,2.5vw,34px);
    font-style: italic;
    font-weight: 500;
    color: white;
}

.hero-badges span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: white;
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .18em
}

.scroll-hint i {
    display: block;
    width: 1px;
    height: 42px;
    margin-top: 8px;
    background: linear-gradient(var(--gold-500),transparent)
}

.section {
    padding: 96px 0;
    border-bottom: 1px solid rgba(236,220,207,.45)
}

.white {
    background: white
}

.alabaster,.poi-section {
    background: var(--alabaster)
}

.dark {
    background: grey;
    color: var(--alabaster)
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold-600);
    display: block;
    margin-bottom: 12px
}

.eyebrow.gold {
    color: var(--gold-500)
}

h2 {
    font-size: clamp(38px,5vw,58px);
    font-weight: 300;
    color: var(--charcoal-950);
    line-height: 1.05;
    letter-spacing: .02em
}

h2 em {
    color: #bd1616;
    font-weight: 400
}

h3 {
    font-size: 32px;
    color: var(--charcoal-950)
}

p {
    color: #6f665f;
    line-height: 1.75
}

.img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--gold-100);
    box-shadow: 0 16px 45px rgba(25,20,17,.08)
}

.img-frame.big {
    aspect-ratio: 16/10
}

.img-frame.square {
    aspect-ratio: 1
}

.img-frame img,.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-pill {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(18,18,18,.75);
    border: 1px solid rgba(197,168,128,.3);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 10px 18px;
    color: white;
    font-size: 12px;
    font-family: var(--font-mono)
}

.image-pill.top {
    top: 18px;
    bottom: auto
}

.quote {
    font-weight: 500;
    color: var(--charcoal-900);
    border-left: 2px solid var(--gold-500);
    padding-left: 16px
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gold-100)
}

.check-grid span {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal-900)
}

.section-head {
    max-width: 780px;
    margin: 0 auto 64px
}

.section-head p {
    max-width: 680px;
    margin: 18px auto 0
}

.suite-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px
}

.suite-tabs button,.review-filters button,.guest-buttons button,.purpose-buttons button {
    border: 1px solid rgba(236,220,207,.7);
    background: white;
    color: #655b53;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 600;
    transition: .25s
}

.suite-tabs button.active,.review-filters button.active,.guest-buttons button.active,.purpose-buttons button.active {
    background: var(--charcoal-950);
    color: white;
    border-color: var(--charcoal-950);
    box-shadow: 0 10px 25px rgba(25,20,17,.14)
}

.suite-card {
    background: white;
    border: 1px solid rgba(247,239,234,.7);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 22px 60px rgba(181,150,112,.05);
    margin-top: 40px !important;

}

.suite-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--gold-100)
}

.suite-detail {
    padding: 14px 24px
}

.suite-detail h3 {
    font-weight: 700
}

.specs {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    padding-top: 24px;
    margin: 26px 0;
    border-top: 1px solid var(--gold-100)
}

.spec {
    border-left: 2px solid rgba(181,150,112,.5);
    padding-left: 12px
}

.spec small {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #aaa;
    display: block
}

.spec b {
    font-size: 14px;
    color: var(--charcoal-950);
    font-weight: 600
}

.text-link {
    color: var(--gold-700);
    font-family: var(--font-display);
    font-weight: 600
}

.facts {
    margin-top: 48px
}

.facts>div>div {
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(247,239,234,.8);
    border-radius: 16px;
    padding: 18px
}

.facts strong {
    display: block;
    font-family: var(--font-display);
    font-size: 26px
}

.facts span {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #999
}

.gallery-section h2,.gallery-section h3 {
    color: white
}

.gallery-section p {
    color: #888
}

.round-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(181,150,112,.35);
    background: transparent;
    color: var(--gold-500);
    margin-left: 10px;
    font-size: 22px;
    transition: .25s
}

.round-btn:hover {
    background: rgba(181,150,112,.1);
    border-color: var(--gold-500);
    color: white
}

.gallery-viewport {
    overflow: hidden;
    padding: 16px 0;
    margin: 0 -16px;
    mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent)
}

.gallery-track {
    display: flex;
    gap: 24px;
    width: max-content;
    cursor: grab;
    user-select: none;
    touch-action: none
}

.gallery-track:active {
    cursor: grabbing
}

.gallery-item {
    width: 380px;
    flex: 0 0 auto;
    background: var(--charcoal-900);
    border: 1px solid rgba(181,150,112,.1);
    border-radius: 24px;
    overflow: hidden
}

.gallery-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05)
}

.gallery-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(25,20,17,.8);
    color: var(--gold-500);
    border: 1px solid rgba(181,150,112,.2);
    border-radius: 999px;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.gallery-caption {
    background: #161616;
    padding: 24px
}

.gallery-caption h4 {
    color: white;
    font-size: 22px
}

.gallery-caption p {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #888;
    margin: 0
}

.drag-aid {
    width: max-content;
    max-width: 100%;
    margin: 40px auto 0;
    border: 1px solid rgba(181,150,112,.1);
    background: #111;
    border-radius: 999px;
    padding: 10px 20px;
    color: #aaa;
    font-size: 12px
}

.visual-break {
    height: 75vh;
    min-height: 450px;
    background: var(--charcoal-950);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center
}

.visual-break:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20,16,14,.45)
}

.visual-break img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.visual-break div {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px
}

.visual-break span,.visual-break small {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--gold-300)
}

.visual-break p {
    font-family: var(--font-display);
    font-size: clamp(34px,5vw,58px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.15;
    color: white;
    margin: 20px 0
}

.visual-break i {
    display: block;
    width: 52px;
    height: 1px;
    background: var(--gold-400);
    margin: 26px auto
}

.info-cards {
    display: grid;
    gap: 16px;
    margin-top: 30px
}

.info-cards article {
    background: #fcfbf9;
    border: 1px solid rgba(236,220,207,.55);
    border-radius: 18px;
    padding: 18px
}

.info-cards b {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--charcoal-950);
    margin-bottom: 6px
}

.info-cards span {
    font-size: 13px;
    color: #777
}

.distance-card {
    background: #fcfaf7;
    border: 1px solid var(--gold-200);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(236,220,207,.45);
    overflow: hidden
}

.distance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gold-100);
    padding: 16px 0;
    gap: 20px
}

.distance-row:last-child {
    border-bottom: 0
}

.distance-row b {
    font-size: 14px;
    color: var(--charcoal-950)
}

.distance-row small {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #888
}

.distance-row span:last-child {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-600);
    background: var(--gold-50);
    border: 1px solid var(--gold-200);
    border-radius: 999px;
    padding: 7px 12px;
    white-space: nowrap
}

.map-scheme {
    height: 100px;
    margin-top: 30px;
    border: 1px solid var(--gold-200);
    border-radius: 20px;
    background: rgba(253,251,250,.6);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.map-scheme:before,.map-scheme:after {
    content: "";
    position: absolute;
    background: rgba(236,220,207,.65)
}

.map-scheme:before {
    width: 1px;
    top: 0;
    bottom: 0;
    left: 50%
}

.map-scheme:after {
    height: 1px;
    left: 0;
    right: 0;
    top: 50%
}

.map-scheme strong {
    position: relative;
    z-index: 1;
    background: var(--forest-600);
    color: white;
    border-radius: 999px;
    padding: 8px 15px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.map-scheme span {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 9px;
    color: #777
}

.p1 {
    left: 20%;
    top: 30%
}

.p2 {
    right: 22%;
    bottom: 24%;
    font-weight: 700;
    color: var(--charcoal-800)!important
}

.poi-card {
    height: 100%;
    background: white;
    border: 1px solid rgba(236,220,207,.55);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(25,20,17,.03);
    transition: .3s
}

.poi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(25,20,17,.08)
}

.poi-img {
    height: 190px;
    position: relative;
    overflow: hidden
}

.poi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

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

.poi-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.9);
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 10px;
    border-radius: 3px;
    color: var(--charcoal-700)
}

.poi-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 190px)
}

.poi-content small {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: .15em
}

.poi-content h3 {
    font-size: 22px
}

.poi-content p {
    font-size: 12px;
    line-height: 1.65
}

.poi-time {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--gold-100);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.poi-time span:first-child {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #aaa
}

.poi-time span:last-child {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-600);
    background: var(--gold-50);
    border: 1px solid rgba(236,220,207,.55);
    padding: 5px 10px;
    border-radius: 6px
}

.guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 38px;
    background: var(--gold-50);
    border: 1px solid rgba(236,220,207,.6);
    border-radius: 22px;
    max-width: 850px;
    margin: 0 auto 64px;
    padding: 18px;
    color: var(--gold-700);
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700
}

.wizard {
    background: var(--alabaster);
    border: 1px solid var(--gold-100);
    border-radius: 32px;
    padding: 38px;
    position: relative;
    box-shadow: 0 20px 60px rgba(181,150,112,.06)
}

.wizard .tag {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--charcoal-950);
    color: var(--gold-500);
    border: 1px solid rgba(181,150,112,.35);
    border-radius: 999px;
    padding: 7px 16px;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap
}

.steps span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ddd;
    color: #777;
    font-size: 12px;
    font-weight: 700
}

.steps span.active {
    background: var(--charcoal-950);
    color: white
}

.steps i {
    width: 30px;
    height: 2px;
    background: var(--gold-200)
}

.steps small {
    font-size: 12px;
    color: #777
}

.wizard label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #888;
    margin-bottom: 8px
}

.wizard input,.wizard select,.wizard textarea {
    width: 100%;
    border: 1px solid var(--gold-200);
    background: white;
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--charcoal-950);
    outline: none
}

.wizard input:focus,.wizard select:focus,.wizard textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(181,150,112,.08)
}

.wizard-step {
    display: none
}

.wizard-step.active {
    display: block
}

.guest-buttons,.purpose-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.guest-buttons button {
    width: 54px;
    height: 48px;
    padding: 0
}

.wizard-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: space-between
}

.success {
    text-align: center
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-500);
    display: grid;
    place-items: center;
    font-size: 42px;
    color: white;
    margin: 0 auto 20px
}

.booking-side {
    background: var(--charcoal-950);
    border-radius: 30px;
    padding: 38px;
    color: white;
    height: 100%
}

.booking-side h3 {
    color: white
}

.booking-side li {
    margin-bottom: 14px;
    color: #c9c2bc
}

.review-filters {
    display: flex;
    gap: 8px;
    background: var(--gold-100);
    border-radius: 999px;
    width: max-content;
    max-width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.review-card,.faq-item {
    background: white;
    border: 1px solid rgba(247,239,234,.8);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 3px 15px rgba(25,20,17,.025)
}

.review-head {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.review-head h4 {
    font-size: 20px;
    margin: 0
}

.review-role {
    font-size: 12px;
    color: #aaa
}

.stars {
    color: var(--gold-500);
    white-space: nowrap
}

.review-card blockquote {
    font-size: 14px;
    color: #655b53;
    font-style: italic;
    line-height: 1.7;
    margin: 18px 0
}

.review-date {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .1em
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--charcoal-950);
    font-size: 18px;
    padding: 0
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    margin: 0 -24px -24px
}

.faq-item.open .faq-a {
    max-height: 250px;
    margin-top: 20px;
    border-top: 1px solid rgba(247,239,234,.9)
}

.faq-a div {
    background: #fcfbf9;
    padding: 20px 24px;
    color: #777;
    font-size: 14px;
    line-height: 1.7
}

.help-box {
    background: var(--gold-50);
    border: 1px solid rgba(236,220,207,.7);
    border-radius: 22px;
    padding: 24px
}

.help-box a {
    color: var(--gold-700);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px
}

.footer {
    background: var(--charcoal-950);
    color: #aaa;
    padding: 64px 0;
    border-top: 1px solid rgba(181,150,112,.1)
}

.footer-brand {
    display: block;
    color: white;
    margin-bottom: 18px;
    font-size: 18px
}

.footer p,.footer li {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7
}

.footer h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 16px
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer li {
    margin-bottom: 9px
}

.footer a:hover {
    color: var(--gold-500)
}

.site-guarantee {
    display: flex;
    gap: 8px;
    color: white;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-top: 24px
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    margin-top: 48px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    color: #777;
    flex-wrap: wrap
}

.footer-bottom a {
    margin-right: 16px
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #25d366;
    color: #fff!important;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: currentColor
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: #fff!important;
    transform: scale(1.08);
    box-shadow: 0 14px 34px rgba(0,0,0,.3)
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37,211,102,.35);
    outline-offset: 4px
}

@media(max-width: 991px) {
    .section {
        padding:72px 0
    }

    .hero-ctas {
        grid-template-columns: 1fr
    }

    .hero-section {
        padding-top: 110px
    }

    .suite-card {
        padding: 20px
    }

    .suite-detail {
        padding: 10px 0
    }

    .specs {
        grid-template-columns: 1fr
    }

    .gallery-item {
        width: 300px
    }

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

    .check-grid {
        grid-template-columns: 1fr
    }

    .wizard {
        padding: 28px
    }
.footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width: 575px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px
    }


    .hero-title {
        font-size:42px
    }

    .hero-pill {
        font-size: 9px;
        letter-spacing: .16em
    }

    .gallery-item {
        width: 280px
    }

    .visual-break {
        height: 60vh
    }

    .brand {
        font-size: 14px
    }

    .steps small,.steps i {
        display: none
    }

    .review-filters {
        border-radius: 18px
    }

    .hero-badges {
        margin-top: 44px
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, .85), rgba(0, 0, 0, .65));
    z-index: 1;
    opacity: .5;
}


.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: 270px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .brand-logo {
        height: 40px;
        max-width: 170px;
    }
}

.nav-whatsapp {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    transition: .25s ease;
}

.nav-whatsapp svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.nav-whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
    transform: scale(1.08);
}

.site-header.scrolled .nav-whatsapp {
    color: var(--charcoal-950);
    border-color: rgba(25,20,17,.25);
}

.site-header.scrolled .nav-whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
}