:root {
    --primary: #2C5F3D;
    --primary-light: #4A8259;
    --accent: #D4A574;
    --cream: #F8F4EF;
    --charcoal: #2B2B2B;
    --earth: #7A6548;
    --mist: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    font-weight: 500;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

/* Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 2rem;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.site-header.scrolled .header-logo {
    color: var(--primary);
}

.site-header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-header nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.site-header.scrolled nav a {
    color: var(--charcoal);
}

.site-header nav a:hover {
    color: var(--accent);
}

.header-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--earth);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 61, 0.35) 0%, rgba(74, 130, 89, 0.25) 100%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero h1 {
    font-size: clamp(1.5rem, 6vw, 6rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
    animation: fadeInUp 1.2s ease-out 0.6s both;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.cta-button:hover {
    background: var(--earth);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    color: var(--primary);
}

/* SVG Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.feature-icon .icon {
    width: 2rem;
    height: 2rem;
}

.location-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.fireplace-icon {
    margin-bottom: 0.5rem;
}

.fireplace-icon .icon {
    width: 2rem;
    height: 2rem;
}

/* Quick Info Bar */
.quick-info {
    background: var(--cream);
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

.quick-info-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--earth);
}

.quick-info-item strong {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--earth);
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: var(--primary-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 61, 0.9) 0%, transparent 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--earth);
    line-height: 1.8;
}

/* Accommodation Details */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.accommodation-card {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary);
}

.accommodation-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.accommodation-card ul {
    list-style: none;
    padding: 0;
}

.accommodation-card li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accommodation-card li:last-child {
    border-bottom: none;
}

.accommodation-card li::before {
    content: '✓';
    color: var(--primary-light);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Location Section */
.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-item-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.location-item-content p {
    color: var(--earth);
    font-size: 0.95rem;
}

/* Star Ratings */
.star-rating {
    color: #f4b942;
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 4px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--charcoal);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    padding: 6rem 4rem;
    margin: 4rem auto;
    max-width: 800px;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Scroll Animations (progressive enhancement) */
.js-loaded .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fireplace section responsive */
    #fireplace > div > div:nth-child(3) {
        grid-template-columns: 1fr !important;
    }
    #fireplace > div > div:nth-child(5) {
        grid-template-columns: 1fr !important;
    }

    .site-header nav {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .location-highlights {
        grid-template-columns: 1fr;
    }

    /* Gallery overlays always visible on mobile */
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(44, 95, 61, 0.85) 0%, transparent 100%);
        padding: 1.5rem;
    }

    .gallery-overlay p {
        display: none;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .trust-bar-inner {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .quick-info-inner {
        gap: 1.5rem;
    }

    .header-inner {
        gap: 0.5rem;
    }

    .header-logo {
        font-size: 1.2rem;
    }

    .cta-section {
        margin: 2rem 1rem;
        padding: 4rem 2rem;
    }
}
