/* === Reset & Variables === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-bg: #faf9f6;
    --color-bg-dark: #1a1a1a;
    --color-bg-accent: #2c3e2d;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    --color-text-on-dark: #f5f5f0;
    --color-gold: #b8860b;
    --color-gold-light: #d4a843;
    --color-border: #e0ddd5;
    --color-card: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Nav === */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
    color: white; transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--color-text); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
    transition: color var(--transition); letter-spacing: 0.01em;
}
.nav.scrolled .nav-links a { color: var(--color-text-light); }
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a:hover { color: var(--color-text); }
.nav-cta {
    background: var(--color-gold) !important; color: white !important;
    padding: 10px 24px !important; border-radius: 50px;
    font-weight: 600 !important; letter-spacing: 0.02em;
    transition: transform var(--transition), background var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--color-gold-light) !important; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative;
}
.nav-toggle span {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: white; transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--color-text); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* === Hero === */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: white;
    padding: 0 24px;
}
.hero-subtitle {
    font-family: var(--font-body); font-size: 0.85rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 16px; opacity: 0.8; font-weight: 500;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.hero-desc {
    font-size: 1.25rem; opacity: 0.9; font-weight: 300;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; margin-bottom: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
    display: block; font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
}
.hero-stat-label {
    font-size: 0.8rem; opacity: 0.7; text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-stat-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,0.3);
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); text-align: center;
    color: white; opacity: 0.6; z-index: 2;
}
.hero-scroll span {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px; background: white;
    margin: 8px auto 0; animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.btn {
    display: inline-block; padding: 16px 40px;
    border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.02em;
    transition: all var(--transition); cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--color-gold); color: white;
}
.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}

/* === Sections === */
.section { padding: 100px 0; }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section-accent { background: var(--color-bg-accent); color: var(--color-text-on-dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-size: 0.8rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-gold); font-weight: 600; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; line-height: 1.2;
}

/* === About === */
.about-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 64px; align-items: start;
}
.about-lead {
    font-size: 1.2rem; font-weight: 400; line-height: 1.8;
    margin-bottom: 24px; color: var(--color-text);
}
.about-text p { margin-bottom: 16px; color: var(--color-text-light); }
.about-details { display: flex; flex-direction: column; gap: 16px; }
.detail-card {
    display: flex; align-items: center; gap: 20px;
    padding: 24px; background: var(--color-card);
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.detail-card:hover { transform: translateY(-2px); }
.detail-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #f5f0e8; border-radius: 12px; color: var(--color-gold);
}
.detail-icon svg { width: 22px; height: 22px; }
.detail-card strong { display: block; font-size: 1rem; }
.detail-card span { font-size: 0.85rem; color: var(--color-text-light); }

/* === Gallery === */
.gallery-filters {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-filter {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7); padding: 8px 20px;
    border-radius: 50px; font-size: 0.85rem; cursor: pointer;
    transition: all var(--transition); font-family: var(--font-body);
}
.gallery-filter:hover, .gallery-filter.active {
    background: var(--color-gold); color: white;
    border-color: var(--color-gold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0; transition: opacity var(--transition);
    display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: white; font-size: 0.85rem; font-weight: 500;
}

/* === Lightbox === */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.95);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
    border-radius: 8px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: none; border: none;
    color: white; font-size: 2rem; cursor: pointer;
    padding: 16px; transition: opacity var(--transition);
    opacity: 0.7;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 16px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%); color: rgba(255,255,255,0.7);
    font-size: 0.9rem; text-align: center;
}

/* === Amenities === */
.amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}
.amenity-group h3 {
    font-family: var(--font-display); font-size: 1.15rem;
    margin-bottom: 20px; color: var(--color-text);
}
.amenity-group li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}
.amenity-group li svg {
    width: 18px; height: 18px; flex-shrink: 0;
    color: var(--color-gold);
}

/* === Reviews === */
.reviews-summary {
    display: grid; grid-template-columns: auto 1fr;
    gap: 64px; align-items: center;
    margin-bottom: 64px; padding: 40px;
    background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
}
.reviews-score { text-align: center; }
.reviews-score-number {
    font-family: var(--font-display); font-size: 4rem;
    font-weight: 700; line-height: 1; display: block;
}
.reviews-stars {
    display: flex; gap: 4px; justify-content: center;
    margin: 12px 0 8px; color: var(--color-gold);
}
.reviews-stars svg { width: 20px; height: 20px; }
.reviews-count { font-size: 0.9rem; opacity: 0.6; }
.reviews-ratings { display: grid; gap: 12px; }
.rating-row {
    display: grid; grid-template-columns: 120px 1fr 40px;
    align-items: center; gap: 16px; font-size: 0.9rem;
}
.rating-bar {
    height: 4px; background: rgba(255,255,255,0.15);
    border-radius: 4px; overflow: hidden;
}
.rating-fill {
    height: 100%; background: var(--color-gold);
    border-radius: 4px; transition: width 1s ease;
}
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}
.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 32px;
    transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-2px); }
.review-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 16px;
}
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--color-gold); display: flex;
    align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.2rem; color: white; flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 1rem; }
.review-meta span { font-size: 0.8rem; opacity: 0.5; }
.review-stars { display: flex; gap: 2px; color: var(--color-gold); margin-bottom: 12px; }
.review-stars svg { width: 14px; height: 14px; }
.review-text { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; }
.review-reply {
    margin-top: 16px; padding: 16px;
    background: rgba(255,255,255,0.04); border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}
.review-reply-name { font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.review-reply-text { font-size: 0.85rem; opacity: 0.7; }

/* === Location === */
.location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.location-distances { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.distance-item {
    display: flex; align-items: center; gap: 16px;
}
.distance-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #f5f0e8; border-radius: 12px; color: var(--color-gold);
}
.distance-icon svg { width: 20px; height: 20px; }
.distance-item strong { display: block; }
.distance-item span { font-size: 0.85rem; color: var(--color-text-light); }
.location-extra { color: var(--color-text-light); font-style: italic; }
.location-map { min-height: 400px; border-radius: var(--radius-lg); overflow: hidden; }

/* === Rules === */
.rules-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}
.rules-grid h3 {
    font-family: var(--font-display); font-size: 1.3rem;
    margin-bottom: 20px;
}
.rules-list li {
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem; opacity: 0.85;
}

/* === Host === */
.host-card {
    display: flex; align-items: center; gap: 64px;
    max-width: 800px; margin: 0 auto;
}
.host-photo {
    position: relative; flex-shrink: 0;
}
.host-photo img {
    width: 200px; height: 200px; border-radius: 50%;
    object-fit: cover;
}
.host-badge {
    position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold); color: white;
    padding: 4px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; white-space: nowrap;
}
.host-info h2 {
    font-family: var(--font-display); font-size: 1rem;
    color: var(--color-gold); text-transform: uppercase;
    letter-spacing: 0.15em; margin-bottom: 4px;
}
.host-info h3 {
    font-family: var(--font-display); font-size: 2rem;
    margin-bottom: 16px;
}
.host-info p { color: var(--color-text-light); margin-bottom: 20px; }
.host-highlights { display: flex; gap: 12px; flex-wrap: wrap; }
.host-highlights span {
    background: #f5f0e8; padding: 6px 16px;
    border-radius: 50px; font-size: 0.82rem;
    color: var(--color-text-light); font-weight: 500;
}

/* === CTA === */
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-desc { opacity: 0.7; margin-bottom: 40px; font-size: 1.05rem; }
.cta-methods { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-method {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 32px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius); color: white;
    transition: all var(--transition); font-weight: 500;
}
.cta-method:hover {
    background: var(--color-gold); border-color: var(--color-gold);
    transform: translateY(-2px);
}
.cta-method svg { width: 22px; height: 22px; }

/* === Footer === */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--color-border); }
.footer-inner {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 32px;
}
.footer-logo {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
}
.footer-brand p { font-size: 0.85rem; color: var(--color-text-light); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 0.85rem; color: var(--color-text-light);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom {
    text-align: center; padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--color-text-light); }

/* === Responsive === */
@media (max-width: 900px) {
    .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .reviews-summary { grid-template-columns: 1fr; gap: 32px; }
    .host-card { flex-direction: column; text-align: center; gap: 32px; }
    .host-highlights { justify-content: center; }
    .rating-row { grid-template-columns: 100px 1fr 36px; }
}
@media (max-width: 768px) {
    /* Base font size bump for mobile */
    html { font-size: 18px; }
    body { font-size: 1.05rem; line-height: 1.8; }

    /* Nav */
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-logo { font-size: 1.5rem; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: white; padding: 24px; gap: 20px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open a { color: var(--color-text) !important; font-size: 1.1rem; }

    /* Sections */
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }
    .section-tag { font-size: 0.9rem; }
    .section-title { font-size: 1.8rem; }

    /* Hero */
    .hero-subtitle { font-size: 0.95rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { font-size: 1.2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 1.8rem; }
    .hero-stat-label { font-size: 0.85rem; }

    /* About */
    .about-lead { font-size: 1.15rem; }
    .about-text p { font-size: 1.05rem; }
    .detail-card { padding: 20px; }
    .detail-card strong { font-size: 1.05rem; }
    .detail-card span { font-size: 0.95rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .gallery-filter { font-size: 0.95rem; padding: 10px 18px; }
    .gallery-item-overlay span { font-size: 0.95rem; }

    /* Amenities */
    .amenity-group h3 { font-size: 1.2rem; }
    .amenity-group li { font-size: 1.05rem; padding: 12px 0; }

    /* Reviews */
    .reviews-score-number { font-size: 3.5rem; }
    .reviews-stars svg { width: 24px; height: 24px; }
    .reviews-count { font-size: 1rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 24px; }
    .review-meta strong { font-size: 1.1rem; }
    .review-meta span { font-size: 0.9rem; }
    .review-stars svg { width: 18px; height: 18px; }
    .review-text { font-size: 1.05rem; }
    .review-reply-name { font-size: 0.95rem; }
    .review-reply-text { font-size: 0.95rem; }
    .rating-row { font-size: 1rem; grid-template-columns: 110px 1fr 40px; }
    .rating-bar { height: 6px; }

    /* Location */
    .distance-item strong { font-size: 1.05rem; }
    .distance-item span { font-size: 0.95rem; }
    .location-extra { font-size: 1.05rem; }
    .location-map { min-height: 300px; }

    /* Rules */
    .rules-grid h3 { font-size: 1.3rem; }
    .rules-list li { font-size: 1.05rem; padding: 12px 0; }

    /* Host */
    .host-info h3 { font-size: 1.8rem; }
    .host-info p { font-size: 1.05rem; }
    .host-highlights span { font-size: 0.95rem; }

    /* CTA */
    .cta-desc { font-size: 1.1rem; }
    .cta-method { font-size: 1.05rem; padding: 14px 24px; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 1rem; }
    .footer-brand p { font-size: 0.95rem; }
    .footer-bottom p { font-size: 0.9rem; }

    /* Buttons */
    .btn { font-size: 1.05rem; padding: 16px 36px; }
}
