:root {
    --green: #166534;
    --green-dark: #14532D;
    --green-light: #DCFCE7;
    --wheat: #FDE68A;
    --wheat-dark: #F59E0B;
    --dark: #1C1917;
    --gray: #57534E;
    --light: #FFFBEB;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(22, 101, 52, 0.12);
    --font-body: 'Nunito Sans', sans-serif;
    --font-heading: 'Fraunces', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
}
h1, h2, h3, h4, .logo-text { font-family: var(--font-heading); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 300;
    background: var(--green); color: white; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

.landscape-bg {
    background-color: var(--light);
    background-image:
        url("data:image/svg+xml,%3Csvg width='120' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q30 40 60 55 T120 50 L120 80 L0 80 Z' fill='%23166534' opacity='0.06'/%3E%3Cpath d='M0 70 Q40 55 80 68 T120 62 L120 80 L0 80 Z' fill='%23FDE68A' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 120px 80px;
}

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--wheat);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 1.35rem; color: var(--dark);
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    font-size: 1.2rem;
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: var(--dark); font-weight: 600; font-size: 0.95rem; }
.main-nav a.active { color: var(--green); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 101, 52, 0.35);
    color: white;
}
.btn-wheat {
    background: var(--wheat);
    color: var(--green-dark);
    border-color: var(--wheat-dark);
}
.btn-wheat:hover { background: var(--wheat-dark); color: var(--dark); }
.btn-outline {
    background: transparent; border-color: var(--green); color: var(--green);
}
.btn-outline:hover { background: var(--green); color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--green-light) 0%, var(--light) 50%, var(--wheat) 100%);
    overflow: hidden; position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q25 60 50 75 T100 70' fill='none' stroke='%23166534' stroke-width='0.8' opacity='0.12'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15; margin-bottom: 1.25rem; font-weight: 700;
}
.hero h1 span { color: var(--green); }
.hero-lead { font-size: 1.125rem; color: var(--gray); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta { font-size: 0.875rem; color: var(--gray); }
.hero-img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden; border: 3px solid var(--wheat);
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.trust-bar {
    background: var(--green); color: white; padding: 0.75rem 0;
    font-size: 0.875rem; text-align: center;
}
.trust-bar span { margin: 0 1rem; opacity: 0.95; }

.section { padding: 4rem 0; }
.section-alt { background: var(--light); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; font-weight: 700; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--green-light), var(--wheat));
    text-align: center; position: relative;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 640px; margin: 0 auto; position: relative; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #E7E5E4;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(22, 101, 52, 0.15); }
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.card-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.card-price {
    display: inline-block;
    background: var(--wheat);
    color: var(--green-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.stats-section { padding: 3rem 0; background: var(--green); color: white; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; text-align: center;
}
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--wheat); font-family: var(--font-heading); }
.stat-label { font-size: 0.9rem; opacity: 0.9; margin-top: 0.25rem; }

.callout-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border-left: 4px solid var(--green);
    box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }
.callout-box p { color: var(--gray); margin-bottom: 1rem; }
.callout-box p:last-child { margin-bottom: 0; }

.route-strip {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
    padding: 2rem 0;
}
.route-dot {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 2px solid var(--wheat);
    font-weight: 600; font-size: 0.875rem;
}
.route-dot::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.tour-card {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 2rem; align-items: start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid #E7E5E4;
}
.tour-card img { border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.tour-card h2 { font-size: 1.5rem; margin-bottom: 0.75rem; font-weight: 700; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.tour-meta span { background: var(--wheat); color: var(--green-dark); padding: 0.25rem 0.75rem; border-radius: 6px; font-weight: 600; }
.tour-includes { background: var(--green-light); padding: 1rem; border-radius: 8px; margin-top: 1rem; }
.tour-includes h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--green-dark); }
.tour-includes ul { list-style: none; font-size: 0.9rem; }
.tour-includes li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 3px solid var(--green);
    padding-bottom: 1.5rem;
}
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 1rem; }
.service-card h3 { padding: 0 1.5rem; margin-bottom: 0.75rem; font-weight: 700; }
.service-card p { padding: 0 1.5rem; color: var(--gray); margin-bottom: 0.75rem; font-size: 0.95rem; }
.service-price { padding: 0 1.5rem; font-weight: 700; color: var(--green); }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.5rem; }

.contact-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 3rem; align-items: start;
}
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 2px solid #E7E5E4; border-radius: 8px;
    font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--green);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.checkbox-label {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 400; margin-bottom: 1rem;
}
.checkbox-label input { width: auto; margin-top: 0.2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-weight: 600; }
.form-msg.success { background: var(--green-light); color: var(--green-dark); }
.form-msg.error { background: #FEE2E2; color: #991B1B; }
.contact-info img { border-radius: var(--radius); margin-top: 1.5rem; }

.faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #E7E5E4; }
.faq-item:last-child { border-bottom: none; }
.faq-item h2 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 700; color: var(--green-dark); }
.faq-item p { color: var(--gray); }

.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; font-weight: 700; color: var(--green-dark); }
.prose h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; font-weight: 600; }
.prose p, .prose li { color: var(--gray); margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }

.legal-content { padding: 3rem 0 4rem; }

.feature-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center; margin-bottom: 3rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img { border-radius: var(--radius); box-shadow: var(--shadow); }

.disclaimer-box {
    background: var(--wheat);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--green-dark);
    border: 1px solid var(--wheat-dark);
}

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-bottom: 2rem;
}
.footer-brand strong { color: white; font-size: 1.1rem; display: block; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--wheat); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.35rem; }
.footer-contact a { color: var(--wheat); }
.footer-host { opacity: 0.6; font-size: 0.8rem; margin-top: 0.5rem; }
.footer-disclaimer {
    font-size: 0.8rem; opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem; margin-bottom: 1rem;
}
.footer-copy { font-size: 0.8rem; opacity: 0.6; text-align: center; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--dark); color: white;
    padding: 1.25rem; box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--wheat); }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }

.error-page { padding: 6rem 0; text-align: center; min-height: 50vh; }
.error-page h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 700; color: var(--green-dark); }
.error-page p { color: var(--gray); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.consent-panel {
    background: var(--light);
    border: 2px solid var(--wheat);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid, .tour-card, .feature-row { grid-template-columns: 1fr; }
    .feature-row.reverse { direction: ltr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 1rem;
        border-bottom: 1px solid #E7E5E4; box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .header-inner { position: relative; }
    .hero { padding: 2.5rem 0 3rem; }
    .section { padding: 2.5rem 0; }
}
