/* ============================================================
   CLEMENTINE HOUSE — STYLESHEET
   ============================================================ */

:root {
    --gold:        #C4963F;
    --gold-light:  #E2C07A;
    --gold-dark:   #A07830;
    --cream:       #FAF6F1;
    --cream-dark:  #F0E8DC;
    --dark:        #1A1A1A;
    --dark-mid:    #2D2D2D;
    --text:        #3A3A3A;
    --text-light:  #7A7A7A;
    --white:       #FFFFFF;
    --border:      #E8DDD0;

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Lato', system-ui, sans-serif;

    --nav-h:       72px;
    --max-w:       1200px;
    --section-pad: clamp(4rem, 8vw, 7rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: var(--section-pad) 0; }
.section__eyebrow { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section__eyebrow--light { color: var(--gold-light); }
.section__title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--dark); margin-bottom: 2.5rem; line-height: 1.15; }
.section__title--light { color: var(--white); }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; transition: all 0.2s ease; }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(196,150,63,0.35); }
.btn--full { width: 100%; justify-content: center; }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav__logo { display: flex; align-items: center; overflow: hidden; }
.nav__logo-img { height: 50px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav__link {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav__link:hover { color: var(--gold-light); }
.nav__cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.2s;
}
.nav__cta:hover { background: var(--gold-dark); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 101;
}
.nav__toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.45) 60%, rgba(20,15,10,0.65) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--nav-h) 1.5rem 2rem;
    max-width: 780px;
}
.hero__location {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero__tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}
.hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.pill {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    z-index: 2;
    animation: bounce 2s infinite;
}
.hero__scroll:hover { color: var(--white); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Stays ── */
.stays { background: var(--cream); }

.stays__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stays__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.stays__card-icon {
    width: 60px;
    height: 60px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.stays__card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.stays__card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.stays__card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stays__card ul li {
    font-size: 0.875rem;
    color: var(--text);
    padding-left: 1.25rem;
    position: relative;
}

.stays__card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

@media (max-width: 768px) {
    .stays__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--gold);
    padding: 1rem 0;
}
.stats-bar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
}
.stats-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.stats-bar__item svg { opacity: 0.8; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.about__text p {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}
.about__lead {
    font-size: 1.15rem !important;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--dark) !important;
}
.about__hosts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.about__hosts-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.about__hosts-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); }
.about__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}
.about__img { overflow: hidden; border-radius: 2px; }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about__img:hover img { transform: scale(1.03); }
.about__img--main { grid-column: 1 / -1; aspect-ratio: 16/9; }
.about__img--a, .about__img--b { aspect-ratio: 4/3; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { background: var(--white); }
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.amenity-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 2px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.amenity-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.amenity-card__icon { color: var(--gold); margin-bottom: 1rem; }
.amenity-card h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 1rem; }
.amenity-card ul { list-style: none; }
.amenity-card li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.amenity-card li:last-child { border-bottom: none; }
.amenity-card li::before { content: '—'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-section > .container { padding-bottom: 2rem; }
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}
.gallery-filter {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-light);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}
.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 2rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(26,26,26,0.45); }
.gallery-item__overlay svg { opacity: 0; transition: opacity 0.3s; transform: scale(0.8); }
.gallery-item:hover .gallery-item__overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__inner { max-width: 90vw; max-height: 90vh; }
.lightbox__inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox__close {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    z-index: 201;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    z-index: 201;
    opacity: 0.6;
    padding: 1rem;
    transition: opacity 0.2s;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--white); }
.location__block { margin-bottom: 2.5rem; }
.location__map + .location__block { margin-top: 2rem; margin-bottom: 0; }
.location__block h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.location__transport { display: flex; flex-direction: column; gap: 1.25rem; }
.location__transport-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.location__transport-icon { flex-shrink: 0; width: 38px; height: 38px; background: var(--cream-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-top: 0.1rem; }
.location__transport-item > div > strong { display: block; font-size: 0.875rem; color: var(--dark); margin-bottom: 0.2rem; }
.location__transport-item p { font-size: 0.875rem; color: var(--text); }
.location__transport-item a { color: var(--gold); }

.nearby-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 2.5rem 0 0.75rem; }
.nearby-category:first-of-type { margin-top: 0; }
.location__nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.25rem; }
.location__nearby-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 2px;
    border: 1px solid var(--border);
}
.nearby-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.location__nearby-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.location__nearby-item span { font-size: 0.875rem; color: var(--text-light); }
.location__nearby-item a { color: var(--gold); }

.location__map {
    border-radius: 2px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--border);
}
.location__map iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   ENQUIRE
   ============================================================ */
.enquire { background: var(--dark); }
.enquire__sub {
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}
.enquire__grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }

.enquire__form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group--full { grid-column: 1 / -1; }
.form__group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}
.form__group select option { color: var(--dark); background: var(--white); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.09);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.4); cursor: pointer; }
.form__group textarea { resize: vertical; min-height: 100px; }
.form__checkbox { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.form__checkbox input { width: auto; -webkit-appearance: checkbox; appearance: checkbox; padding: 0; border: none; background: none; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.form__checkbox span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
    min-height: 300px;
}
.form__success svg { stroke: var(--gold); }
.form__success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); }
.form__success p { color: rgba(255,255,255,0.6); }
.form__error { color: #e07070; font-size: 0.875rem; margin-top: 0.5rem; }

.enquire__contact {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 2rem;
}
.enquire__contact h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.enquire__contact > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, background 0.2s;
}
.contact-link:hover { border-color: var(--gold); background: rgba(196,150,63,0.1); }
.contact-link--whatsapp { color: #25D366; border-color: rgba(37,211,102,0.3); }
.contact-link--whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.1); }

.enquire__rules { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.enquire__rules h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.enquire__rules li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.enquire__rules li:last-child { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0F0F0F; padding: 3rem 0 1.5rem; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; }
.footer__address { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer__heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a, .footer__contact a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }
.footer__contact p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer__note { font-size: 0.75rem !important; color: rgba(255,255,255,0.25) !important; margin-top: 0.75rem !important; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__images { order: -1; }
    .about__img--main { aspect-ratio: 16/7; }
    .location__map { height: 350px; }
    .enquire__grid { grid-template-columns: 1fr; }
    .enquire__contact { order: -1; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .nav__inner { position: relative; justify-content: flex-end; }
    .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav__logo-img { height: 57px; max-width: 160px; }
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .nav__links.open { transform: translateX(0); }
    .nav__link { font-size: 1rem; }
    .nav__cta { padding: 0.75rem 2rem; }
    .about__images { grid-template-columns: 1fr 1fr; }
    .about__img--main { grid-column: 1 / -1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .location__nearby-grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .stats-bar__inner { gap: 0.4rem 1.25rem; }
    .reviews__grid { grid-template-columns: 1fr; }
    .reviews__platforms { flex-direction: column; gap: 1rem; }
    .review-card { min-width: 0; }
}

@media (max-width: 480px) {
    .hero__pills { gap: 0.35rem; }
    .pill { font-size: 0.65rem; padding: 0.3rem 0.65rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities__grid { grid-template-columns: 1fr; }
}

/* ── Availability Calendar ── */
.availability { background: var(--white); }

.availability__intro {
    max-width: 560px;
    color: var(--text-light);
    font-size: 0.925rem;
    margin-bottom: 2.5rem;
}

.cal-loading, .cal-error {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.cal-error a { color: var(--gold); }

.cal-nav {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cal-nav__btn {
    flex-shrink: 0;
    margin-top: 2.5rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: border-color 0.2s, color 0.2s;
}

.cal-nav__btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }

.cal-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    flex: 1;
}

.cal-month__heading {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 4px;
}

.cal-cell--header {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    aspect-ratio: unset;
    padding-bottom: 0.35rem;
}

.cal-cell--empty { background: none; }

.cal-cell--past {
    color: var(--border);
    background: none;
}

.cal-cell--today {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
    font-weight: 700;
    color: var(--gold);
    background: none;
}

.cal-cell--available {
    background: var(--cream);
    color: var(--text);
}

.cal-cell--booked {
    background: var(--dark-mid);
    color: rgba(255,255,255,0.4);
}

.cal-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cal-legend__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.cal-legend__item::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cal-legend__item--available::before { background: var(--cream); border: 1px solid var(--border); }
.cal-legend__item--booked::before    { background: var(--dark-mid); }
.cal-legend__item--past::before      { background: none; border: 1px solid var(--border); }

@media (max-width: 640px) {
    .cal-months { grid-template-columns: 1fr; gap: 1.5rem; }
    .cal-nav { gap: 0.5rem; }
    .cal-nav__btn { margin-top: 2rem; }
}

/* ── Reviews ── */
.reviews { background: var(--cream); }

.reviews__platforms {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.reviews__platform-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.75rem;
}

.reviews__score {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.reviews__platform-info {
    display: flex;
    flex-direction: column;
}

.reviews__platform-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.reviews__platform-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card__stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    flex: 1;
}

.review-card__author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: auto;
}

.review-card__author span {
    font-weight: 400;
    color: var(--text-light);
}
