:root {
    --palm: #2d5016;
    --palm-light: #4a7a28;
    --ocean: #1b6ca8;
    --ocean-soft: #a8d4f0;
    --lagoon: #48b8a0;
    --lagoon-light: #d0f0ea;
    --sand: #e8dcc8;
    --sand-light: #f7f2ea;
    --sand-warm: #d4c4a8;
    --coral: #e07850;
    --coral-soft: #f0a888;
    --white: #fffdf8;
    --ivory: #faf6ef;
    --text: #2a2520;
    --text-mid: #5a5048;
    --text-soft: #8a8078;
    --gold: #c8a050;
    --gold-light: #e8d090;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255,253,248,0.92);
    backdrop-filter: blur(25px);
    padding: 0.8rem 3rem;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-logo-light { color: var(--white); }
nav.scrolled .nav-logo { color: var(--text); }

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    opacity: 0.7;
}

.nav-links a.light { color: var(--white); opacity: 0.8; }
nav.scrolled .nav-links a { color: var(--text); opacity: 0.7; }
.nav-links a:hover { opacity: 1; }

.nav-cta {
    padding: 0.6rem 1.8rem;
    background: var(--coral);
    color: white !important;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1 !important;
    transition: all 0.3s;
}

.nav-cta:hover { background: #c86840; transform: translateY(-1px); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-burger span {
    width: 26px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
}

.nav-burger.light span { background: white; }
nav.scrolled .nav-burger span { background: var(--text); }

/* ===== HERO — EDITORIAL SPLIT ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 4rem;
    background: var(--ivory);
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--sand-warm), transparent);
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: slideRight 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--coral);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--text);
    opacity: 0;
    animation: slideUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--palm);
    font-weight: 400;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.7s forwards;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.9s forwards;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-meta-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text);
}

.hero-meta-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: slideUp 0.8s ease 1.1s forwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-coral {
    background: var(--coral);
    color: white;
}

.btn-coral:hover {
    background: #c86840;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224,120,80,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--sand-warm);
    padding: 0.95rem 2.4rem;
}

.btn-ghost:hover {
    border-color: var(--text);
    background: var(--sand-light);
}

.hero-right {
    position: relative;
    background: linear-gradient(145deg, var(--palm), #1a3a0e);
    overflow: hidden;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    gap: 1rem;
    font-size: 0.9rem;
}

.hero-image-placeholder .icon { font-size: 4rem; }

.hero-right-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255,253,248,0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-item {
    text-align: center;
}

.overlay-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.overlay-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-mid);
}

.overlay-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-warm);
}

/* ===== SECTIONS COMMON ===== */
section { padding: 7rem 3rem; position: relative; }

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--coral);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.section-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 550px;
}

/* ===== ABOUT — HORIZONTAL SCROLL FEEL ===== */
#about {
    background: var(--white);
    overflow: hidden;
}

.about-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--ivory);
    border-radius: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-row:hover {
    border-left-color: var(--coral);
    background: var(--sand-light);
    transform: translateX(5px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand), var(--sand-warm));
    position: relative;
}

.about-img:first-child {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--palm), #1a3a0e);
}

.about-img:nth-child(2) {
    background: linear-gradient(135deg, var(--ocean), #103a5a);
}

.about-img:nth-child(3) {
    background: linear-gradient(135deg, var(--lagoon), #2a8070);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    gap: 0.6rem;
    font-size: 0.8rem;
}

.img-placeholder .icon { font-size: 2rem; }
.img-placeholder .label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== AMENITIES — RIBBON ===== */
#amenities {
    background: var(--ivory);
    padding-bottom: 5rem;
}

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

.amenities-header .section-eyebrow {
    justify-content: center;
}

.amenities-header .section-eyebrow::before { display: none; }

.amenities-header .section-title {
    margin-left: auto;
    margin-right: auto;
}

.amenities-ribbon {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.amenity-tile {
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.amenity-tile:last-child { border-right: none; }

.amenity-tile:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border-radius: 16px;
}

.amenity-tile .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.amenity-tile .name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
}

.amenity-tile .sub {
    font-size: 0.72rem;
    color: var(--text-soft);
    margin-top: 0.3rem;
}

/* ===== GALLERY — MASONRY MAGAZINE ===== */
#gallery {
    background: var(--white);
}

.gallery-layout {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 220px 220px 220px;
    gap: 1rem;
}

.g-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.g-item:hover { transform: scale(1.015); }

.g-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; background: linear-gradient(135deg, var(--palm), #1a3a0e); }
.g-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; background: linear-gradient(135deg, var(--ocean), #103a5a); }
.g-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; background: linear-gradient(135deg, var(--lagoon), #2a8070); }
.g-item:nth-child(4) { grid-column: 6 / 9; grid-row: 2 / 4; background: linear-gradient(135deg, var(--coral), #b85830); }
.g-item:nth-child(5) { grid-column: 1 / 6; grid-row: 3; background: linear-gradient(135deg, var(--sand-warm), #a89878); }
.g-item:nth-child(6) { grid-column: 9 / 13; grid-row: 2 / 4; background: linear-gradient(135deg, var(--gold), #a88030); }

.g-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    gap: 0.6rem;
}

.g-placeholder .icon { font-size: 2.2rem; }
.g-placeholder .label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== CALENDAR ===== */
#calendar {
    background: var(--ivory);
}

.calendar-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.calendar-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.cal-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--sand-warm);
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cal-nav button:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

.cal-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.3rem;
}

.cal-weekdays span {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 0;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.cal-day.current { color: var(--text); }
.cal-day.other { color: var(--text-soft); opacity: 0.25; }
.cal-day.available {
    color: var(--palm);
    cursor: pointer;
}
.cal-day.available:hover {
    background: var(--lagoon-light);
}
.cal-day.booked {
    color: var(--coral-soft);
    text-decoration: line-through;
    opacity: 0.5;
}
.cal-day.today {
    border: 2px solid var(--coral);
    font-weight: 700;
}

.cal-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-soft);
}

.cal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.cal-dot.avail { background: var(--lagoon-light); border: 1px solid var(--lagoon); }
.cal-dot.book { background: rgba(224,120,80,0.15); border: 1px solid var(--coral-soft); }

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--white);
}

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

.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-header .section-eyebrow::before { display: none; }

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

.review-card {
    padding: 2.5rem;
    background: var(--ivory);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.review-card:hover {
    border-color: var(--sand-warm);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.review-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--coral);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--lagoon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-soft);
}

/* ===== RESERVATION ===== */
#reservation {
    background: var(--ivory);
}

.resa-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.resa-info {
    position: sticky;
    top: 120px;
}

.resa-info .section-intro {
    margin-bottom: 2rem;
}

.resa-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.perk-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.resa-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.resa-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field.full { grid-column: span 2; }

.field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-soft);
}

.field input, .field select, .field textarea {
    padding: 0.85rem 1.1rem;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: all 0.3s;
    background: var(--white);
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224,120,80,0.08);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-buttons {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.25);
}

.btn-coral, .btn-wa { flex: 1; justify-content: center; }

/* ===== TARIFS ===== */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-size: 0.88rem;
    margin-top: 1rem;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,253,248,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--coral); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 7rem 3rem 4rem; }
    .hero-right { min-height: 350px; }
    .hero-right-overlay { display: none; }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { order: -1; }
    .amenities-ribbon { grid-template-columns: repeat(3, 1fr); }
    .amenity-tile { border-bottom: 1px solid rgba(0,0,0,0.04); }
    .calendar-split { grid-template-columns: 1fr; gap: 3rem; }
    .resa-layout { grid-template-columns: 1fr; gap: 3rem; }
    .resa-info { position: static; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-logo { font-size: 1.4rem; letter-spacing: 4px; }
    section { padding: 4rem 1.5rem; }
    .hero-left { padding: 6rem 1.5rem 3rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 1.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 160px 160px;
    }
    .about-images .about-img:first-child { grid-row: auto; }
    .gallery-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .g-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .g-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .g-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .g-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .g-item:nth-child(5) { grid-column: 2; grid-row: 3; }
    .g-item:nth-child(6) { display: none; }
    .amenities-ribbon { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: 1fr; }
    .field-grid { grid-template-columns: 1fr; }
    .field.full, .form-buttons { grid-column: span 1; }
    .form-buttons { flex-direction: column; }
    .resa-form { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand .nav-logo { letter-spacing: 4px; }
    /* Tarifs : 1 colonne sur mobile */
    .tarifs-grid { grid-template-columns: 1fr; max-width: 400px; gap: 1.8rem; }
    .tarifs-grid > div { transform: none !important; }
    /* Confirmation formulaire en 1 colonne */
    #formConfirmation { grid-column: span 1 !important; }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 480px) {
    .nav-logo { font-size: 1.2rem; letter-spacing: 3px; }
    nav { padding: 0.8rem 1rem; }
    nav.scrolled { padding: 0.6rem 1rem; }
    section { padding: 3rem 1rem; }
    .hero-left { padding: 5rem 1.2rem 2.5rem; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
    .hero-desc { font-size: 0.9rem; line-height: 1.7; }
    .hero-meta { gap: 1rem; }
    .hero-meta-value { font-size: 1.5rem; }
    .hero-right { min-height: 280px; }
    .section-title { font-size: 1.8rem; }
    .section-eyebrow { font-size: 0.65rem; letter-spacing: 3px; }
    .about-layout { gap: 2rem; }
    .about-features { gap: 1rem; }
    .feature-row { padding: 1rem 1.2rem; }
    .feature-icon { width: 38px; height: 38px; font-size: 1.1rem; }
    .amenity-tile { padding: 1.5rem 0.5rem; }
    .amenity-tile .icon { font-size: 1.6rem; }
    .amenity-tile .name { font-size: 0.75rem; }
    .gallery-layout {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 160px);
    }
    .g-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .g-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .g-item:nth-child(3) { grid-column: 1; grid-row: 3; }
    .g-item:nth-child(4) { grid-column: 1; grid-row: 4; }
    .g-item:nth-child(5) { grid-column: 1; grid-row: 5; }
    .review-card { padding: 1.8rem 1.5rem; }
    .review-text { font-size: 1.05rem; }
    .resa-form { padding: 1.5rem 1.2rem; }
    .resa-form h3 { font-size: 1.3rem; }
    .field label { font-size: 0.7rem; }
    .btn { padding: 0.85rem 1.8rem; font-size: 0.78rem; }
    .calendar-split { gap: 2rem; }
    .footer-brand .nav-logo { font-size: 1.2rem; letter-spacing: 3px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SUB-PAGES ===== */
.page-header {
    padding: 8rem 3rem 4rem;
    background: var(--ivory);
    text-align: center;
}
.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--palm); font-weight: 400; }
.page-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.page-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    margin: 3rem 0 1rem;
}
.page-content h2 em { font-style: italic; color: var(--palm); }
.page-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
.page-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.page-content ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.page-content ul li::before {
    content: '\2192';
    color: var(--coral);
    font-weight: 600;
}
.page-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--ivory);
    border-radius: 24px;
    margin: 3rem 0;
}
.page-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.page-cta p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
/* FAQ specific */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem 0;
}
.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--coral);
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 0.95rem;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}
/* Photo grid for subpages */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}
.photo-grid img.wide {
    grid-column: span 2;
    height: 300px;
}
/* Comparison table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.92rem;
}
.compare-table th {
    background: var(--text);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.compare-table td {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--text-mid);
}
.compare-table tr:nth-child(even) td {
    background: var(--ivory);
}
.highlight { color: var(--palm); font-weight: 700; }

/* Sub-page responsive */
@media (max-width: 768px) {
    .page-header { padding: 6rem 1.5rem 3rem; }
    .page-content { padding: 3rem 1.5rem; }
    .photo-grid { grid-template-columns: 1fr; }
    .photo-grid img.wide { grid-column: span 1; }
}
