/* Tarn Sike Woodland Retreat - Warm Grey Palette */

/* CSS Variables - Warm Grey Theme */
:root {
    /* Warm Grey Palette */
    --cream: #FDFAF6;              /* Warm ivory - soft and natural */
    --deep-forest: #262220;        /* Deep warm charcoal - rich depth */
    --moss: #7A7068;               /* Warm stone grey - calm and grounded */
    --sage: #A09890;               /* Soft ash grey - quiet elegance */
    --warm-stone: #DDD5CB;         /* Warm greige - grey-beige harmony */
    --gold-accent: #C96A28;        /* Burnt orange - bold CTA accent */
    --charcoal: #2B2B2B;           /* True charcoal - modern contrast */

    /* Additional Warm Accents */
    --mint: #D4C4B8;               /* Pale blush - warm touch */
    --terracotta: #B8876A;         /* Warm clay - earthy warmth */
    --slate: #7A8A8C;              /* Warm slate - muted depth */
    --sand: #F0E8DA;               /* Warm sand - natural light */
    --pine: #3C3028;               /* Deep espresso - dark warmth */
}

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

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--warm-stone);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Navigation - Modern Clean */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(122, 112, 104, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

nav.scrolled {
    padding: 0.75rem 1.0rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

nav.scrolled .logo-svg {
    height: 80px;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--deep-forest);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    padding-right:0.4rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--moss);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--moss);
}

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

/* Book — orange pill button in the nav */
.nav-book-btn {
    background: var(--gold-accent);
    color: white !important;
    padding: 0.45rem 1.25rem !important;
    letter-spacing: 0.1em;
    transition: background 0.3s ease !important;
}

.nav-book-btn:hover {
    background: #A35522;
    color: white !important;
}

.nav-book-btn::after {
    display: none !important;
}

/* Mobile nav right-side group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-book-btn {
    display: none;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 26px;
    height: 2px;
    background: var(--moss);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Modern Overlay */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
}

/* Hero video — fades in over the static image once playing */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* Respect reduced-motion preference — keep the static image */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(38, 34, 32, 0.2) 0%, 
        rgba(38, 34, 32, 0.45) 100%);
    z-index: 1;
}

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

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

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out 0.2s both;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--gold-accent);
    color: white !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius:25px;
    animation: fadeInUp 1.4s ease-out 0.4s both;
    box-shadow: 0 8px 30px rgba(201, 106, 40, 0.4);
}


.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 106, 40, 0.55);
    background-color: #A35522;
}

/* Page Header - Clean Modern */
.page-header {
    padding: 10rem 4rem 5rem;
    background: var(--deep-forest);
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--moss) 50%, 
        transparent 100%);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Section Styling - Modern Spacing */
section {
    padding: 7rem 4rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--moss);
    font-weight: 300;
    line-height: 1.8;
}

/* About Section - Modern Card Layout */
.about {
    background: var(--cream);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-weight: 300;
}

.about .section-title {
    color: var(--deep-forest);
}

.about .section-subtitle {
    color: var(--deep-forest);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Post additional images */
.post-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.post-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* Instagram Section*/
.instagram {
    background: var(--deep-forest);
}

.instagram-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 950px) {
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.instagram .section-title{
    color:var(--warm-stone);
}

.instagram .section-subtitle{
    color:var(--warm-stone);
}

.instagram-text p {
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-weight: 300;
}


/* Pods Section - Modern Clean Cards */
.pods {
    background: var(--cream);
    color: var(--charcoal);
}

.pods .section-title {
    color: var(--deep-forest);
}

.pods .section-subtitle {
    color: var(--moss);
}

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

.pod-feature {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border-left: 3px solid var(--moss);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
}

.pod-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--sage);
}

.pod-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--moss);
}

.pod-feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--deep-forest);
}

.pod-feature p {
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 300;
}

/* Gallery Section - Modern Grid */
.gallery {
    background: var(--deep-forest);
}

.gallery .section-title,
.gallery .section-subtitle{
    color: var(--warm-stone);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: 25px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 60%, 
        rgba(38, 34, 32, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Panoramic / wide item spans full grid width */
.gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/6;
}

/* Location Section */
.location {
    background: var(--cream);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.location-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--deep-forest);
    margin-bottom: 2rem;
    font-weight: 400;
}

.location-text p {
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.highlights-list {
    list-style: none;
    margin: 2rem 0;
}

.highlights-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(122, 112, 104, 0.15);
    color: var(--charcoal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
}

.highlights-list li::before {
    content: '→';
    color: var(--moss);
    font-weight: bold;
    font-size: 1.3rem;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Footer CTA - Modern Minimal */
.footer-cta {
    padding: 4rem 4rem;
    background: var(--deep-forest);
    text-align: center;
    color: white;
    position: relative;
}

.footer-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

/* Content Pages */
.content {
    /*ax-width: 900px;*/
    margin: 0 auto;
    background:var(--deep-forest);
    padding: 3rem;
}

.content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--warm-stone);
    margin: 3rem 0 1.5rem;
    font-weight: 500;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.content a {
    color: var(--gold-accent);
    transition: color 0.3s ease;
}

.content a:hover {
    color: var(--warm-stone);
}

/* FAQ Specific */
.faq-item {
    margin-bottom: 2.5rem;
    /*border-bottom: 1px solid var(--warm-stone);*/
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-image: linear-gradient(90deg, transparent 0%, var(--moss) 50%, transparent 100%) 1;
    border-width: 0 0 1px 0;
    border-style: solid;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--deep-forest);
    margin-bottom: 1rem;
    font-weight: 500;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cream);
    font-weight: 300;
}

.faq-answer ul {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info h2,
.contact-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--warm-stone);
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item p {
    line-height: 1.8;
    font-weight: 300;
}

.contact-item a {
    color: var(--warm-stone);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--sage);
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cream);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(122, 112, 104, 0.2);
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(122, 112, 104, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gold-accent);
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.submit-btn:hover {
    background: #A35522;
    border-color: #A35522;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 106, 40, 0.35);
}

/* Footer - Modern Clean */
footer {
    padding: 4rem 4rem 2rem;
    background: var(--warm-stone);
    color: var(--deep-forest);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--deep-forest);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--deep-forest);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--gold-accent);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(38, 34, 32, 0.15);
    font-weight: 300;
}

/* Lightbox Gallery Styles */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 34, 32, 0.97);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: lightbox-spin 0.8s linear infinite;
    display: none;
}

@keyframes lightbox-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(38, 34, 32, 0.7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.lightbox-title {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(38, 34, 32, 0.7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    nav {
        padding: 0.6rem 0.4rem;
    }

    nav.scrolled {
        padding: 0.6rem 0.4rem;
    }

    .logo-svg,
    nav.scrolled .logo-svg {
        height: 60px;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-book-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--gold-accent);
        color: white !important;
        text-decoration: none;
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        border-radius:25px;
    }

    .mobile-book-btn:hover {
        background: #A35522;
        color: white !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(253, 250, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(122, 112, 104, 0.1);
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .nav-links a::after {
        display: none;
    }

    /* Book button in mobile menu — full-width feel */
    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 2rem;
    }

    .nav-book-btn {
        padding: 0.7rem 1.5rem !important;
        display: inline-block;
    }
}

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

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .content {
        padding: 3rem 2rem;
    }

    .about-image {
        height: 350px;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-image-container {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-image {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-counter {
        top: 0.5rem;
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .lightbox-caption {
        bottom: 1rem;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        max-width: 90%;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }
}

.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

body.lightbox-open {
    overflow: hidden;
}

   /* Additional styles for pods page */
        .pod-detail {
            padding: 6rem 4rem;
            background: var(--cream);
        }
        
        .pod-detail--dark {
            background: var(--deep-forest);
        }
        
        .pod-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pod-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .pod-layout.reverse {
            direction: rtl;
        }
        
        .pod-layout.reverse > * {
            direction: ltr;
        }
        
        .pod-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .pod-main-image {
            grid-column: 1 / -1;
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .pod-thumbnail {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .pod-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--deep-forest);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .pod-detail--dark .pod-content h2,
        .pod-detail--dark .pod-subtitle {
            color: var(--warm-stone);
        }

        .pod-detail--dark .pod-description {
            color: white;
        }
        
        .pod-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: var(--deep-forest);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .pod-description {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--charcoal);
            margin-bottom: 2rem;
        }

        .content .pod-description {
            color: var(--warm-stone);
        }

        .pod-features {
            background: white;
            padding: 2rem;
            border-radius: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .pod-features h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--deep-forest);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .features-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .features-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
            color:var(--deep-forest);
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li::before {
            content: '✓';
            color: var(--moss, var(--gold-accent));
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .pod-cta {
            margin-top: 2rem;
        }

        .pod-gallery-btn {
            grid-column: 1 / -1;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            width: fit-content;
            margin-top: 0.5rem;
        }

        .pod-gallery-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.7);
        }

        /* On light-background pods (Potts, Rayseat) */
        .pod-detail:not(.pod-detail--dark) .pod-gallery-btn {
            border-color: rgba(0, 0, 0, 0.25);
            color: var(--deep-forest);
        }

        .pod-detail:not(.pod-detail--dark) .pod-gallery-btn:hover {
            background: rgba(0, 0, 0, 0.06);
            border-color: rgba(0, 0, 0, 0.4);
        }
        
        @media (max-width: 968px) {
            .pod-detail {
                padding: 4rem 2rem;
            }
            
            .pod-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .pod-layout.reverse {
                direction: ltr;
            }
            
            .pod-main-image {
                height: 300px;
            }
            
            .pod-thumbnail {
                height: 150px;
            }
        }


/* Shared pod features section */
        .pod-features-shared {
            background: var(--warm-stone);
            padding: 4rem 4rem;
        }

        .pod-features-shared .pod-container {
            max-width: 900px;
        }

        .pod-features-shared h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--deep-forest);
            margin-bottom: 0.4rem;
            font-weight: 500;
            text-align: center;
        }

        .pod-features-shared .section-intro {
            text-align: center;
            color: var(--charcoal);
            margin-bottom: 2.5rem;
            font-size: 1rem;
        }

        .features-list--grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 3rem;
            background: white;
            padding: 2rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .pod-dog-friendly,
        .pod-no-dogs {
            display: inline-block;
            font-size: 0.85rem;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 20px;
            padding: 0.3rem 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pod-dog-friendly {
            background: var(--moss);
            color: white;
            border: 1px solid var(--moss);
        }

        .pod-no-dogs {
            background: var(--charcoal);
            color: white;
            border: 1px solid var(--charcoal);
        }

        .features-footnote {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--charcoal);
            opacity: 0.7;
        }

        @media (max-width: 968px) {
            .pod-features-shared {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 600px) {
            .features-list--grid {
                grid-template-columns: 1fr;
            }
        }

/* ============================================
   EXPLORE THE AREA PAGE
   ============================================ */

.explore-intro {
    padding: 5rem 4rem;
    background: var(--cream);
    text-align: center;
}

.explore-intro-inner {
    max-width: 880px;
    margin: 0 auto;
}

.explore-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-forest);
    margin-bottom: 2rem;
    font-weight: 400;
}

.explore-intro p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--charcoal);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* Activity overview cards */
.activities-overview {
    padding: 5rem 4rem;
    background: var(--deep-forest);
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-left: 3px solid var(--moss);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.35s ease;
    border-radius: 25px;
}


.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-left-color: var(--gold-accent);
}

.activity-card .activity-icon {
    width: 52px;
    height: 52px;
    color: var(--moss);
    margin: 0 auto 1.5rem;
}

.activity-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    color: var(--deep-forest);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.activity-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.75;
}

/* Activity sections */
.activity-section {
    padding: 6rem 4rem;
}

.activity-section.bg-cream { background: var(--cream); }
.activity-section.bg-sand  { background: var(--sand); }
.activity-section.bg-deepforest  { background: var(--deep-forest); }

.activity-section .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.subsection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    color: var(--deep-forest);
    font-weight: 500;
    margin: 3.5rem 0 1.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(122, 112, 104, 0.2);
}

.subsection-title:first-of-type {
    margin-top: 0;
}

#cycling .section-subtitle, 
#cycling .section-title, 
#cycling .subsection-title,
#activities-overview .section-title{
    color:var(--warm-stone);
}

#cycling .subsection-title{
   border-bottom: 1px solid var(--warm-stone);
}

/* Destination cards grid */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.destination-card {
    background: white;
    padding: 1.75rem 2rem;
    border-left: 3px solid var(--moss);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    transition: box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.destination-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    border-left-color: var(--sage);
}

.destination-card--feature {
    grid-column: 1 / -1;
}

.destination-card--feature .card-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.destination-card--feature .card-text {
    flex: 1;
    min-width: 0;
}

.destination-card--feature .card-image {
    width: 38%;
    max-width: 440px;
    border-radius: 12px;
    height: auto;
}

.destination-card--feature .card-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 38%;
    max-width: 440px;
}

.destination-card--feature .card-images .card-image {
    width: 100%;
    max-width: none;
}

.destination-card--feature .card-images .card-image--main {
    flex: 1;
}

.destination-card--feature .card-images .card-image--thumb {
    width: 60%;
    align-self: center;
}

.destination-card .distance-tag {
    display: inline-block;
    background: var(--warm-stone);
    color: var(--deep-forest);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.destination-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--deep-forest);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.destination-card p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--charcoal);
    font-weight: 300;
}

/* External links within destination cards */
.dest-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(122, 112, 104, 0.12);
}

.dest-link {
    color: var(--moss);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.dest-link::after {
    content: '→';
    font-size: 0.9em;
}

.dest-link:hover {
    color: var(--deep-forest);
}

.dest-link.komoot {
    color: var(--slate);
}

.dest-link.komoot:hover {
    color: var(--deep-forest);
}

/* Section banner image */
.section-banner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (max-width: 968px) {
    .explore-intro,
    .activities-overview,
    .activity-section {
        padding: 4rem 2rem;
    }

    .activity-cards {
        grid-template-columns: 1fr;
    }

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

    .destination-card--feature .card-inner {
        flex-direction: column;
    }

    .destination-card--feature .card-images {
        width: 100%;
        max-width: none;
    }

    .destination-card--feature .card-image {
        width: 100%;
        height: auto;
    }

    .section-banner-img {
        height: 240px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .activity-cards {
        gap: 1.25rem;
    }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Logo anchor link — inner pages wrap the logo in <a href="index.html"> */
.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

/* Inline body-text links styled with gold accent */
.link-gold {
    color: var(--gold-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-gold:hover {
    color: var(--deep-forest);
}

/* Centred CTA button wrapper used inside content sections */
.cta-center {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Closing paragraph separator (border-top rule above a final paragraph) */
.section-closer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(140, 128, 120, 0.15);
}

/* Off-screen element — used for form honeypot fields */
.offscreen {
    position: absolute;
    left: -5000px;
}

/* ============================================
   EXPERIENCE HUB GRID
   ============================================ */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    /*max-width: 1100px;*/
    margin: 0 auto;
    padding: 6rem 4rem;
    background:var(--deep-forest);
}

.experience-card {
    background: white;
    padding: 3rem 2.5rem;
    border-left: 3px solid var(--moss);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    border-radius:25px;
    color: inherit;
    display: block;
    transition: all 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-left-color: var(--gold-accent);
}

.experience-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
    color: var(--gold-accent);
    display: block;
}

.experience-card__tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.experience-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--deep-forest);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.experience-card__desc {
    font-size: 0.95rem;
    color: var(--moss);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.experience-card__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-forest);
}

@media (max-width: 800px) {
    .experience-grid {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER & MODAL
   ============================================ */

/* ── Banner ─────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--deep-forest);
    color: var(--warm-stone);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 260px;
}

.cookie-banner__text p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.cookie-banner__text p + p {
    margin-top: 0.35rem;
}

.cookie-banner__link {
    color: var(--gold-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.85rem;
}

.cookie-banner__link:hover {
    color: var(--warm-stone);
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: var(--gold-accent);
    color: white;
}

.cookie-banner__btn--accept:hover {
    background: #A35522;
}

.cookie-banner__btn--manage {
    background: transparent;
    color: var(--warm-stone);
    border: 1px solid rgba(221, 213, 203, 0.4);
}

.cookie-banner__btn--manage:hover {
    border-color: var(--warm-stone);
    background: rgba(221, 213, 203, 0.08);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--sage);
    font-size: 0.75rem;
    padding: 0.65rem 0.75rem;
    letter-spacing: 0.05em;
}

.cookie-banner__btn--reject:hover {
    color: var(--warm-stone);
}

/* ── Preferences modal ──────────────────── */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-modal--visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 34, 32, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal__box {
    position: relative;
    background: var(--cream);
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cookie-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--moss);
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.cookie-modal__close:hover {
    color: var(--deep-forest);
}

.cookie-modal__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--deep-forest);
    margin-bottom: 0.75rem;
}

.cookie-modal__intro {
    font-size: 0.88rem;
    color: var(--moss);
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cookie-modal__category {
    border-top: 1px solid rgba(140, 128, 120, 0.2);
    padding: 1.25rem 0;
}

.cookie-modal__category:last-of-type {
    border-bottom: 1px solid rgba(140, 128, 120, 0.2);
    margin-bottom: 1.5rem;
}

.cookie-modal__category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-modal__category-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.cookie-modal__category-desc {
    font-size: 0.82rem;
    color: var(--moss);
    line-height: 1.55;
    font-weight: 300;
}

.cookie-modal__always-on {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--moss);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-top: 0.15rem;
}

.cookie-modal__cookie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-modal__cookie-list li {
    font-size: 0.8rem;
    color: var(--moss);
    line-height: 1.55;
    padding: 0.3rem 0;
    font-weight: 300;
}

/* Toggle switch */
.cookie-modal__toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-modal__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-modal__toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(140, 128, 120, 0.3);
    border-radius: 26px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-modal__toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider {
    background: var(--gold-accent);
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider::before {
    transform: translateX(20px);
}

.cookie-modal__toggle input:focus-visible + .cookie-modal__toggle-slider {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Modal action buttons */
.cookie-modal__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.cookie-modal__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-modal__btn--save {
    background: var(--deep-forest);
    color: white;
}

.cookie-modal__btn--save:hover {
    background: var(--pine);
}

.cookie-modal__btn--accept {
    background: var(--gold-accent);
    color: white;
}

.cookie-modal__btn--accept:hover {
    background: #A35522;
}

.cookie-modal__footer-note {
    font-size: 0.78rem;
    color: var(--sage);
    font-weight: 300;
}

.cookie-modal__footer-note a {
    color: var(--moss);
    text-underline-offset: 2px;
}

.cookie-modal__footer-note a:hover {
    color: var(--gold-accent);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        text-align: center;
        width: 100%;
    }

    .cookie-modal__box {
        padding: 1.75rem 1.25rem;
    }

    .cookie-modal__actions {
        flex-direction: column;
    }

    .cookie-modal__btn {
        width: 100%;
        text-align: center;
    }
}

/* Booking widget global styles */
[id^="bookWidget-161672"] * {
    box-shadow: none !important;
}
[id^="bookWidget-161672"] .book-widget-bg {
    border-radius: 25px !important;
    border: none !important;
}

/* ── Map / Location section ─────────────────────────────────── */
.map-section {
    background: var(--sand);
    padding: 4rem;
}

.map-section__wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.map-iframe-wrapper {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
}

.map-iframe {
    border: 0;
    display: block;
}

.map-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2.5rem;
}

.map-info-item {
    flex: 1;
    min-width: 180px;
}

.map-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.75rem;
}

.map-address {
    font-style: normal;
    color: var(--deep-forest);
    line-height: 1.9;
    font-size: 0.95rem;
}

.w3w-link {
    color: var(--deep-forest);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 2px;
}

.map-info-hint {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--moss);
    font-weight: 300;
}

.map-info-text {
    color: var(--deep-forest);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* ── Utility modifiers ──────────────────────────────────────── */
.content--top-padded {
    padding-top: 3rem;
}

.cta-button--inline {
    display: inline-block;
    margin: 1.5rem 0;
}

.link-warm {
    color: var(--warm-stone);
}

/* ── Hero CTA wrapper ───────────────────────────────────────── */
.hero-cta {
    margin-top: 2rem;
}


/* ── Cookie table ───────────────────────────────────────────── */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.88rem;
}

.cookie-table thead tr {
    border-bottom: 2px solid rgba(140,128,120,0.25);
}

.cookie-table th {
    text-align: left;
    padding: 0.6rem 0.5rem;
    font-weight: 600;
}

.cookie-table tbody tr {
    border-bottom: 1px solid rgba(140,128,120,0.15);
}

.cookie-table td {
    padding: 0.6rem 0.5rem;
}

.cookie-settings-action,
.cookie-pref-button {
    margin: 2rem 0;
}

/* ── Footer CTA light variant ───────────────────────────────── */
.footer-cta--light {
    background: var(--warm-stone);
}

.footer-cta--light .footer-cta-content {
    color: var(--deep-forest);
}

/* ── Wildlife photo grid ────────────────────────────────────── */
.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.wildlife-grid--two {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wildlife-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

@media (max-width: 600px) {
    .wildlife-grid,
    .wildlife-grid--two {
        grid-template-columns: 1fr;
    }
}

/* ── Signup page layout ─────────────────────────────────────── */
.signup-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: var(--sand);
}

.signup-card {
    background: var(--cream);
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(38, 34, 32, 0.1);
    padding: 3.5rem 3rem;
    width: 100%;
    max-width: 560px;
}

.signup-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.signup-intro .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
}

.signup-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--deep-forest);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.signup-intro p {
    font-size: 0.9rem;
    color: var(--moss);
    line-height: 1.7;
}

.signup-divider {
    border: none;
    border-top: 1px solid var(--warm-stone);
    margin: 2rem 0;
}

@media (max-width: 600px) {
    .signup-card { padding: 2.5rem 1.5rem; }
    .signup-intro h1 { font-size: 1.9rem; }
}

/* ── Mailchimp form overrides ───────────────────────────────── */
#mc_embed_signup {
    background: transparent;
    clear: left;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

#mc_embed_signup h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--deep-forest);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

#mc_embed_signup .indicates-required {
    color: var(--moss);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}

#mc_embed_signup .mc-field-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-forest);
    margin-bottom: 0.4rem;
    display: block;
}

#mc_embed_signup .mc-field-group input[type="email"],
#mc_embed_signup .mc-field-group input[type="text"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--warm-stone);
    border-radius: 4px;
    background: var(--cream);
    color: var(--deep-forest);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    height: auto;
}

#mc_embed_signup .mc-field-group input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 106, 40, 0.15);
}

#mergeRow-gdpr {
    margin-top: 1.5rem;
}

#mergeRow-gdpr .content__gdpr label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--deep-forest);
    text-transform: none;
    letter-spacing: 0;
}

#mergeRow-gdpr .content__gdpr p,
#mergeRow-gdpr .content__gdprLegal p {
    font-size: 0.8rem;
    color: var(--moss);
    line-height: 1.6;
}

#mergeRow-gdpr .content__gdprLegal p a {
    color: var(--gold-accent);
    text-decoration: underline;
}

#mc-embedded-subscribe-form .mc_fieldset {
    border: none;
    min-height: 0;
    padding-bottom: 0;
}

#mc-embedded-subscribe-form input[type=checkbox] {
    display: inline;
    width: auto;
    margin-right: 10px;
    accent-color: var(--gold-accent);
}

/* GDPR lozenge radio buttons */
.gdpr-channel {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.75rem;
}

.gdpr-channel-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    min-width: 40px;
}

.gdpr-toggle {
    display: flex;
    gap: 0.5rem;
}

.gdpr-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.gdpr-lozenge {
    display: inline-block;
    padding: 0.3rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    color: var(--charcoal);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    user-select: none;
}

.gdpr-lozenge:hover {
    border-color: var(--deep-forest);
    background: rgba(0, 0, 0, 0.04);
}

.gdpr-radio:checked + .gdpr-lozenge {
    background: var(--deep-forest);
    color: white !important;
    border-color: var(--deep-forest);
}

.gdpr-radio:checked + .gdpr-lozenge:hover {
    background: var(--deep-forest);
}

#mc-embedded-subscribe {
    background: var(--gold-accent) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.85rem 2.5rem !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: background 0.25s ease !important;
    height: auto !important;
    width: auto !important;
}

#mc-embedded-subscribe:hover {
    background: var(--deep-forest) !important;
}

#mce-error-response,
#mce-success-response {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

#mce-error-response {
    background: #fdf0ec;
    color: #b84c25;
    border: 1px solid #f0c4b0;
}

#mce-success-response {
    background: #f0f5f2;
    color: var(--deep-forest);
    border: 1px solid var(--warm-stone);
}

#mc_embed_signup .optionalParent {
    text-align: center !important;
}

#mc_embed_signup .optionalParent .clear.foot {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    float: none !important;
    text-align: center !important;
    gap: 1rem !important;
    margin-top: 1rem !important;
}

#mc_embed_signup .optionalParent .clear.foot input[type=submit] {
    float: none !important;
    display: block !important;
}

.mc-thankyou {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.mc-thankyou__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--deep-forest);
    margin-bottom: 0.5rem;
}

.mc-thankyou__body {
    font-size: 0.9rem;
    color: var(--moss);
}

.mc-badge {
    width: 180px;
    height: 36px;
    display: block;
}

/* ── Instagram follow button ────────────────────────────────── */
.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--deep-forest);
    color: var(--cream);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s ease;
    margin-bottom: 3rem;
}

.instagram-follow-btn:hover {
    background: var(--gold-accent);
}

/* ── News listing ─────────────────────────── */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.news-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    border-bottom: 1px solid var(--warm-stone);
    padding-bottom: 3rem;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
}

.news-item__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.5rem !important;
}

.news-item__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--warm-stone);
    margin-bottom: 0.5rem !important;
    margin-top : 0.5rem !important;
}

.news-item__title a {
    color: inherit;
    text-decoration: none;
}

.news-item__title a:hover {
    color: var(--gold-accent);
}

.news-item__desc {
    color: var(--sage);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem !important;
}

@media (max-width: 640px) {
    .news-item {
        grid-template-columns: 1fr;
    }
}

/* ── Water quality table ────────────────────────────────────────────────────── */

.wq-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.wq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.wq-table th,
.wq-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--warm-stone);
}

.wq-table th {
    background: #e8e2da;
    color: var(--deep-forest);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.wq-table th .wq-unit {
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.wq-table tbody tr {
    background: #fdfaf6;
    color: var(--deep-forest);
}

.wq-table tbody tr:nth-child(even) {
    background: #f5f0ea;
}

.wq-table td.wq-excellent {
    color: #2a5e2a;
}

.wq-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #d4edda;
    color: #2d6a2d;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.wq-footnote {
    font-size: 0.85rem;
    color: var(--cream);
    margin-top: 0.75rem;
}

.wq-footnote a {
    color: var(--gold-accent);
}

@media (max-width: 640px) {
    .wq-table thead {
        display: none;
    }

    .wq-table tbody tr {
        display: block;
        border: 1px solid var(--warm-stone);
        border-radius: 6px;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }

    .wq-table tbody tr:nth-child(even) {
        background: #fdfaf6;
    }

    .wq-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #ede8e2;
        font-size: 0.875rem;
    }

    .wq-table td:last-child {
        border-bottom: none;
    }

    .wq-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--deep-forest);
        opacity: 0.6;
        flex-shrink: 0;
        margin-right: 1rem;
    }
}

/* ── Notice box ─────────────────────────────────────────────────────────────── */

.notice-box {
    border-left: 4px solid var(--warm-stone);
    background: #f5f0ea;
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin: 2rem 0;
    color:var(--deep-forest);
}

.notice-box p {
    margin: 0;
    line-height: 1.7;
}

.notice-box--warning {
    border-left-color: var(--gold-accent);
    background: #fdf3ea;
}
