/* === VARIABLES === */
:root {
    --dark-green: #093628;
    --dark-green-light: #0d4a37;
    --dark-green-90: rgba(9, 54, 40, 0.9);
    --dark-green-80: rgba(9, 54, 40, 0.8);
    --honey: #D4A843;
    --honey-light: #E8C76A;
    --honey-dark: #B8912E;
    --honey-10: rgba(212, 168, 67, 0.1);
    --cream: #FDF8EF;
    --cream-warm: #FAF3E6;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--dark-green); color: var(--white); }

/* === TYPOGRAPHY === */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 16px;
}
.section-tag--light { color: var(--honey-light); }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark-green);
    margin-bottom: 24px;
}
.section-title--light { color: var(--white); }
.section-title em, .honey-text {
    font-style: italic;
    color: var(--honey);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--honey {
    background: var(--honey);
    color: var(--dark-green);
    border-color: var(--honey);
}
.btn--honey:hover {
    background: var(--honey-dark);
    border-color: var(--honey-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}
.btn--primary {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}
.btn--primary:hover {
    background: var(--dark-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(9,54,40,0.3);
}
.btn--outline {
    background: transparent;
    color: var(--dark-green);
    border-color: var(--dark-green);
}
.btn--outline:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* === CUSTOM CURSOR (desktop only) === */
.cursor-dot, .cursor-ring {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        top: 0; left: 0;
        width: 8px; height: 8px;
        background: var(--honey);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }
    .cursor-ring {
        display: block;
        position: fixed;
        top: 0; left: 0;
        width: 40px; height: 40px;
        border: 1.5px solid rgba(212,168,67,0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }
    .cursor-hover .cursor-dot {
        width: 14px; height: 14px;
        background: var(--honey-light);
    }
    .cursor-hover .cursor-ring {
        width: 60px; height: 60px;
        border-color: rgba(212,168,67,0.2);
    }
}

/* === HEADER === */
#header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
#header.scrolled {
    background: rgba(9, 54, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img { height: 48px; width: auto; transition: var(--transition); }
#header.scrolled .logo-img { height: 40px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav-link {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--honey);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--honey); }
.header-cta {
    display: flex; align-items: center; gap: 8px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.header-cta:hover {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--dark-green);
}
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1001; }
.burger span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === MOBILE NAV === */
.mobile-nav {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(9, 54, 40, 0.98);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-inner { text-align: center; }
.mobile-nav-link {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    padding: 12px 0;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
}
.mobile-nav.active .mobile-nav-link { opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav-link:nth-child(8) { transition-delay: 0.4s; }
.mobile-nav-link:hover { color: var(--honey); }
.mobile-nav-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 44px;
    background: var(--honey);
    color: var(--dark-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
}
.mobile-nav.active .mobile-nav-cta { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.mobile-nav-cta:hover { background: var(--honey-light); }

/* === HERO === */
.hero {
    position: relative;
    height: 100vh; min-height: 750px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('media/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(9,54,40,0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}
.hero-badge span {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(212,168,67,0.5);
    border-radius: 50px;
    color: var(--honey);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-subtitle {
    color: var(--honey);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 16px;
}
.hero-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 28px;
}
.hero-title-line { display: block; }
.hero-title-line:nth-child(1) { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.hero-title-line:nth-child(2) { font-size: clamp(3rem, 7vw, 6rem); }
.hero-title-line--accent { color: var(--honey); font-style: italic; }
.hero-divider {
    width: 60px; height: 2px;
    background: var(--honey);
    margin: 0 auto 32px;
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition-slow) 0.4s;
}
.hero-divider.revealed { opacity: 1; transform: scaleX(1); }
.hero-actions {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--honey), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}
.hero-stats {
    position: absolute;
    bottom: 40px; right: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}
.hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.2);
}

/* === ABOUT — Split Screen === */
.about { padding: 140px 0; background: var(--cream); }
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-col {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-wrapper:hover img {
    transform: scale(1.03);
}
.about-img-badge {
    position: absolute;
    bottom: 24px; right: -16px;
    background: var(--honey);
    color: var(--dark-green);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.badge-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px; left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}
.about-img-secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.about-text-inner { padding-right: 20px; }
.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 16px;
    line-height: 1.7;
}
.about-desc {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 48px; height: 48px;
    background: var(--honey-10);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--honey);
}
.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.value-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey);
    display: inline;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--honey);
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* === COTTAGES === */
.cottages { padding: 120px 0; }
.cottages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.cottage-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.cottage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.cottage-hex {
    position: relative;
    padding: 20px 20px 0;
}
.cottage-hex-inner {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    aspect-ratio: 1;
}
.cottage-hex-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.cottage-card:hover .cottage-hex-inner img {
    transform: scale(1.08);
}
.cottage-info { padding: 24px; }
.cottage-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(9,54,40,0.06);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
}
.cottage-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.cottage-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cottage-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cottage-features span {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}
.cottage-price {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--honey);
    margin: 0 4px;
}
.price-currency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === FEATURES — Mosaic Grid === */
.features { padding: 120px 0; background: var(--cream); }
.features-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.feature-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 260px;
    cursor: pointer;
}
.feature-tile--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 540px;
}
.feature-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.feature-tile:hover img {
    transform: scale(1.05);
}
.feature-tile-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,54,40,0.9) 0%, rgba(9,54,40,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition);
}
.feature-tile:hover .feature-tile-overlay {
    background: linear-gradient(to top, rgba(9,54,40,0.95) 0%, rgba(9,54,40,0.5) 60%, rgba(9,54,40,0.2) 100%);
}
.feature-tile-icon {
    width: 48px; height: 48px;
    margin-bottom: 12px;
}
.feature-tile-icon img {
    width: 48px; height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.feature-tile-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}
.feature-tile-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.feature-tile-icon-only {
    position: absolute; inset: 0;
    background: var(--dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.feature-tile-icon-only:hover {
    background: var(--dark-green-light);
}
.feature-tile-icon-only img {
    width: 56px; height: 56px;
    margin-bottom: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.feature-tile-icon-only h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
}
.feature-tile-icon-only p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* === RECORD === */
.record {
    background: var(--dark-green);
    color: var(--white);
    padding: 140px 0;
    overflow: hidden;
    position: relative;
}
.record-parallax-bg {
    position: absolute; inset: 0;
    background: url('media/campfire.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.record-layout {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.record-badge-large {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.record-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    color: var(--honey);
}
.record-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.record-cta { margin-top: 8px; }
.record-gallery { display: flex; flex-direction: column; gap: 16px; }
.record-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.record-img-main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.record-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.record-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.record-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.record-img:hover img { transform: scale(1.05); }

/* === POOL === */
.pool { padding: 120px 0; background: var(--cream); }
.pool-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.pool-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0 40px;
}
.pool-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.pool-feature-emoji { font-size: 1.5rem; flex-shrink: 0; }
.pool-feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.pool-feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.pool-gallery { display: flex; flex-direction: column; gap: 12px; }
.pool-gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.pool-gallery-main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.pool-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pool-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pool-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pool-gallery-item:hover img { transform: scale(1.05); }

/* === ROOM DETAILS === */
.room-details { padding: 120px 0; }
.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.room-amenity {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.room-amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.room-amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.room-amenity h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.room-amenity p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === GALLERY — Masonry === */
.gallery { padding: 120px 0; background: var(--cream); }

/* === GALLERY SLIDER === */
.gallery-slider-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.gallery-slider {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.gallery-slide.active { opacity: 1; z-index: 1; }
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--dark-green);
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.gallery-arrow:hover {
    background: var(--honey);
    color: var(--white);
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}
.gallery-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-dot.active { background: var(--honey); transform: scale(1.3); }
/* === VARIABLES === */
:root {
    --dark-green: #093628;
    --dark-green-light: #0d4a37;
    --dark-green-90: rgba(9, 54, 40, 0.9);
    --dark-green-80: rgba(9, 54, 40, 0.8);
    --honey: #D4A843;
    --honey-light: #E8C76A;
    --honey-dark: #B8912E;
    --honey-10: rgba(212, 168, 67, 0.1);
    --cream: #FDF8EF;
    --cream-warm: #FAF3E6;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--dark-green); color: var(--white); }

/* === TYPOGRAPHY === */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 16px;
}
.section-tag--light { color: var(--honey-light); }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark-green);
    margin-bottom: 24px;
}
.section-title--light { color: var(--white); }
.section-title em, .honey-text {
    font-style: italic;
    color: var(--honey);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--honey {
    background: var(--honey);
    color: var(--dark-green);
    border-color: var(--honey);
}
.btn--honey:hover {
    background: var(--honey-dark);
    border-color: var(--honey-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}
.btn--primary {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}
.btn--primary:hover {
    background: var(--dark-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(9,54,40,0.3);
}
.btn--outline {
    background: transparent;
    color: var(--dark-green);
    border-color: var(--dark-green);
}
.btn--outline:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* === CUSTOM CURSOR (desktop only) === */
.cursor-dot, .cursor-ring {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        top: 0; left: 0;
        width: 8px; height: 8px;
        background: var(--honey);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }
    .cursor-ring {
        display: block;
        position: fixed;
        top: 0; left: 0;
        width: 40px; height: 40px;
        border: 1.5px solid rgba(212,168,67,0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }
    .cursor-hover .cursor-dot {
        width: 14px; height: 14px;
        background: var(--honey-light);
    }
    .cursor-hover .cursor-ring {
        width: 60px; height: 60px;
        border-color: rgba(212,168,67,0.2);
    }
}

/* === HEADER === */
#header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
#header.scrolled {
    background: rgba(9, 54, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img { height: 48px; width: auto; transition: var(--transition); }
#header.scrolled .logo-img { height: 40px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav-link {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--honey);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--honey); }
.header-cta {
    display: flex; align-items: center; gap: 8px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.header-cta:hover {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--dark-green);
}
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1001; }
.burger span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === MOBILE NAV === */
.mobile-nav {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(9, 54, 40, 0.98);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-inner { text-align: center; }
.mobile-nav-link {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    padding: 12px 0;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
}
.mobile-nav.active .mobile-nav-link { opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav-link:nth-child(8) { transition-delay: 0.4s; }
.mobile-nav-link:hover { color: var(--honey); }
.mobile-nav-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 44px;
    background: var(--honey);
    color: var(--dark-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
}
.mobile-nav.active .mobile-nav-cta { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.mobile-nav-cta:hover { background: var(--honey-light); }

/* === HERO === */
.hero {
    position: relative;
    height: 100vh; min-height: 750px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('media/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(9,54,40,0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}
.hero-badge span {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(212,168,67,0.5);
    border-radius: 50px;
    color: var(--honey);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-subtitle {
    color: var(--honey);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 16px;
}
.hero-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 28px;
}
.hero-title-line { display: block; }
.hero-title-line:nth-child(1) { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.hero-title-line:nth-child(2) { font-size: clamp(3rem, 7vw, 6rem); }
.hero-title-line--accent { color: var(--honey); font-style: italic; }
.hero-divider {
    width: 60px; height: 2px;
    background: var(--honey);
    margin: 0 auto 32px;
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition-slow) 0.4s;
}
.hero-divider.revealed { opacity: 1; transform: scaleX(1); }
.hero-actions {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--honey), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}
.hero-stats {
    position: absolute;
    bottom: 40px; right: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}
.hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.2);
}

/* === ABOUT — Split Screen === */
.about { padding: 140px 0; background: var(--cream); }
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-col {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-wrapper:hover img {
    transform: scale(1.03);
}
.about-img-badge {
    position: absolute;
    bottom: 24px; right: -16px;
    background: var(--honey);
    color: var(--dark-green);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.badge-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px; left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}
.about-img-secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.about-text-inner { padding-right: 20px; }
.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 16px;
    line-height: 1.7;
}
.about-desc {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 48px; height: 48px;
    background: var(--honey-10);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--honey);
}
.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.value-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey);
    display: inline;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--honey);
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* === COTTAGES === */
.cottages { padding: 120px 0; }
.cottages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.cottage-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.cottage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.cottage-hex {
    position: relative;
    padding: 20px 20px 0;
}
.cottage-hex-inner {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    aspect-ratio: 1;
}
.cottage-hex-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.cottage-card:hover .cottage-hex-inner img {
    transform: scale(1.08);
}
.cottage-info { padding: 24px; }
.cottage-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(9,54,40,0.06);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
}
.cottage-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.cottage-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cottage-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cottage-features span {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}
.cottage-price {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--honey);
    margin: 0 4px;
}
.price-currency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === FEATURES — Mosaic Grid === */
.features { padding: 120px 0; background: var(--cream); }
.features-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.feature-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 260px;
    cursor: pointer;
}
.feature-tile--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 540px;
}
.feature-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.feature-tile:hover img {
    transform: scale(1.05);
}
.feature-tile-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,54,40,0.9) 0%, rgba(9,54,40,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition);
}
.feature-tile:hover .feature-tile-overlay {
    background: linear-gradient(to top, rgba(9,54,40,0.95) 0%, rgba(9,54,40,0.5) 60%, rgba(9,54,40,0.2) 100%);
}
.feature-tile-icon {
    width: 48px; height: 48px;
    margin-bottom: 12px;
}
.feature-tile-icon img {
    width: 48px; height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.feature-tile-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}
.feature-tile-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.feature-tile-icon-only {
    position: absolute; inset: 0;
    background: var(--dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.feature-tile-icon-only:hover {
    background: var(--dark-green-light);
}
.feature-tile-icon-only img {
    width: 56px; height: 56px;
    margin-bottom: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.feature-tile-icon-only h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
}
.feature-tile-icon-only p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* === RECORD === */
.record {
    background: var(--dark-green);
    color: var(--white);
    padding: 140px 0;
    overflow: hidden;
    position: relative;
}
.record-parallax-bg {
    position: absolute; inset: 0;
    background: url('media/campfire.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.record-layout {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.record-badge-large {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.record-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    color: var(--honey);
}
.record-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.record-cta { margin-top: 8px; }
.record-gallery { display: flex; flex-direction: column; gap: 16px; }
.record-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.record-img-main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.record-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.record-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.record-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.record-img:hover img { transform: scale(1.05); }

/* === POOL === */
.pool { padding: 120px 0; background: var(--cream); }
.pool-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.pool-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0 40px;
}
.pool-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.pool-feature-emoji { font-size: 1.5rem; flex-shrink: 0; }
.pool-feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.pool-feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.pool-gallery { display: flex; flex-direction: column; gap: 12px; }
.pool-gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.pool-gallery-main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.pool-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pool-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pool-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pool-gallery-item:hover img { transform: scale(1.05); }

/* === ROOM DETAILS === */
.room-details { padding: 120px 0; }
.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.room-amenity {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.room-amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.room-amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.room-amenity h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.room-amenity p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === GALLERY — Masonry === */
.gallery { padding: 120px 0; background: var(--cream); }
.gallery-masonry {
    columns: 4;
    column-gap: 16px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,54,40,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

/* === TARIFFS === */
.tariffs { padding: 120px 0; }
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.tariff-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.tariff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.tariff-card--featured {
    border-color: var(--honey);
    transform: scale(1.03);
}
.tariff-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.tariff-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--honey);
    color: var(--dark-green);
    text-align: center;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tariff-header {
    padding: 40px 32px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tariff-card--featured .tariff-header { padding-top: 56px; }
.tariff-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
    display: block;
}
.tariff-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.tariff-currency {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.tariff-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1;
}
.tariff-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.tariff-body { padding: 28px 32px 32px; }
.tariff-features {
    list-style: none;
    margin-bottom: 28px;
}
.tariff-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding-left: 28px;
    position: relative;
}
.tariff-features li:last-child { border-bottom: none; }
.tariff-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
}
.tariff-features li.included::before {
    background: var(--honey-10);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23D4A843' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.tariff-features li.excluded {
    color: var(--text-muted);
    opacity: 0.5;
}
.tariff-features li.excluded::before {
    background: rgba(0,0,0,0.05);
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L6 6M6 2L2 6' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* === TESTIMONIALS === */
.testimonials { padding: 120px 0; background: var(--cream); overflow: hidden; }
.testimonials-slider { position: relative; }
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 0;
}
.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--honey);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-green);
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--honey-10);
    color: var(--honey);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.testimonial-prev, .testimonial-next {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--dark-green);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark-green);
    transition: var(--transition);
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--dark-green);
    color: var(--white);
}
.testimonial-dots {
    display: flex;
    gap: 8px;
}
.testimonial-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(9,54,40,0.15);
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--honey);
    width: 24px;
    border-radius: 4px;
}

/* === SEASONAL OFFERS === */
.seasonal { padding: 120px 0; }
.seasonal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}
.seasonal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.seasonal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.seasonal-card--featured {
    background: var(--dark-green);
    color: var(--white);
}
.seasonal-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(212,168,67,0.15);
    color: var(--honey);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.seasonal-content { padding: 36px; }
.seasonal-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--honey-10);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--honey);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.seasonal-card--featured .seasonal-tag {
    background: rgba(212,168,67,0.15);
}
.seasonal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.seasonal-card--featured .seasonal-content h3 { color: var(--white); }
.seasonal-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}
.seasonal-card--featured .seasonal-content p { color: rgba(255,255,255,0.7); }
.seasonal-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}
.seasonal-old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.seasonal-new-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--honey);
}

/* === FAQ === */
.faq { padding: 120px 0; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-green);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--honey); }
.faq-icon {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--honey);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}
.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* === CTA BANNER === */
.cta-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(9,54,40,0.92) 0%, rgba(9,54,40,0.85) 100%);
}
.cta-banner-content {
    position: relative; z-index: 1;
}
.cta-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(212,168,67,0.4);
    border-radius: 50px;
    color: var(--honey);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === INSTAGRAM FEED === */
.instagram-feed { padding: 120px 0; }
.instagram-embed {
    max-width: 100%;
    overflow: hidden;
}
.instagram-fallback { text-align: center; }
.instagram-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    color: var(--dark-green);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}
.instagram-link:hover { color: var(--honey); }
.instagram-grid-fallback {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.ig-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}
.ig-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ig-placeholder:hover img { transform: scale(1.08); }

/* === CONTACTS === */
.contacts { padding: 120px 0; background: var(--cream); }
.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--honey);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-detail-icon {
    width: 48px; height: 48px;
    background: var(--honey-10);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--honey);
}
.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}
.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-light);
}
.contact-detail a {
    color: var(--honey);
    font-weight: 500;
}
.contact-detail a:hover { text-decoration: underline; }
.contact-map-wrapper {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* === FOOTER === */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    height: 50px;
    margin-bottom: 16px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--dark-green);
}
.footer-nav-group h4, .footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}
.footer-nav-group a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}
.footer-nav-group a:hover { color: var(--honey); }
.footer-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-email {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.footer-phone:hover, .footer-email:hover { color: var(--honey); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: var(--honey);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--honey-dark);
    transform: translateY(-4px);
}

/* === SCROLL REVEAL ANIMATIONS === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* === LIGHTBOX === */
.lightbox-overlay {
    position: fixed; inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; }
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .cottages-grid { grid-template-columns: repeat(2, 1fr); }
    .tariffs-grid { gap: 20px; }
    .gallery-masonry { columns: 3; }
    .seasonal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .burger { display: flex; }
    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { position: relative; bottom: 0; left: 0; width: 180px; }
    .record-layout { grid-template-columns: 1fr; gap: 48px; }
    .pool-layout { grid-template-columns: 1fr; gap: 48px; }
    .contacts-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-stats { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .cottages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .features-mosaic { grid-template-columns: 1fr; }
    .feature-tile--large { grid-column: span 1; min-height: 300px; }
    .room-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 2; }
    .tariffs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .tariff-card--featured { transform: none; }
    .tariff-card--featured:hover { transform: translateY(-8px); }
    .seasonal-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(100% - 16px); }
    .testimonial-nav { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .instagram-grid-fallback { grid-template-columns: repeat(3, 1fr); }
    .pool-features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .room-amenities-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 1; }
    .about-stats { flex-direction: column; gap: 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
}

/* === HOUSE SHOWCASE === */
.house-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.house-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
}
.house-main-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.6s ease;
}
.house-main-img:hover img { transform: scale(1.03); }
.house-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.house-thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.house-thumbs img:hover { opacity: 0.8; transform: scale(1.05); }
.house-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.house-spec {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
}
.house-spec-icon { font-size: 1.8rem; }
.house-spec strong {
    display: block;
    color: var(--dark-green);
    font-size: 1rem;
}
.house-spec span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.house-price-box {
    background: var(--dark-green);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}
.house-price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.7;
}
.house-price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.house-price-amount .price-from { font-size: 1rem; opacity: 0.7; }
.house-price-amount .price-currency { font-size: 1rem; }
.house-price-box .btn { width: 100%; text-align: center; }
@media (max-width: 1024px) {
    .house-showcase { grid-template-columns: 1fr; }
}
