/* ============================================================
   RESET & VARIABLES
   ============================================================ */
:root {
    --primary: #1E2F28;
    --primary-light: #2a4038;
    --primary-dark: #141f1b;
    --secondary: #F4EFE8;
    --accent: #C6A15B;
    --accent-light: #d4b77a;
    --accent-dark: #a8863e;
    --text: #1A1A1A;
    --text-muted: #4a4a4a;
    --text-light: #6a6a6a;
    --white: #FAF8F3;
    --pure-white: #ffffff;
    --border: #e2ddd5;
    --success: #3a7d44;
    --danger: #c0392b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; image-rendering: auto; -webkit-image-rendering: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px) { .container { padding: 0 40px; } }
@media(min-width:1280px) { .container { padding: 0 24px; } }
.section { padding: 80px 0; }
@media(min-width:768px) { .section { padding: 120px 0; } }

.section-label {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.section-label::before, .section-label::after {
    content: ''; width: 32px; height: 1px; background: var(--accent); opacity: 0.6;
}
.section-title {
    font-size: clamp(34px, 5vw, 56px);
    color: var(--primary); margin-bottom: 20px;
    font-weight: 600; letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 17px; color: var(--text-muted);
    max-width: 580px; line-height: 1.75; margin: 0 auto;
    font-weight: 300;
}
.section-header { margin-bottom: 64px; text-align: center; }
/* Luxury diamond divider for sections */
.section-diamond {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-top: 20px;
}
.section-diamond-line { width: 36px; height: 1px; background: var(--accent); opacity: 0.4; }
.section-diamond-dot {
    width: 6px; height: 6px; background: var(--accent);
    transform: rotate(45deg); opacity: 0.6;
}

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 16px 36px;
    background: var(--accent); color: var(--primary);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 100px; border: none;
    transition: var(--tr); min-height: 52px;
}
.btn-primary:hover { background: var(--accent-dark); color: var(--pure-white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(198,161,91,0.3); }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 32px;
    background: transparent; color: var(--pure-white);
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.65);
    transition: var(--tr); min-height: 52px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 16px 36px;
    background: var(--primary); color: var(--pure-white);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 100px; border: none;
    transition: var(--tr); min-height: 52px;
}
.btn-dark:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0; transition: var(--tr);
}
.nav.scrolled, .nav.nav-solid {
    background: rgba(30, 47, 40, 0.97); backdrop-filter: blur(16px);
    padding: 12px 0; box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700; color: var(--pure-white); letter-spacing: 1px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: none; gap: 18px; }
@media(min-width:1024px) { .nav-links { display: flex; align-items: center; } }
@media(min-width:1280px) { .nav-links { gap: 28px; } }
.nav-links li { display: flex; }
.nav-links a {
    color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500;
    letter-spacing: 0.5px; transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { display: none; }
@media(min-width:1024px) { .nav-cta { display: inline-flex; } }
.nav-cta .btn-primary { padding: 10px 24px; min-height: 40px; font-size: 11px; }
.nav-hamburger { display: flex; flex-direction: column; gap: 6px; width: 28px; padding: 4px 0; }
@media(min-width:1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span { height: 2px; background: var(--pure-white); border-radius: 2px; transition: var(--tr); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--primary); z-index: 99;
    flex-direction: column; justify-content: center;
    align-items: center; gap: 20px;
    padding: 80px 20px 40px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--pure-white); font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 500; transition: var(--tr);
}
@media(min-height:700px) { .mobile-menu { gap: 28px; } .mobile-menu a { font-size: 28px; } }
.mobile-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.8s ease;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    image-rendering: auto; -webkit-backface-visibility: hidden;
    transform: translateZ(0) scale(1.02);
    transition: transform 8s ease;
    will-change: transform;
}
.hero-slide.active img { transform: translateZ(0) scale(1.08); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,31,27,0.4) 0%, rgba(20,31,27,0.55) 40%, rgba(20,31,27,0.82) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 100px 20px 80px;
    max-width: 860px;
}
/* Decorative gold line above title */
.hero-deco {
    width: 60px; height: 1px; background: var(--accent);
    margin: 0 auto 28px; opacity: 0.7;
}
.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 700; color: var(--pure-white);
    line-height: 0.95; margin-bottom: 8px;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-name span {
    color: var(--accent);
    font-style: italic;
}
.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.2vw, 20px);
    font-weight: 300; letter-spacing: 6px;
    text-transform: uppercase; color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}
@media(max-width:640px) { .hero-tagline { letter-spacing: 3px; } }
.hero-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 28px;
}
.hero-divider-line { width: 40px; height: 1px; background: rgba(198,161,91,0.5); }
.hero-divider-diamond {
    width: 8px; height: 8px; background: var(--accent);
    transform: rotate(45deg); flex-shrink: 0;
}
.hero-location {
    font-size: 15px; color: rgba(255,255,255,0.55);
    margin-bottom: 10px; display: flex; align-items: center;
    justify-content: center; gap: 8px;
    letter-spacing: 0.5px;
}
.hero-location svg { flex-shrink: 0; opacity: 0.7; }
.hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.75);
    max-width: 520px; margin: 0 auto 40px; line-height: 1.75;
    font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    display: none;
    background: rgba(20,31,27,0.5); backdrop-filter: blur(12px);
}
@media(min-width:768px) { .hero-stats { display: block; } }
.hero-stats-inner {
    display: flex; gap: 0; justify-content: center;
    padding: 0;
}
.hero-stat {
    text-align: center; padding: 20px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 700; color: var(--accent);
}
.hero-stat-label {
    font-size: 10px; color: rgba(255,255,255,0.65);
    text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { background: var(--primary); }
.location-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media(min-width:768px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } }
.location-section .section-title { color: var(--pure-white); }
.location-section .section-subtitle { color: rgba(255,255,255,0.6); }
.location-text { text-align: center; }
@media(min-width:768px) { .location-text { text-align: left; } .location-text .section-subtitle { margin: 0; } }

.location-benefits { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.location-benefit { display: flex; gap: 16px; align-items: flex-start; }
.location-benefit-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 10px; background: rgba(198,161,91,0.12);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.location-benefit h4 {
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--pure-white); margin-bottom: 2px;
}
.location-benefit p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.location-map {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; box-shadow: var(--shadow-xl);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
.distance-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; justify-content: center;
}
@media(min-width:768px) { .distance-chips { justify-content: flex-start; } }
.distance-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; font-size: 12px; color: rgba(255,255,255,0.7);
}
.distance-chip strong { color: var(--accent); font-weight: 600; }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities-section { background: var(--secondary); }
.activities-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media(min-width:640px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .activities-grid { grid-template-columns: repeat(3, 1fr); } }
.activity-card {
    background: var(--pure-white); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--tr); box-shadow: var(--shadow-sm);
    text-align: center; border: 1px solid rgba(0,0,0,0.04);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(198,161,91,0.15); }
.activity-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.activity-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    image-rendering: auto;
}
.activity-card:hover .activity-card-img img { transform: scale(1.06); }
.activity-card-distance {
    position: absolute; top: 12px; right: 12px;
    padding: 5px 14px; background: rgba(30,47,40,0.85);
    backdrop-filter: blur(8px); border-radius: 100px;
    font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.5px;
}
.activity-card-body { padding: 24px; }
.activity-card-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.activity-card-body h3 { font-size: 22px; color: var(--primary); margin-bottom: 8px; }
.activity-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-mosaic {
    display: grid; grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px; gap: 8px;
}
@media(min-width:640px) { .gallery-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 12px; } }
@media(min-width:1024px) { .gallery-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 12px; } }
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius); cursor: pointer;
}
.gallery-item.span-2c { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease; image-rendering: auto;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    transform: translateZ(0);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,47,40,0.35), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
    position: absolute; bottom: 16px; left: 16px; z-index: 2;
    font-size: 13px; font-weight: 600; color: var(--pure-white);
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(20,31,27,0.97); z-index: 200;
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; image-rendering: auto; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: white;
    font-size: 24px; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: white;
    font-size: 24px; display: flex; align-items: center; justify-content: center;
    transition: var(--tr);
}
.lightbox-nav:hover { background: var(--accent); color: var(--primary); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section { background: var(--primary); }
.rooms-section .section-title { color: var(--pure-white); }
.rooms-section .section-subtitle { color: rgba(255,255,255,0.6); }
.rooms-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media(min-width:768px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }
.room-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--tr); text-align: center;
}
.room-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(198,161,91,0.3); transform: translateY(-4px); }
.room-card-image { aspect-ratio: 16/11; overflow: hidden; }
.room-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s; image-rendering: auto;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-card-body { padding: 28px; }
.room-card-body h3 { font-size: 24px; color: var(--pure-white); margin-bottom: 8px; }
.room-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; background: rgba(198,161,91,0.15);
    border-radius: 100px; font-size: 13px; font-weight: 600;
    color: var(--accent); margin-bottom: 12px;
}
.room-card-body p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.capacity-total {
    text-align: center; margin-top: 48px;
    padding: 32px; background: rgba(198,161,91,0.08);
    border: 1px solid rgba(198,161,91,0.2);
    border-radius: var(--radius-lg);
}
.capacity-total h3 { font-size: 36px; color: var(--accent); margin-bottom: 8px; }
.capacity-total p { font-size: 15px; color: rgba(255,255,255,0.6); }

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation-section { background: var(--secondary); }
.reservation-card {
    background: var(--pure-white); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
    max-width: 900px; margin: 0 auto;
}
.reservation-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 40px 32px; text-align: center;
    border-bottom: 3px solid var(--accent);
}
@media(min-width:768px) { .reservation-top { padding: 48px 48px; } }
.reservation-top h3 { font-size: 30px; color: var(--pure-white); margin-bottom: 4px; }
.reservation-top p { font-size: 15px; color: rgba(255,255,255,0.75); }
.reservation-body { padding: 28px; }
@media(min-width:768px) { .reservation-body { padding: 40px 48px; } }

.pricing-row {
    display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px;
}
@media(min-width:640px) { .pricing-row { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
    padding: 24px 20px; border-radius: var(--radius);
    border: 1.5px solid var(--border); text-align: center; transition: var(--tr);
}
.pricing-card.highlight { border-color: var(--accent); background: rgba(198,161,91,0.04); }
.pricing-card-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
}
.pricing-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700; color: var(--primary);
}
.pricing-card.highlight .pricing-card-price { color: var(--accent-dark); }
.pricing-card-note { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.pricing-card-discount {
    display: inline-block; margin-top: 8px;
    padding: 3px 10px; background: var(--success); color: white;
    border-radius: 100px; font-size: 10px; font-weight: 700;
}

/* Calendar */
.calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.calendar-title {
    font-size: 20px; font-weight: 600; color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}
.calendar-arrows { display: flex; gap: 8px; }
.cal-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--secondary); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--text); transition: var(--tr);
}
.cal-arrow:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dayname {
    text-align: center; font-size: 11px; font-weight: 700;
    color: var(--text-light); text-transform: uppercase;
    letter-spacing: 1px; padding: 8px 0;
}
.cal-dayname.wknd-label { color: var(--accent-dark); }
.cal-day {
    position: relative; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    aspect-ratio: 1; border-radius: 10px;
    font-size: 14px; font-weight: 500;
    transition: var(--tr); cursor: pointer;
    border: 2px solid transparent;
}
@media(min-width:768px) { .cal-day { font-size: 15px; } }
.cal-day:hover:not(.empty):not(.past):not(.booked) {
    border-color: var(--accent); background: rgba(198,161,91,0.06);
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: var(--border); cursor: default; }
.cal-day.today { border-color: var(--accent); font-weight: 700; }
.cal-day.booked { background: rgba(192,57,43,0.1); color: var(--danger); cursor: not-allowed; }
.cal-day.selected { background: var(--accent); color: var(--primary); font-weight: 700; border-color: var(--accent); }
.cal-day.in-range { background: rgba(198,161,91,0.15); color: var(--primary); border-radius: 4px; }
.cal-day.wknd-col:not(.booked):not(.selected):not(.in-range) { background: rgba(198,161,91,0.04); }
.cal-day .ptag { font-size: 8px; font-weight: 600; color: var(--text-light); margin-top: 1px; }
@media(min-width:768px) { .cal-day .ptag { font-size: 9px; } }
.cal-day.booked .ptag { color: rgba(192,57,43,0.5); }
.cal-day.selected .ptag { color: var(--primary); }
.cal-legend {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.leg-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.leg-sw { width: 14px; height: 14px; border-radius: 4px; }
.leg-sw.free { background: var(--pure-white); border: 1.5px solid var(--border); }
.leg-sw.taken { background: rgba(192,57,43,0.15); border: 1.5px solid rgba(192,57,43,0.3); }
.leg-sw.pick { background: var(--accent); }
.leg-sw.wknd { background: rgba(198,161,91,0.12); border: 1.5px solid rgba(198,161,91,0.25); }

.booking-summary {
    display: none; margin-top: 32px;
    padding: 28px; background: var(--secondary);
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    text-align: center;
}
.booking-summary.visible { display: block; }
.booking-summary h4 { font-size: 22px; color: var(--primary); margin-bottom: 20px; }
.s-line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; font-size: 14px; color: var(--text-muted);
    border-bottom: 1px solid var(--border); text-align: left;
}
.s-line:last-of-type { border-bottom: none; }
.s-line.total {
    font-size: 18px; font-weight: 700; color: var(--primary);
    border-top: 2px solid var(--accent); margin-top: 8px;
    padding-top: 16px; border-bottom: none;
}
.s-line.total span:last-child {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--accent-dark);
}
.disc-badge {
    display: inline-flex; padding: 3px 10px; background: var(--success);
    color: white; border-radius: 100px; font-size: 11px; font-weight: 700;
}

.booking-form { display: none; margin-top: 32px; }
.booking-form.visible { display: block; }
.booking-form h4 { font-size: 22px; color: var(--primary); margin-bottom: 24px; text-align: center; }
.form-grid {
    display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width:640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
    padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 15px; font-family: 'Inter', sans-serif;
    background: var(--pure-white); transition: var(--tr);
    color: var(--text); min-height: 48px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(198,161,91,0.12);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-submit { text-align: center; margin-top: 24px; }

/* House Rules */
.house-rules {
    margin-top: 36px; padding: 32px;
    background: var(--secondary); border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.house-rules h4 {
    font-size: 20px; color: var(--primary); margin-bottom: 8px; text-align: center;
}
.house-rules-intro {
    font-size: 14px; color: var(--text-muted); text-align: center;
    margin-bottom: 24px; line-height: 1.6;
}
.house-rules-list {
    display: flex; flex-direction: column; gap: 16px;
    max-width: 480px; margin: 0 auto 24px;
}
.house-rules-list li {
    display: flex; align-items: flex-start; gap: 14px;
}
.rule-icon {
    flex-shrink: 0; width: 28px; height: 28px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; font-size: 12px; font-weight: 700;
    background: rgba(192,57,43,0.1); color: var(--danger);
}
.house-rules-list li:last-child .rule-icon {
    background: rgba(58,125,68,0.1); color: var(--success);
}
.house-rules-list li strong {
    display: block; font-size: 14px; font-weight: 600; color: var(--text);
    margin-bottom: 2px;
}
.house-rules-list li span {
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.rules-checkbox {
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; max-width: 480px; margin: 0 auto;
    padding: 14px 18px; border-radius: 10px;
    background: var(--pure-white); border: 1.5px solid var(--border);
    transition: var(--tr);
}
.rules-checkbox:hover { border-color: var(--accent); }
.rules-checkbox input[type="checkbox"] {
    width: 20px; height: 20px; accent-color: var(--accent-dark);
    flex-shrink: 0; cursor: pointer;
}
.rules-checkbox span {
    font-size: 13px; color: var(--text); line-height: 1.5;
    font-weight: 500;
}

/* Payment Step */
.payment-step {
    display: none; margin-top: 32px; text-align: center;
}
.payment-step.visible { display: block; }
.payment-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(58,125,68,0.1); color: var(--success);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700; margin: 0 auto 20px;
}
.payment-step h4 {
    font-size: 26px; color: var(--primary); margin-bottom: 8px;
}
.payment-info {
    font-size: 15px; color: var(--text-muted); margin-bottom: 24px;
    line-height: 1.6;
}
.payment-summary {
    max-width: 400px; margin: 0 auto 32px;
    text-align: left;
}
.payment-gateway {
    max-width: 420px; margin: 0 auto 32px;
    padding: 28px; border-radius: var(--radius-lg);
    background: var(--secondary); border: 1px solid var(--border);
}
.payment-label {
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent-dark);
    margin-bottom: 10px;
}
.payment-note {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 18px;
}
.btn-pay {
    width: 100%; opacity: 0.5; cursor: not-allowed; gap: 10px;
}
.btn-pay:hover { transform: none; box-shadow: none; background: var(--accent); color: var(--primary); }
.payment-stripe-note {
    font-size: 11px; color: var(--text-light); margin-top: 12px;
    letter-spacing: 0.5px;
}

/* ============================================================
   TRIP PLANNER
   ============================================================ */
.planner-section { background: var(--secondary); }
.planner-card {
    max-width: 800px; margin: 0 auto;
    background: var(--pure-white); border-radius: var(--radius-xl);
    border: 1px solid var(--border); padding: 40px;
    box-shadow: var(--shadow);
}
@media(max-width:640px) { .planner-card { padding: 24px 18px; } }

.planner-form { }
.planner-fields {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media(min-width:640px) { .planner-fields { grid-template-columns: 1fr 1fr; } }

.planner-field label {
    display: block; font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
}
.planner-field select {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 15px; font-family: 'Inter', sans-serif;
    background: var(--pure-white); color: var(--text);
    min-height: 48px; transition: var(--tr);
}
.planner-field select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(198,161,91,0.12);
}

.planner-toggle {
    display: flex; border: 1.5px solid var(--border);
    border-radius: 10px; overflow: hidden;
}
.toggle-btn {
    flex: 1; padding: 14px; font-size: 14px; font-weight: 600;
    color: var(--text-muted); background: var(--pure-white);
    transition: var(--tr); text-align: center;
    border: none; cursor: pointer;
}
.toggle-btn.active {
    background: var(--primary); color: var(--pure-white);
}
.toggle-btn:not(.active):hover { background: var(--secondary); }

.planner-kids-field {
    display: none; grid-column: 1 / -1;
}

.planner-submit {
    text-align: center; margin-top: 28px;
}

/* Planner Result */
.planner-result {
    display: none; margin-top: 40px;
    border-top: 1px solid var(--border); padding-top: 36px;
}
.planner-result.visible { display: block; }

.plan-header { text-align: center; margin-bottom: 8px; }
.plan-header h3 {
    font-size: 28px; color: var(--primary); margin-bottom: 6px;
}
.plan-header p { font-size: 14px; color: var(--text-muted); }

.plan-tip {
    text-align: center; padding: 14px 20px;
    background: rgba(198,161,91,0.08); border-radius: 10px;
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
    margin: 20px 0 32px;
}
.plan-tip strong { color: var(--accent-dark); }

.plan-timeline { position: relative; }

.plan-day {
    position: relative; margin-bottom: 32px;
    padding-left: 28px; border-left: 2px solid var(--border);
}
.plan-day:last-child { margin-bottom: 0; }

.plan-day-num {
    position: relative; font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700; color: var(--primary);
    margin-bottom: 16px;
}
.plan-day-num::before {
    content: ''; position: absolute; left: -35px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--pure-white);
    box-shadow: 0 0 0 2px var(--accent);
}
.plan-day-label {
    display: inline-block; font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--accent-dark);
    background: rgba(198,161,91,0.12); padding: 3px 10px;
    border-radius: 100px; margin-left: 10px; vertical-align: middle;
}

.plan-day-items {
    display: flex; flex-direction: column; gap: 12px;
}

.plan-activity {
    display: flex; gap: 16px; padding: 18px;
    background: var(--secondary); border-radius: var(--radius);
    border: 1px solid transparent; transition: var(--tr);
}
.plan-activity:hover {
    border-color: rgba(198,161,91,0.3);
    box-shadow: var(--shadow-sm);
}

.plan-activity-time {
    flex-shrink: 0; width: 90px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; color: var(--accent-dark);
    padding-top: 4px;
}
@media(max-width:480px) { .plan-activity-time { width: 70px; font-size: 10px; } }

.plan-activity-body { flex: 1; min-width: 0; }
.plan-activity-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 4px;
}
.plan-activity-body h4 {
    font-size: 17px; color: var(--primary); margin-bottom: 4px;
    font-weight: 600;
}
.plan-activity-body p {
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 8px;
}

.plan-activity-meta {
    display: flex; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: var(--text-light); margin-bottom: 6px;
}
.plan-meta-dist::before { content: '\25CB '; }
.plan-meta-price { font-weight: 600; color: var(--text-muted); }

.plan-buy-link {
    display: inline-block; font-size: 12px; font-weight: 700;
    color: var(--accent-dark); letter-spacing: 0.5px;
    transition: var(--tr);
}
.plan-buy-link:hover { color: var(--primary); }

.plan-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center; margin-top: 36px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--white); }
.reviews-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media(min-width:768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
    padding: 40px 36px; background: var(--pure-white);
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    transition: var(--tr); text-align: center;
    position: relative;
}
.review-card::before {
    content: '\201C'; position: absolute; top: 16px; left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; color: var(--accent); opacity: 0.15;
    line-height: 1;
}
.review-card:hover { box-shadow: var(--shadow); border-color: rgba(198,161,91,0.3); transform: translateY(-4px); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; justify-content: center; }
.review-star { color: var(--accent); font-size: 18px; }
.review-text {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
    font-style: italic; margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; justify-content: center; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--secondary); display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary); font-size: 16px;
}
.review-author-info { text-align: left; }
.review-author-info h5 {
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--text);
}
.review-author-info span { font-size: 12px; color: var(--text-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--secondary); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--pure-white); border-radius: var(--radius);
    margin-bottom: 8px; border: 1px solid var(--border);
    overflow: hidden; transition: var(--tr);
}
.faq-item.open { border-color: rgba(198,161,91,0.3); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; gap: 16px;
    font-size: 16px; font-weight: 600; color: var(--primary);
    transition: var(--tr); min-height: 48px;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%; background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
    padding: 0 24px 20px; font-size: 15px;
    color: var(--text-muted); line-height: 1.7; text-align: left;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); padding: 80px 0 40px; }
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    margin-bottom: 48px; text-align: center;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; } }
.footer-brand h3 { font-size: 28px; color: var(--pure-white); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--accent); }
.footer-brand p {
    font-size: 14px; color: rgba(255,255,255,0.75);
    max-width: 320px; line-height: 1.7;
}
@media(max-width:767px) { .footer-brand p { margin: 0 auto; } }
.footer-col h4 {
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
}
.footer-col a {
    display: block; font-size: 14px; color: rgba(255,255,255,0.6);
    margin-bottom: 12px; transition: var(--tr);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    text-align: center;
}
@media(min-width:768px) { .footer-bottom { justify-content: space-between; } }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-socials { display: flex; gap: 16px; }
.footer-social {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); font-size: 16px; transition: var(--tr);
}
.footer-social:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 90; padding: 12px 20px;
    background: var(--primary); border-top: 1px solid rgba(198,161,91,0.2);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
@media(min-width:1024px) { .sticky-cta { display: none; } }
.sticky-cta-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cta-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700; color: var(--accent);
}
.sticky-cta-price span { font-size: 12px; color: rgba(255,255,255,0.75); font-family: 'Inter', sans-serif; font-weight: 400; }
.sticky-cta .btn-primary { padding: 12px 24px; min-height: 48px; font-size: 11px; white-space: nowrap; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-fab {
    position: fixed; bottom: 80px; right: 20px;
    z-index: 89; width: 48px; height: 48px;
    border-radius: 50%; background: var(--primary);
    border: 1px solid rgba(198,161,91,0.3);
    color: var(--accent); font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.5; transition: var(--tr);
}
@media(min-width:1024px) { .admin-fab { bottom: 24px; } }
.admin-fab:hover { opacity: 1; transform: scale(1.1); }

.admin-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(20,31,27,0.85); backdrop-filter: blur(8px);
    z-index: 300; align-items: center; justify-content: center; padding: 20px;
}
.admin-overlay.active { display: flex; }
.admin-panel {
    background: var(--pure-white); border-radius: var(--radius-xl);
    width: 100%; max-width: 840px; max-height: 92vh;
    overflow-y: auto; padding: 40px;
}
.admin-panel h2 {
    font-size: 28px; color: var(--primary); margin-bottom: 28px;
    display: flex; justify-content: space-between; align-items: center;
}
.admin-close { font-size: 28px; color: var(--text-light); cursor: pointer; }
.admin-login-form { text-align: center; padding: 20px 0; }
.admin-login-form h3 { font-size: 24px; margin-bottom: 8px; color: var(--primary); }
.admin-login-form p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.admin-login-form input[type="password"] {
    padding: 14px 20px; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 16px; width: 280px; text-align: center; margin-bottom: 16px;
}
.admin-login-form input[type="password"]:focus { outline: none; border-color: var(--accent); }
.admin-block {
    margin-bottom: 28px; padding: 28px;
    background: var(--secondary); border-radius: var(--radius-lg);
}
.admin-block h3 { font-size: 18px; color: var(--primary); margin-bottom: 16px; text-align: left; }
.admin-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px; flex-wrap: wrap;
}
.admin-row label { font-weight: 600; min-width: 180px; font-size: 14px; color: var(--text); }
.admin-row input[type="number"], .admin-row input[type="password"] {
    padding: 10px 14px; border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 15px; width: 120px; text-align: right;
}
.admin-row input:focus { outline: none; border-color: var(--accent); }
.admin-row span { font-size: 13px; color: var(--text-light); }
.admin-table {
    width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13px;
}
.admin-table th {
    background: var(--primary); color: white; padding: 10px 12px;
    text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
}
.admin-table th:first-child { border-radius: 8px 0 0 0; }
.admin-table th:last-child { border-radius: 0 8px 0 0; }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.btn-remove {
    padding: 5px 12px; background: var(--danger); color: white;
    border: none; border-radius: 6px; font-size: 11px; cursor: pointer; font-weight: 600;
}
.btn-remove:hover { background: #a93226; }
.admin-add-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr auto;
    gap: 8px; margin-top: 16px; align-items: end;
}
@media(max-width:640px) { .admin-add-row { grid-template-columns: 1fr 1fr; } }
.admin-add-row label { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.admin-add-row input {
    padding: 10px; border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 13px; width: 100%;
}
.admin-add-row input:focus { outline: none; border-color: var(--accent); }
.btn-add-booking {
    padding: 10px 18px; background: var(--success); color: white;
    border: none; border-radius: 8px; font-size: 12px; font-weight: 700;
    cursor: pointer; white-space: nowrap; min-height: 42px;
}
.btn-add-booking:hover { background: #2e6b38; }
.admin-hint { font-size: 11px; color: var(--text-light); margin-top: 8px; }

/* Toast */
.toast {
    position: fixed; bottom: 90px; left: 50%; z-index: 400;
    transform: translateX(-50%) translateY(40px);
    padding: 14px 28px; border-radius: 12px;
    font-size: 14px; font-weight: 500;
    box-shadow: var(--shadow-lg); opacity: 0;
    transition: all 0.4s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.ok { background: var(--primary); color: var(--pure-white); border-left: 4px solid var(--success); }
.toast.err { background: var(--primary); color: var(--pure-white); border-left: 4px solid var(--danger); }

/* ============================================================
   LUXURY FEATURES BAR (responsive override)
   ============================================================ */
@media(min-width:768px) { #luxbar { grid-template-columns: repeat(4, 1fr) !important; } }

/* ============================================================
   PAGE HERO (inner pages banner)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary);
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    opacity: 0.7;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--accent);
}
.page-hero-bg {
    position: absolute; inset: 0; opacity: 0.15;
}
.page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--pure-white);
    margin-bottom: 12px;
    font-weight: 700; letter-spacing: -0.5px;
}
.page-hero h1 span { color: var(--accent); font-style: italic; }
.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}
.page-hero .hero-deco {
    width: 50px; height: 1px;
    background: var(--accent);
    margin: 0 auto 20px;
    opacity: 0.6;
}

/* ============================================================
   LUXURY FEATURES BAR
   ============================================================ */
.luxury-bar { background: var(--secondary); padding: 48px 0; border-bottom: 1px solid var(--border); }
.luxury-bar-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px; text-align: center;
}
@media(min-width:768px) { .luxury-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.luxury-bar-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.luxury-bar-icon { font-size: 28px; }
.luxury-bar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: var(--primary);
}
.luxury-bar-desc { font-size: 13px; color: var(--text-muted); font-weight: 300; }

/* ============================================================
   HOME PREVIEW CARDS
   ============================================================ */
.preview-section { background: var(--white); }
.preview-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media(min-width:768px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }
.preview-card {
    background: var(--pure-white); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--tr);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(198,161,91,0.15); }
.preview-card-img { aspect-ratio: 16/10; overflow: hidden; }
.preview-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.preview-card:hover .preview-card-img img { transform: scale(1.06); }
.preview-card-body { padding: 28px; }
.preview-card-body h3 { font-size: 24px; color: var(--primary); margin-bottom: 8px; }
.preview-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

/* Outline dark button */
.btn-outline-dark {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 32px;
    background: transparent; color: var(--primary);
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 100px; border: 1.5px solid var(--border);
    transition: var(--tr); min-height: 52px;
}
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    max-width: 900px; margin: 0 auto;
}
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.contact-card {
    padding: 40px; background: var(--pure-white);
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    text-align: center; transition: var(--tr);
}
.contact-card:hover { box-shadow: var(--shadow); border-color: rgba(198,161,91,0.2); }
.contact-card-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(198,161,91,0.1); display: flex;
    align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
}
.contact-card h3 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.contact-card a {
    display: block; font-size: 16px; color: var(--text-muted);
    margin-bottom: 8px; transition: var(--tr);
}
.contact-card a:hover { color: var(--accent-dark); }
.contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Rooms on light bg */
.rooms-section-light { background: var(--white); }
.rooms-section-light .room-card {
    background: var(--pure-white); border: 1px solid var(--border);
}
.rooms-section-light .room-card:hover { background: var(--pure-white); border-color: rgba(198,161,91,0.3); }
.rooms-section-light .room-card-body h3 { color: var(--primary); }
.rooms-section-light .room-badge { background: rgba(198,161,91,0.1); }
.rooms-section-light .room-card-body p { color: var(--text-muted); }
.rooms-section-light .capacity-total {
    background: var(--secondary); border-color: var(--border);
}
.rooms-section-light .capacity-total h3 { color: var(--accent-dark); }
.rooms-section-light .capacity-total p { color: var(--text-muted); }

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: var(--primary);
}
@media(min-width:768px) { .cta-section { padding: 100px 0; } }
.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--pure-white);
    margin-bottom: 16px;
}
.cta-section h2 span { color: var(--accent); font-style: italic; }
.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   SEASON TOGGLE BUTTON
   ============================================================ */
.season-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 89;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: var(--primary);
    border: 1px solid rgba(198,161,91,0.3);
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--tr);
    box-shadow: var(--shadow);
}
.season-toggle:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.season-toggle-icon {
    font-size: 16px;
    line-height: 1;
}
.season-toggle-label {
    display: none;
}
@media(min-width: 768px) {
    .season-toggle-label { display: inline; }
}
@media(max-width: 1023px) {
    .season-toggle { bottom: 76px; }
}

/* Season badge in navbar */
.season-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(198,161,91,0.15);
    color: var(--accent);
    border-radius: 100px;
    vertical-align: middle;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
    padding: 14px 0;
    background: var(--secondary, #f8f6f1);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted, #7a7a6e);
}
.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a {
    color: var(--accent, #C6A15B);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--primary, #1E2F28);
}
.breadcrumb span {
    color: var(--text-muted, #7a7a6e);
}


.lang-btn[data-lang="en"],                                                                                                         
.lang-btn[data-lang="pl"] {                                                                                                        
    display: none !important;                                                                                                      
} 