/* Base */
:root {
    --color-primary: #1b5f6b;
    --color-primary-dark: #0f3a40;
    --color-accent: #e7c675;
    --color-background: #f7f8fa;
    --color-text: #253036;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    padding: 0 1.5rem 3rem;
}

main.front-page {
    padding: 0;
    overflow: hidden;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(27, 95, 107, 0.92), rgba(11, 52, 60, 0.95)), url('https://images.unsplash.com/photo-1501117716987-c8e1ecb21073?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: #fff;
    position: relative;
    padding: 1.5rem;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.is-scrolled .site-header {
    padding: 0.75rem 1.5rem;
    background: rgba(27, 95, 107, 0.95);
    backdrop-filter: blur(10px);
    transition: padding 0.3s ease, background 0.3s ease;
}

.site-header__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-description {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-navigation {
    width: 100%;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu .current-menu-item > a::after {
    transform: scaleX(1);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: clamp(520px, 80vh, 720px);
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    color: #fff;
    --hero-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80');
}

.hero-section__media,
.hero-section__overlay {
    position: absolute;
    inset: 0;
}

.hero-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-image) center/cover;
    filter: brightness(0.45);
    z-index: 1;
}

.hero-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.hero-section__overlay {
    background: linear-gradient(90deg, rgba(15, 58, 64, 0.82) 0%, rgba(15, 58, 64, 0.35) 50%, rgba(27, 95, 107, 0.6) 100%);
    z-index: 2;
}

.hero-section__content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    padding: 0 2rem;
    text-align: center;
    display: grid;
    gap: 1.35rem;
}

.hero-section__eyebrow {
    letter-spacing: 0.36em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    margin: 0;
}

.hero-section p {
    margin: 0 auto 0;
    max-width: 620px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-section__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-section__primary {
    background: var(--color-accent);
    color: var(--color-text);
}

.hero-section__primary:hover,
.hero-section__primary:focus-visible {
    background: #f0d897;
    color: var(--color-primary-dark);
}

.front-page .hero {
    margin: 0;
}
.hero {
    max-width: 960px;
    margin: 3rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 22px 45px -22px rgba(15, 58, 64, 0.45);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero p {
    margin: 0 auto;
    max-width: 580px;
    font-size: 1.05rem;
}

.button {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover,
.button:focus-visible {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.button--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.button--light {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 20px 40px -28px rgba(255, 255, 255, 0.55);
}

.button--light:hover,
.button--light:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
}

.button--outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(27, 95, 107, 0.4);
}

.button--outline:hover,
.button--outline:focus-visible {
    background: rgba(27, 95, 107, 0.08);
    color: var(--color-primary-dark);
}

.cta-link {
    text-align: center;
    margin-top: 2.5rem;
}

/* Highlights */
.highlights {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 6rem) auto;
    text-align: center;
    padding: 0 1.25rem;
}

.highlights h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 2.5rem;
}

.highlights__grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 22px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 28px 60px -35px rgba(15, 58, 64, 0.35);
    display: grid;
    gap: 1rem;
}

.highlight-card__icon {
    font-size: 2.1rem;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    margin: 0;
}

.highlight-card p {
    margin: 0;
    color: rgba(37, 48, 54, 0.76);
}

/* Featured suite */
.featured-suite {
    max-width: 1100px;
    margin: clamp(3rem, 6vw, 5.5rem) auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 75px -48px rgba(15, 58, 64, 0.48);
}

.featured-suite__content {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: grid;
    gap: 1.25rem;
}

.featured-suite__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.76rem;
    color: var(--color-primary);
}

.featured-suite h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin: 0;
}

.featured-suite p {
    margin: 0;
    color: rgba(37, 48, 54, 0.8);
}

.featured-suite__bullet {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    font-weight: 600;
}

.featured-suite__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-suite__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Suites carousel */
.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.section-heading p {
    margin: 0;
    color: rgba(37, 48, 54, 0.72);
}

.suites-showcase {
    margin: clamp(3rem, 8vw, 6rem) auto;
    max-width: 1200px;
    padding: 0 1.25rem;
}

.suites-showcase__carousel {
    position: relative;
}

.carousel__viewport {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 32px 68px -40px rgba(15, 58, 64, 0.45);
}

.carousel__track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel__slide {
    min-width: min(360px, 85vw);
    padding: 1.25rem;
}

.carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 95, 107, 0.75);
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel__control:hover,
.carousel__control:focus-visible {
    background: rgba(27, 95, 107, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.carousel__control--prev {
    left: 1rem;
}

.carousel__control--next {
    right: 1rem;
}

@media (max-width: 768px) {
    .carousel__control {
        display: none;
    }
}

/* Experiences */
.experiences {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 6rem) auto;
    padding: 0 1.25rem;
}

.experiences__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.experience-card {
    background: #fff;
    padding: 2rem 1.75rem;
    border-radius: 22px;
    box-shadow: 0 26px 65px -40px rgba(15, 58, 64, 0.45);
    display: grid;
    gap: 0.8rem;
}

.experience-card h3 {
    font-family: var(--font-heading);
    margin: 0;
}

.experience-card p {
    margin: 0;
    color: rgba(37, 48, 54, 0.7);
}

/* Gallery */
.gallery {
    max-width: 1200px;
    margin: clamp(3rem, 8vw, 6rem) auto;
    padding: 0 1.25rem;
}

.gallery__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
}

.gallery__empty {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.05rem;
    color: rgba(37, 48, 54, 0.7);
}

.gallery__item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 55px -38px rgba(15, 58, 64, 0.35);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery__item:hover img,
.gallery__item:focus-within img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 3;
}

.gallery__item--tall {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 900px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 140px;
    }

    .gallery__item--wide {
        grid-column: span 4;
    }

    .gallery__item--tall {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }

    .gallery__item--wide,
    .gallery__item--tall {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Testimonials */
.testimonials {
    padding: clamp(3rem, 8vw, 6rem) 1.25rem;
    background: linear-gradient(135deg, rgba(27, 95, 107, 0.08), rgba(15, 58, 64, 0.12));
}

.testimonials__slider {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.testimonial {
    background: #fff;
    padding: 2.25rem;
    border-radius: 24px;
    box-shadow: 0 24px 65px -38px rgba(15, 58, 64, 0.4);
}

.testimonial blockquote {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial figcaption {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* CTA */
.cta-banner {
    max-width: 1100px;
    margin: clamp(3rem, 8vw, 6rem) auto;
    padding: clamp(2.5rem, 6vw, 3.75rem);
    background: linear-gradient(135deg, rgba(27, 95, 107, 0.92), rgba(11, 52, 60, 0.9));
    color: #fff;
    border-radius: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 35px 70px -40px rgba(15, 58, 64, 0.58);
}

.cta-banner__content {
    max-width: 580px;
}

.cta-banner__content h2 {
    font-family: var(--font-heading);
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-banner__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.booking-channels {
    max-width: 1100px;
    margin: clamp(2rem, 6vw, 4.5rem) auto;
    padding: 0 1.25rem;
}

.booking-channels__inner {
    background: #fff;
    border-radius: 24px;
    padding: clamp(2.25rem, 6vw, 3.5rem);
    box-shadow: 0 28px 60px -42px rgba(15, 58, 64, 0.4);
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.booking-channels__inner h2 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: clamp(1.9rem, 3.8vw, 2.4rem);
}

.booking-channels__inner p {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(37, 48, 54, 0.72);
}

.booking-channels__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.booking-channels__list a {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(27, 95, 107, 0.18);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.booking-channels__list a:hover,
.booking-channels__list a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 16px 30px -20px rgba(27, 95, 107, 0.4);
}

/* Location */
.location {
    max-width: 1100px;
    margin: clamp(3rem, 7vw, 6rem) auto;
    padding: 0 1.25rem;
}

.location__map {
    margin-top: 2rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px -45px rgba(15, 58, 64, 0.5);
}

.location__map iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* Contact strip */
.contact-strip {
    max-width: 1100px;
    margin: clamp(2.5rem, 6vw, 4.5rem) auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 60px -40px rgba(15, 58, 64, 0.4);
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.contact-strip__label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(37, 48, 54, 0.55);
    margin-bottom: 0.4rem;
}

.contact-strip a {
    font-weight: 700;
    color: var(--color-primary);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Suites */
.suites-overview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 2rem;
}

.suites-overview h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.suites-intro {
    max-width: 720px;
    margin: 0 auto 1.75rem;
    text-align: center;
    color: rgba(37, 48, 54, 0.75);
    line-height: 1.6;
    font-size: 1rem;
}

.suites-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.suite-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px -30px rgba(27, 95, 107, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 100%;
}

.suite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 60px -32px rgba(15, 58, 64, 0.55);
}

.suite-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.suite-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.suite-card__image--placeholder {
    filter: saturate(90%) brightness(0.92);
}

.suite-card:hover .suite-card__image {
    transform: scale(1.05);
}

.suite-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suite-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0;
}

.suite-card__title a {
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.suite-card__title a:hover,
.suite-card__title a:focus-visible {
    border-color: var(--color-accent);
}

.suite-card__excerpt {
    color: rgba(37, 48, 54, 0.75);
    font-size: 0.98rem;
}

.suite-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.suite-card__meta strong {
    color: var(--color-primary);
    font-weight: 700;
}

.suite-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.suite-card__read-more {
    font-weight: 600;
    letter-spacing: 0.04em;
}

.suite-card__book {
    background: var(--color-accent);
    color: #1a1a1a;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.suite-card__book:hover,
.suite-card__book:focus-visible {
    transform: translateY(-2px);
}

.suite-card__thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suite-card__thumbnails img {
    width: 76px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 16px 30px -22px rgba(15, 58, 64, 0.55);
    cursor: pointer;
}

.suite-card--fallback {
    padding: 2rem;
    text-align: center;
}

.suite-card__image[data-suite-image] {
    cursor: pointer;
}

.suite-card__actions {
    justify-content: flex-start;
}

.suite-card__view {
    border: 1px solid rgba(27, 95, 107, 0.25);
    background: #fff;
    color: var(--color-primary);
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.suite-card__view:hover,
.suite-card__view:focus-visible {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 18px 40px -30px rgba(27, 95, 107, 0.6);
}

.suite-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.suite-lightbox[hidden] {
    display: none;
}

.suite-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 24, 0.72);
}

.suite-lightbox__dialog {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    max-width: min(90vw, 880px);
    width: 100%;
    box-shadow: 0 40px 80px -45px rgba(0, 0, 0, 0.6);
    display: grid;
    gap: 1rem;
}

.suite-lightbox__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    color: rgba(18, 34, 42, 0.75);
}

.suite-lightbox__image {
    width: 100%;
    max-height: clamp(300px, 70vh, 520px);
    object-fit: contain;
    border-radius: 12px;
    background: rgba(240, 244, 246, 0.9);
}

.suite-lightbox__caption {
    font-weight: 600;
    color: rgba(18, 34, 42, 0.85);
}

.suite-lightbox__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.suite-lightbox__nav {
    border: none;
    background: var(--color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suite-lightbox__nav:hover,
.suite-lightbox__nav:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -24px rgba(27, 95, 107, 0.7);
}

.suite-lightbox__counter {
    font-weight: 600;
    color: rgba(18, 34, 42, 0.7);
}

/* Single suite */
.single-suite {
    max-width: 1100px;
    margin: 3rem auto 4rem;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 45px 70px -48px rgba(15, 58, 64, 0.6);
}

.single-suite__hero {
    position: relative;
    background: linear-gradient(135deg, rgba(27, 95, 107, 0.95), rgba(15, 58, 64, 0.98));
    color: #fff;
}

.single-suite__hero img {
    width: 100%;
    height: clamp(280px, 55vh, 440px);
    object-fit: cover;
    display: block;
}

.single-suite__hero-content {
    padding: 2rem 2.5rem;
}

.single-suite__hero--has-image .single-suite__hero-content {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 85%);
}

.single-suite__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin-bottom: 0.5rem;
}

.single-suite__price {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.single-suite__price span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-left: 0.5rem;
}

.single-suite__content {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 2.5rem;
    padding: 3rem;
}

.single-suite__details {
    background: rgba(27, 95, 107, 0.06);
    border-radius: 18px;
    padding: 1.75rem;
}

.single-suite__meta {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

.single-suite__amenities {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.single-suite__amenities li::before {
    content: "•";
    color: var(--color-accent);
    margin-right: 0.5rem;
}

.single-suite__description {
    padding: 2rem 2.5rem 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(37, 48, 54, 0.85);
}

.single-suite__gallery {
    padding: 0 2.5rem 2.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.single-suite__gallery-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px -28px rgba(15, 58, 64, 0.45);
}

.single-suite__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-suite__footer {
    padding: 0 3rem 3rem;
}

@media (max-width: 992px) {
    .single-suite__content {
        grid-template-columns: 1fr;
    }

    .single-suite__hero--has-image .single-suite__hero-content {
        position: static;
        background: linear-gradient(180deg, rgba(27, 95, 107, 0.9) 0%, rgba(27, 95, 107, 0.95) 100%);
    }
}

/* Page template */
.suites-container {
    max-width: 1100px;
    margin: 2.5rem auto 4rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 42px 65px -45px rgba(15, 58, 64, 0.55);
}

.suites-container h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: #10181b;
    color: rgba(255, 255, 255, 0.82);
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
}

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.site-footer__credit {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    main {
        padding: 0 1rem 2rem;
    }

    .hero {
        margin: 2rem auto;
        padding: 2.5rem 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
    }

    .hero-section__content {
        padding: 0 1.5rem;
    }

    .carousel__slide {
        padding: 1rem 0.5rem;
    }

    .featured-suite {
        border-radius: 22px;
    }

    .featured-suite__content,
    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .suites-container {
        padding: 2rem 1.5rem;
    }

    .suite-card__content {
        padding: 1.5rem;
    }

    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .location__map iframe {
        height: 320px;
    }
}