:root {
    --deep: #0a1628;
    --navy: #0d2240;
    --ocean: #1a4a7a;
    --mid: #2d7dd2;
    --light: #89c4f4;
    --pale: #d4eaf7;
    --foam: #f0f8ff;
    --white: #fff;
    --accent: #4db8c8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--deep);
    background: var(--white);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.5rem 1.3rem;
    border-radius: 1px;
}

.nav-cta:hover {
    background: var(--mid) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
    transition: all 0.3s;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #061020 0%, #0a2a55 40%, #1565a0 70%, #2899c0 100%);
}

.stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1.5px 1.5px at 12% 8%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 42% 5%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(1px 1px at 72% 12%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 88% 7%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(1px 1px at 28% 18%, rgba(255, 255, 255, 0.4) 0%, transparent 100%), radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.hero-photo {
    position: absolute;
    inset: 0;
    background: url('https://location.archipelevasion.com/en/rentals/fotos/2/16302702129282fea0f9b8911e6e2567dca10e93eb/huge163027021405ac2e6127a94001a3282a4039da61a6.jpg') center/cover no-repeat;
    opacity: 0.42;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 16, 32, 0.95) 0%, rgba(6, 16, 32, 0.35) 55%, rgba(6, 16, 32, 0.15) 100%);
}

.wave-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23f0f8ff' fill-opacity='0.06' d='M0,128L60,117C120,107,240,85,360,91C480,96,600,128,720,123C840,117,960,75,1080,64C1200,53,1320,75,1380,85L1440,96L1440,200L0,200Z'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 50% 100%;
    animation: wave 9s linear infinite;
}

.wave2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23f0f8ff' fill-opacity='0.04' d='M0,160L80,149C160,139,320,117,480,128C640,139,800,181,960,176C1120,171,1280,117,1360,91L1440,64L1440,200L0,200Z'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 60% 100%;
    animation: wave 14s linear infinite reverse;
}

@keyframes wave {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(7px)
    }
}

@keyframes pulse-grey {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(77, 210, 150, 0.4)
    }

    70% {
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(77, 210, 150, 0)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 7rem;
    max-width: 680px;
    animation: fadeUp 1.1s ease both;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1.2rem;
}

.hero-title em {
    font-style: italic;
    color: #c8e8f8;
}

.hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 300;
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 1.8rem;
}

.hero-badges {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.badge {
    background: rgba(77, 184, 200, 0.14);
    border: 1px solid rgba(77, 184, 200, 0.32);
    color: var(--accent);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--mid);
    transform: translateY(-1px);
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: #fff;
    border-color: #fff;
}

.hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 7rem;
    display: flex;
    gap: 2.5rem;
    z-index: 2;
    animation: fadeUp 1.3s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.3rem;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2.2s ease infinite;
}

.scroll-hint::after {
    content: '';
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
}

.section-label {
    font-size: 0.66rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 300;
    line-height: 1.18;
    margin-bottom: 1.2rem;
}

.section-title em {
    font-style: italic;
    color: var(--ocean);
}

.section-body {
    font-size: 0.93rem;
    line-height: 1.88;
    color: #4a5568;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.about-visual {
    position: relative;
    overflow: hidden;
    background: var(--deep);
}

.about-photo-main {
    position: absolute;
    inset: 0;
    background: url('https://location.archipelevasion.com/en/rentals/fotos/2/16302702129282fea0f9b8911e6e2567dca10e93eb/huge16302702152622fd168e2bca3e3244a780fcea420c.jpg') center/cover;
    transition: transform 0.6s ease;
}

.about-visual:hover .about-photo-main {
    transform: scale(1.04);
}

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.3) 0%, transparent 100%);
}

.about-rating {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rating-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

.rating-info {
    flex: 1;
    padding-left: 1rem;
}

.rating-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.rating-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.rating-source {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    align-self: flex-end;
}

.about-text {
    padding: 5.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--foam);
}

.about-text .section-title {
    color: var(--deep);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid var(--pale);
    transition: border-color 0.2s;
}

.feature:hover {
    border-color: var(--accent);
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--ocean);
    line-height: 1;
}

.feature-label {
    font-size: 0.66rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.specs-strip {
    background: var(--deep);
    padding: 2rem 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-item {
    flex: 1;
    min-width: 150px;
    padding: 1.2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.spec-item:last-child {
    border-right: none;
}

.spec-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
}

.spec-key {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.cal-legend {
    display: flex;
    gap: 2.4rem;
    margin-top: 1.2rem;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    align-items: center;
}

.cal-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cal-legend .leg-label {
    display: inline-block;
    white-space: nowrap;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.gallery-item:first-child {
    grid-row: 1/3;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 22, 40, 0.35));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery {
    padding: 5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item:first-child img {
    height: 100%;
    max-height: none;
}

.amenities {
    padding: 6rem 4rem;
    background: var(--deep);
    text-align: center;
}

.amenities .section-title {
    color: #fff;
}

.amenities .section-body {
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
    margin: 0 auto 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 1050px;
    margin: 0 auto;
}

.amenity-item {
    padding: 2.2rem 1.2rem;
    background: var(--deep);
    transition: background 0.3s;
}

.amenity-item:hover {
    background: var(--navy);
}

.amenity-emoji {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.amenity-name {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.rules-strip {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

.rule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rates {
    padding: 6rem 4rem;
    background: #fff;
}

.rates-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 920px;
    margin: 0 auto 2rem;
    background: var(--pale);
    border: 1px solid var(--pale);
}

.rate-card {
    padding: 2.5rem 2rem;
    background: #fff;
    text-align: center;
    transition: background 0.3s;
}

.rate-card.featured {
    background: var(--ocean);
}

.rate-season {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.rate-card.featured .rate-season {
    color: #a8d8f0;
}

.rate-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--deep);
}

.rate-card.featured .rate-name {
    color: #fff;
}

.rate-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--ocean);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.rate-card.featured .rate-price {
    color: #c8e8f8;
}

.rate-unit {
    font-size: 0.68rem;
    color: #aaa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.rate-card.featured .rate-unit {
    color: rgba(255, 255, 255, 0.45);
}

.rate-details {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
}

.rate-card.featured .rate-details {
    color: rgba(255, 255, 255, 0.65);
}

.rate-months {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.8rem;
    font-style: italic;
}

.rate-card.featured .rate-months {
    color: rgba(255, 255, 255, 0.4);
}

.deposit-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
}

.deposit-note strong {
    color: var(--ocean);
}

.booking {
    padding: 5.5rem 4rem;
    background: linear-gradient(150deg, var(--deep), #0c2a50);
}

.booking-inner {
    max-width: 880px;
    margin: 0 auto;
}

.booking .section-title {
    color: #fff;
}

.booking .section-body {
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2.5rem;
}

.ical-bar {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

#ical-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #888;
    flex-shrink: 0;
    animation: pulse-grey 1.5s ease infinite;
}

#ical-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 94vw;
    max-height: 94vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.5rem;
    cursor: pointer;
}

.lightbox-close {
    right: 12px;
    top: 12px;
    transform: none;
    border-radius: 6px;
}

.lightbox-nav {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-counter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-grid .gallery-item img {
    cursor: zoom-in;
}

.cal-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-legend {
    display: flex;
    gap: 2.4rem;
    margin-top: 1.2rem;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    align-items: center;
}

/* Legend responsiveness: ensure legend is full-width and wraps under the calendars */
.cal-legend span {
    white-space: normal;
    /* allow items to shrink and wrap onto multiple lines when needed */
    flex: 0 1 160px;
}

.cal-legend {
    justify-content: flex-start;
}

#cal-month-labels {
    display: flex;
    gap: 3rem;
}

#calendars {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cal-legend {
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 0.6rem;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 30;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive fixes for booking/calendar to prevent layout overlap on narrow screens */
@media (max-width: 760px) {
    .booking-inner {
        padding: 0 1rem;
    }

    .cal-wrap {
        padding: 1rem;
    }

    /* Stack month labels above each calendar when narrow */
    #cal-month-labels {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }

    #calendars {
        flex-direction: column;
        gap: 1.2rem;
    }

    /* Ensure calendar month containers can shrink without overlapping */
    #calendars>div {
        width: 100%;
        box-sizing: border-box;
    }

    .cal-nav {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }

    /* Make price row stack vertically when space is limited */
    .price-row {
        flex-direction: column;
        align-items: stretch;
    }

    #price-total {
        text-align: left;
    }

    /* Reduce calendar cell min height to avoid overflow */
    .cal-wrap div[style*="min-height"] {
        min-height: 32px !important;
    }

    /* Make legend take full width and shrink items on small screens */
    .cal-legend {
        margin-top: 1.2rem;
        font-size: 0.62rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .cal-legend span {
        flex: 0 1 120px;
    }
}

.cal-legend span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.leg-dot {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 2px;
}

#unavail-banner {
    display: none;
    background: rgba(210, 60, 60, 0.14);
    border: 1px solid rgba(210, 60, 60, 0.4);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #f87;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.04em;
}

#price-summary {
    display: none;
    background: rgba(77, 184, 200, 0.09);
    border: 1px solid rgba(77, 184, 200, 0.3);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

#date-summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 300;
}

#nights-summary {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.2rem;
}

#price-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    line-height: 1;
}

#price-breakdown {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.3rem;
}

#price-warning {
    font-size: 0.75rem;
    color: rgba(255, 210, 100, 0.85);
    margin-top: 0.8rem;
    display: none;
}

#contact-form {
    display: none;
}

#select-prompt {
    text-align: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.83rem;
    padding: 1.2rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    text-align: left;
    margin-bottom: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group.full {
    grid-column: 1/-1;
}

label {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
}

select {
    appearance: none;
    cursor: pointer;
}

select option {
    background: var(--deep);
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.reviews {
    padding: 6rem 4rem;
    background: var(--foam);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 2.2rem;
    border-left: 3px solid var(--accent);
    border-top: 1px solid var(--pale);
    border-right: 1px solid var(--pale);
    border-bottom: 1px solid var(--pale);
}

.review-stars {
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--deep);
    line-height: 1.72;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.72rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-source {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
}

.attractions {
    padding: 6rem 4rem;
    background: var(--deep);
}

.attractions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.attractions-header .section-title {
    color: #fff;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.att-card {
    overflow: hidden;
}

.att-visual {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--ocean), var(--mid));
}

.att-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.att-card:hover .att-visual img {
    transform: scale(1.08);
}

.att-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 22, 40, 0.7));
}

.att-info {
    background: var(--navy);
    padding: 1.4rem;
    border-top: 2px solid var(--accent);
}

.att-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.att-dist {
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.att-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.contact {
    padding: 5rem 4rem;
    background: #fff;
    text-align: center;
}

.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--ocean);
    text-decoration: none;
    border-bottom: 1px solid var(--pale);
    padding-bottom: 3px;
    transition: border-color 0.2s;
    display: block;
    margin: 1.5rem auto;
}

.contact-email:hover {
    border-color: var(--accent);
}

.contact-meta {
    font-size: 0.82rem;
    color: #aaa;
    margin-top: 0.5rem;
    line-height: 1.9;
}

.contact-meta strong {
    color: var(--ocean);
}

.map-section {
    height: 340px;
    position: relative;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.6) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.8rem;
    text-align: center;
    white-space: nowrap;
}

.map-overlay p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-overlay strong {
    color: var(--accent);
}

footer {
    background: var(--deep);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.18);
}

@media(max-width:900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        padding: 0 1.5rem 5rem;
    }

    .hero-stats {
        position: static;
        right: auto;
        bottom: auto;
        gap: 1.5rem;
        margin: 1.2rem auto 0;
        justify-content: center;
    }

    .stat-num {
        font-size: 1.7rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 320px;
    }

    .about-text {
        padding: 3rem 1.5rem;
    }

    .specs-strip {
        padding: 1rem 1.5rem;
    }

    .spec-item {
        padding: 0.8rem;
        min-width: 130px;
    }

    .gallery {
        padding: 4rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 0.6rem;
        align-items: stretch;
        margin: 0 auto;
    }

    .gallery-item {
        height: 100%;
        min-height: 0;
        overflow: hidden;
    }

    .gallery-item:first-child {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: 100%;
    }

    /* Ensure the first image fills its grid area */
    .gallery-item:first-child img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: none;
    }

    /* Make other items fit their cells */
    .gallery-grid .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .amenities,
    .rates,
    .booking,
    .reviews,
    .attractions,
    .contact {
        padding: 4rem 1.5rem;
    }

    .rates-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .attractions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .attractions-grid .att-card:last-child:nth-child(odd) {
        grid-column: 1/-1;
    }

    footer {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    #cal-month-labels {
        gap: 1rem;
    }

    #calendars {
        gap: 1.5rem;
    }
}

/* Responsive gallery adjustments */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        height: auto;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-grid .gallery-item img {
        height: auto;
        max-height: 420px;
    }
}