/* =====================================================
   DOMKI ROŻNÓW - Nordic Lake House Aesthetic
   ===================================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Nature Palette */
    --color-forest: #1a2e1f;
    --color-forest-light: #2d4a35;
    --color-wood: #8b6f47;
    --color-wood-light: #a68960;
    --color-golden: #c4956a;
    --color-golden-light: #d4a87a;
    --color-mist: #e8ebe4;
    --color-cream: #f7f5f0;
    --color-water: #3d5a4c;
    --color-water-dark: #2a3f35;

    /* Semantic Colors */
    --color-bg: var(--color-cream);
    --color-bg-alt: var(--color-mist);
    --color-text: var(--color-forest);
    --color-text-muted: #5a6b5f;
    --color-primary: var(--color-wood);
    --color-accent: var(--color-golden);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Sizing */
    --container-max: 1400px;
    --container-narrow: 900px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 46, 31, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 46, 31, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 46, 31, 0.15);
    --shadow-glow: 0 0 40px rgba(196, 149, 106, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--color-cream);
}

.preloader-wave {
    width: 120px;
    height: 28px;
    color: var(--color-golden);
    margin-bottom: var(--space-md);
}

.preloader-wave path {
    animation: wave-move 2s ease-in-out infinite;
}

.preloader-wave path:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes wave-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.header.scrolled .nav-link {
    color: var(--color-forest);
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
    background-color: var(--color-forest);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo {
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--color-cream);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-cream);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--color-forest);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: var(--color-forest);
}

.nav-menu {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-forest);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        opacity: 1;
        visibility: visible;
        gap: var(--space-lg);
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .nav-link {
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--color-cream);
        letter-spacing: 0.02em;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-cream);
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
    background: var(--color-wood-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 111, 71, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .btn-outline {
    color: var(--color-forest);
    border-color: rgba(26, 46, 31, 0.2);
}

.header.scrolled .btn-outline:hover {
    background: rgba(26, 46, 31, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translate(3px, -3px);
}

.nav-cta {
    margin-top: var(--space-md);
}

@media (min-width: 1024px) {
    .nav-cta {
        margin-top: 0;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-parallax {
    position: absolute;
    inset: -20%;
    will-change: transform;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 20s ease-out forwards;
}

@keyframes hero-zoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* Strong overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, rgba(26, 46, 31, 0.4) 100%),
        linear-gradient(180deg,
            rgba(26, 46, 31, 0.5) 0%,
            rgba(26, 46, 31, 0.35) 30%,
            rgba(26, 46, 31, 0.4) 70%,
            rgba(26, 46, 31, 0.7) 100%
        );
}

/* Golden Hour Glow Effect */
.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(196, 149, 106, 0.25) 0%,
        rgba(196, 149, 106, 0.1) 30%,
        transparent 70%
    );
    animation: glow-drift 8s ease-in-out infinite alternate;
}

.hero-glow::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 168, 122, 0.15) 0%,
        transparent 60%
    );
    animation: glow-drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(30px, 20px) scale(1.1); opacity: 1; }
}

/* Light Rays Effect */
.hero-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    animation: rays-appear 2s ease forwards 1s;
}

@keyframes rays-appear {
    to { opacity: 1; }
}

.hero-rays::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        transparent 0deg,
        rgba(255, 255, 255, 0.03) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(255, 255, 255, 0.02) 50deg,
        transparent 60deg,
        transparent 90deg,
        rgba(255, 255, 255, 0.03) 100deg,
        transparent 110deg,
        transparent 140deg,
        rgba(255, 255, 255, 0.02) 150deg,
        transparent 160deg,
        transparent 180deg,
        rgba(255, 255, 255, 0.03) 190deg,
        transparent 200deg,
        transparent 230deg,
        rgba(255, 255, 255, 0.02) 240deg,
        transparent 250deg,
        transparent 280deg,
        rgba(255, 255, 255, 0.03) 290deg,
        transparent 300deg,
        transparent 330deg,
        rgba(255, 255, 255, 0.02) 340deg,
        transparent 350deg,
        transparent 360deg
    );
    transform: translateX(-50%);
    animation: rays-rotate 60s linear infinite;
}

@keyframes rays-rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-duration: 18s; animation-delay: 2s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-duration: 20s; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-duration: 16s; animation-delay: 1s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 65%; top: 25%; animation-duration: 22s; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 80%; top: 55%; animation-duration: 17s; animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; top: 35%; animation-duration: 19s; animation-delay: 2s; width: 4px; height: 4px; }
.particle:nth-child(8) { left: 15%; top: 80%; animation-duration: 21s; animation-delay: 6s; width: 3px; height: 3px; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Vignette for depth */
.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        transparent 30%,
        rgba(26, 46, 31, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: radial-gradient(
        ellipse at center,
        rgba(26, 46, 31, 0.3) 0%,
        transparent 70%
    );
    border-radius: var(--radius-xl);
}

.hero-tagline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-golden-light);
    margin-bottom: var(--space-md);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(196, 149, 106, 0.4);
    border-radius: var(--radius-full);
    background: rgba(26, 46, 31, 0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.2);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.7s; }
.title-line:nth-child(2) { animation-delay: 0.9s; }
.title-line:nth-child(3) { animation-delay: 1.1s; }

.title-accent {
    font-style: italic;
    color: var(--color-golden-light);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -5%;
    width: 110%;
    height: 0.15em;
    background: linear-gradient(90deg, transparent, var(--color-golden), transparent);
    opacity: 0.5;
    animation: underline-glow 3s ease-in-out infinite;
}

@keyframes underline-glow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.9); }
    50% { opacity: 0.6; transform: scaleX(1); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.3s;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.5s;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-golden) 0%, var(--color-wood) 100%);
    box-shadow:
        0 4px 20px rgba(196, 149, 106, 0.4),
        0 0 40px rgba(196, 149, 106, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-golden-light) 0%, var(--color-wood-light) 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(196, 149, 106, 0.5),
        0 0 60px rgba(196, 149, 106, 0.3);
}

.hero-cta .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-md);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.8s;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        var(--color-golden),
        transparent
    );
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Hero Decorative Elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-leaf {
    position: absolute;
    color: rgba(196, 149, 106, 0.15);
}

.decor-leaf-1 {
    width: 80px;
    top: 20%;
    left: 5%;
    animation: leaf-float 8s ease-in-out infinite;
}

.decor-leaf-2 {
    width: 60px;
    bottom: 25%;
    right: 8%;
    animation: leaf-float 6s ease-in-out infinite reverse;
}

@keyframes leaf-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(
        180deg,
        rgba(26, 46, 31, 0.03) 0%,
        transparent 100%
    );
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.feature-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 111, 71, 0.1);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =====================================================
   COTTAGES SECTION
   ===================================================== */
.cottages {
    padding: var(--space-3xl) 0;
    background: var(--color-mist);
}

.cottages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .cottages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

.cottage-card {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--color-cream);
    box-shadow: 0 8px 30px rgba(26, 46, 31, 0.12);
    transform: translateY(0) translateZ(0);
    will-change: transform, box-shadow;
    transition:
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cottage-card:hover {
    transform: translateY(-16px) translateZ(0);
    box-shadow:
        0 25px 80px rgba(26, 46, 31, 0.25),
        0 0 0 2px rgba(196, 149, 106, 0.4),
        0 0 100px rgba(196, 149, 106, 0.2);
}

.cottage-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

@media (min-width: 768px) {
    .cottage-image {
        height: 400px;
    }
}

.cottage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cottage-card:hover .cottage-image img {
    transform: scale(1.12);
}

/* Light sweep effect */
.cottage-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 70%,
        transparent 100%
    );
    transform: translateX(-180%);
    transition: none;
}

.cottage-card:hover .cottage-image::before {
    transform: translateX(180%);
    transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cottage-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(26, 46, 31, 0.5) 0%,
        transparent 60%
    );
    transition: opacity 1.2s ease;
}

.cottage-card:hover .cottage-image-overlay {
    opacity: 0.8;
}

.cottage-content {
    padding: var(--space-lg);
}

.cottage-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(139, 111, 71, 0.15);
    line-height: 1;
    margin-bottom: var(--space-xs);
    transition: color 1.2s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.cottage-card:hover .cottage-number {
    color: rgba(196, 149, 106, 0.5);
    transform: translateX(8px);
}

.cottage-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.cottage-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.cottage-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.cottage-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cottage-features svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.cottage-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--color-primary);
    transition: color 1s ease, gap 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.cottage-link svg {
    width: 20px;
    height: 20px;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.cottage-card:hover .cottage-link {
    color: var(--color-golden);
    gap: var(--space-md);
}

.cottage-card:hover .cottage-link svg {
    transform: translateX(10px);
}

/* =====================================================
   LOCATION SECTION
   ===================================================== */
.location {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Parallax container */
.location-image {
    position: absolute;
    inset: -100px 0;
    z-index: 0;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0) scale(1.1);
    will-change: transform;
    transition: transform 0.1s linear;
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(26, 46, 31, 0.92) 0%,
        rgba(26, 46, 31, 0.7) 40%,
        rgba(26, 46, 31, 0.4) 70%,
        rgba(26, 46, 31, 0.2) 100%
    );
    z-index: 1;
}

@media (max-width: 768px) {
    .location-overlay {
        background: rgba(26, 46, 31, 0.8);
    }
}

.location-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: var(--space-3xl) 0;
}

.location .section-tag {
    color: var(--color-golden);
}

.location .section-title {
    color: var(--color-cream);
}

.location .section-title em {
    color: var(--color-golden);
}

.location-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.location-text strong {
    color: var(--color-golden);
    font-weight: 500;
}

/* Stats with animation */
.location-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 149, 106, 0.2);
    backdrop-filter: blur(10px);
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 149, 106, 0.4);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-golden);
    line-height: 1;
    transition: transform 0.4s ease;
}

.stat:hover .stat-value {
    transform: scale(1.05);
}

/* Counter animation */
.stat-value[data-counter] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-value[data-counter].counted {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* =====================================================
   ACCESS SECTION
   ===================================================== */
.access {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .access-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.access-content {
    max-width: 500px;
}

.access-text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.access-note {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(139, 111, 71, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.access-note svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.access-note p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.access-visual {
    display: flex;
    justify-content: center;
}

.access-path {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.path-svg {
    width: 100%;
    height: auto;
    color: var(--color-primary);
}

.path-line {
    stroke-dashoffset: 300;
    animation: draw-path 3s ease forwards;
}

@keyframes draw-path {
    to { stroke-dashoffset: 0; }
}

.path-dot {
    opacity: 0;
    animation: dot-appear 0.5s ease forwards;
}

.path-start { animation-delay: 0.5s; }
.path-end { animation-delay: 2.5s; }

@keyframes dot-appear {
    to { opacity: 1; }
}

.path-trees path {
    opacity: 0;
    animation: tree-grow 0.5s ease forwards;
}

.path-trees path:nth-child(1) { animation-delay: 1s; }
.path-trees path:nth-child(2) { animation-delay: 1.3s; }
.path-trees path:nth-child(3) { animation-delay: 1.6s; }
.path-trees path:nth-child(4) { animation-delay: 1.9s; }

@keyframes tree-grow {
    to { opacity: 0.4; }
}

.path-label {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.path-label-start {
    bottom: -5px;
    left: 0;
}

.path-label-end {
    top: -5px;
    right: 0;
}

/* =====================================================
   TESTIMONIAL SECTION
   ===================================================== */
.testimonial {
    position: relative;
    padding: var(--space-3xl) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 31, 0.85);
}

.testimonial-quote {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 var(--space-md);
}

.quote-mark {
    width: 50px;
    height: 40px;
    color: var(--color-golden);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.quote-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.source-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.source-stars {
    display: flex;
    gap: 4px;
}

.source-stars svg {
    width: 18px;
    height: 18px;
    color: var(--color-golden);
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.final-cta {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--color-forest);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.cta-title em {
    font-style: italic;
    color: var(--color-golden);
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
}

.cta-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    color: var(--color-cream);
}

.cta-waves svg {
    width: 100%;
    height: 100%;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    position: relative;
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--color-cream);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-lg);
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-forest);
    border-color: var(--color-primary);
}

.btn-booking:hover {
    background: var(--color-primary);
    color: var(--color-cream);
}

.booking-icon {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    color: var(--color-primary);
    transform: translateY(-50%);
}

.footer-decor svg {
    width: 100%;
    height: 100%;
}

/* =====================================================
   ANIMATIONS - AOS Replacement
   ===================================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   SUBPAGE HERO (shorter variant)
   ===================================================== */
.hero--sub {
    min-height: 75vh;
}

@media (min-width: 768px) {
    .hero--sub {
        min-height: 80vh;
    }
}

/* Active nav link */
.nav-link--active {
    color: var(--color-golden-light) !important;
}

.nav-link--active::after {
    width: 100% !important;
    background-color: var(--color-golden) !important;
}

.header.scrolled .nav-link--active {
    color: var(--color-primary) !important;
}

/* =====================================================
   QUICK STATS BAR
   ===================================================== */
.quick-stats {
    background: var(--color-forest);
    padding: var(--space-lg) 0;
    position: relative;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .quick-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.quick-stat svg {
    width: 28px;
    height: 28px;
    color: var(--color-golden);
    margin-bottom: 4px;
}

.quick-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-cream);
    line-height: 1.2;
}

.quick-stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* =====================================================
   DETAIL SECTIONS (cottage detail page)
   ===================================================== */
.detail-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.detail-section--alt {
    background: var(--color-mist);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .detail-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }

    .detail-content-grid--reverse {
        direction: rtl;
    }

    .detail-content-grid--reverse > * {
        direction: ltr;
    }
}

.detail-text {
    max-width: 560px;
}

.detail-paragraph {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.detail-paragraph:last-child {
    margin-bottom: 0;
}

.detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* =====================================================
   EQUIPMENT SECTION
   ===================================================== */
.equipment {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

.equipment-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.equipment-card:hover {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.equipment-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.equipment-card-header svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.equipment-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-forest);
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.equipment-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding-left: var(--space-sm);
    position: relative;
}

.equipment-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-golden);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55em;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-mist);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26, 46, 31, 0.1);
    transition: box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    box-shadow: 0 15px 50px rgba(26, 46, 31, 0.2), 0 0 0 2px rgba(196, 149, 106, 0.3);
    transform: translateY(-6px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item--wide img {
    aspect-ratio: 21 / 9;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Light sweep effect (same as cottage cards) */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 70%,
        transparent 100%
    );
    transform: translateX(-180%);
    transition: none;
}

.gallery-item:hover::before {
    transform: translateX(180%);
    transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(0deg, rgba(26, 46, 31, 0.7) 0%, transparent 100%);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-cream);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   LOCATION BRIEF
   ===================================================== */
.location-brief {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.location-brief-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.location-brief-content .detail-paragraph {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

/* Outline button on light bg */
.btn-outline--dark {
    color: var(--color-forest);
    border: 1px solid rgba(139, 111, 71, 0.3);
}

.btn-outline--dark:hover {
    background: rgba(139, 111, 71, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* =====================================================
   CROSS-SELL SECTION
   ===================================================== */
.cross-sell {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-mist);
}

.cross-sell-content {
    text-align: center;
    max-width: var(--container-narrow);
    margin: 0 auto var(--space-xl);
}

.cross-sell-content .detail-paragraph {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cottage-card--horizontal {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cottage-card--horizontal {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cottage-card--horizontal .cottage-image {
        border-radius: var(--radius-xl) 0 0 var(--radius-xl);
        height: 100%;
    }

    .cottage-card--horizontal .cottage-image img {
        height: 100%;
    }
}

/* =====================================================
   ATTRACTIONS PAGE
   ===================================================== */

/* Featured attraction card (image + text side by side) */
.attract-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.attract-section--alt {
    background: var(--color-mist);
}

.attract-card--featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .attract-card--featured {
        grid-template-columns: 1fr 1fr;
    }

    .attract-card--reverse {
        direction: rtl;
    }

    .attract-card--reverse > * {
        direction: ltr;
    }
}

.attract-card-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.attract-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.attract-card--featured:hover .attract-card-image img {
    transform: scale(1.05);
}

.attract-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 46, 31, 0.3) 0%, transparent 50%);
}

.attract-card-body {
    padding: var(--space-xl);
}

@media (min-width: 1024px) {
    .attract-card-body {
        padding: var(--space-2xl);
    }
}

.attract-icon {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.attract-icon svg {
    width: 100%;
    height: 100%;
}

.attract-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.attract-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.attract-desc:last-of-type {
    margin-bottom: var(--space-lg);
}

.attract-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attract-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.attract-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-golden);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5em;
}

.attract-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(139, 111, 71, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    vertical-align: middle;
}

/* Parallax divider between sections */
.parallax-divider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .parallax-divider {
        height: 400px;
    }
}

.parallax-divider-bg {
    position: absolute;
    inset: -100px 0;
}

.parallax-divider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0) scale(1.1);
    will-change: transform;
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--color-mist) 0%, transparent 20%),
        linear-gradient(0deg, var(--color-bg) 0%, transparent 20%),
        rgba(26, 46, 31, 0.2);
}

/* Tile cards grid (smaller attraction categories) */
.attract-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .attract-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

.attract-tile {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.attract-tile:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.attract-tile-icon {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.attract-tile:hover .attract-tile-icon {
    transform: scale(1.1);
}

.attract-tile-icon svg {
    width: 100%;
    height: 100%;
}

.attract-tile-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.attract-tile-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.attract-tile-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.attract-tile-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.attract-tile-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-golden);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5em;
}

/* =====================================================
   DISTANCES SECTION
   ===================================================== */
.distances {
    position: relative;
    padding: var(--space-3xl) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.distances-bg {
    position: absolute;
    inset: -100px 0;
    z-index: 0;
}

.distances-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0) scale(1.1);
    will-change: transform;
}

.distances-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 31, 0.88);
    z-index: 1;
}

.distances-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.distances .section-tag {
    color: var(--color-golden);
}

.distances .section-title {
    color: var(--color-cream);
}

.distances .section-title em {
    color: var(--color-golden);
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .distances-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .distances-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.distance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 149, 106, 0.2);
    backdrop-filter: blur(10px);
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}

.distance-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 149, 106, 0.4);
}

.distance-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-golden);
    line-height: 1.2;
}

.distance-place {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-top: 4px;
}

.distance-km {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* Compact hero for contact */
.hero--compact {
    min-height: 60vh;
}

@media (min-width: 768px) {
    .hero--compact {
        min-height: 65vh;
    }
}

/* Main contact grid */
.contact-main {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

/* Contact methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(196, 149, 106, 0.3);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 111, 71, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    transition: background var(--transition-fast);
}

.contact-method:hover .contact-method-icon {
    background: rgba(139, 111, 71, 0.15);
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-method-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-top: 2px;
}

/* Mobile phone CTA button */
.contact-phone-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

@media (min-width: 1024px) {
    .contact-phone-btn {
        display: none;
    }
}

/* Booking cards */
.contact-booking {
    padding-top: var(--space-md);
}

.contact-booking .detail-paragraph {
    margin-bottom: var(--space-xl);
}

.booking-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.booking-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 111, 71, 0.1);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .booking-card {
        grid-template-columns: 160px 1fr;
    }
}

.booking-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(196, 149, 106, 0.3);
}

.booking-card-image {
    position: relative;
    overflow: hidden;
}

.booking-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-card:hover .booking-card-image img {
    transform: scale(1.1);
}

.booking-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(26, 46, 31, 0.1) 100%);
}

.booking-card-body {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-card-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(139, 111, 71, 0.2);
    line-height: 1;
}

.booking-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-forest);
    margin: 2px 0 4px;
}

.booking-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.booking-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap var(--transition-base), color var(--transition-fast);
}

.booking-card:hover .booking-card-cta {
    color: var(--color-golden);
    gap: 10px;
}

/* Directions section */
.contact-directions {
    padding: var(--space-3xl) 0;
    background: var(--color-mist);
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .directions-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.directions-text .access-note {
    margin-bottom: var(--space-xl);
}

.directions-distances {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.directions-distance {
    display: flex;
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.directions-distance-time {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
}

.directions-distance-place {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .map-placeholder {
        min-height: 500px;
        position: sticky;
        top: 120px;
    }
}

.map-placeholder-inner {
    text-align: center;
    color: var(--color-text-muted);
    padding: var(--space-xl);
}

.map-placeholder-inner svg {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    opacity: 0.4;
    margin-bottom: var(--space-md);
}

.map-placeholder-inner span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.map-placeholder-inner p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* =====================================================
   AVAILABILITY CALENDAR PAGE
   ===================================================== */

/* Calendar section layout */
.calendar-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.calendar-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-lg);
}

.calendar-intro .detail-paragraph {
    margin-bottom: var(--space-md);
}

/* Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.calendar-legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.calendar-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.calendar-legend-dot--available {
    background: var(--color-water);
}

.calendar-legend-dot--booked {
    background: #b85c3a;
}

.calendar-legend-dot--past {
    background: var(--color-mist);
}

/* Cabins grid */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* Calendar card */
.cal-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 111, 71, 0.12);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    opacity: 0;
    transform: translateY(16px);
    animation: calFadeUp 0.6s ease forwards;
}

.cal-card:nth-child(2) {
    animation-delay: 0.12s;
}

@keyframes calFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.cal-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Card header */
.cal-card-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(139, 111, 71, 0.08);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cal-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.cal-card:nth-child(1) .cal-card-icon {
    background: rgba(61, 90, 76, 0.1);
}

.cal-card:nth-child(2) .cal-card-icon {
    background: rgba(139, 111, 71, 0.1);
}

.cal-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-forest);
}

/* Month navigation */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
}

.cal-nav button {
    background: none;
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: var(--radius-md);
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.cal-nav button:hover:not([disabled]) {
    background: var(--color-mist);
    border-color: var(--color-primary);
}

.cal-nav button[disabled] {
    opacity: 0.3;
    cursor: default;
}

.cal-month-label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-forest);
    text-transform: capitalize;
}

/* Calendar body */
.cal-body {
    padding: 0 var(--space-lg) var(--space-lg);
}

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

.cal-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.cal-day--empty {
    visibility: hidden;
}

.cal-day--past {
    color: var(--color-mist);
}

.cal-day--available {
    color: var(--color-water);
    background: rgba(61, 90, 76, 0.08);
}

.cal-day--available:hover {
    background: rgba(61, 90, 76, 0.15);
}

.cal-day--booked {
    color: #b85c3a;
    background: rgba(184, 92, 58, 0.08);
    font-weight: 600;
}

.cal-day--today {
    box-shadow: inset 0 0 0 2px var(--color-forest);
}

/* Status bar */
.cal-status {
    padding: 0.85rem var(--space-lg);
    border-top: 1px solid rgba(139, 111, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.cal-sync {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cal-sync-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-water);
}

.cal-sync-dot--error {
    background: #b85c3a;
}

.cal-available-count {
    font-weight: 600;
    color: var(--color-water);
}

/* Calendar loading state */
.cal-loading {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cal-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-mist);
    border-top-color: var(--color-water);
    border-radius: 50%;
    animation: calSpin 0.8s linear infinite;
    margin: 0 auto 0.75rem;
}

@keyframes calSpin {
    to { transform: rotate(360deg); }
}

/* Calendar CTA */
.calendar-cta {
    text-align: center;
    padding: var(--space-xl) 0 0;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-cta .detail-paragraph {
    margin-bottom: var(--space-md);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
