:root {
    --green: #15803D;
    --green-dark: #166534;
    --green-light: #DCFCE7;
    --sky: #0EA5E9;
    --sky-dark: #0284C7;
    --sky-light: #E0F2FE;
    --dark: #0F172A;
    --gray: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(21, 128, 61, 0.12);
    --font: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
}
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; }

/* Topographic pattern */
.topo-bg {
    background-color: var(--light);
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' fill='none' stroke='%2315803D' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M0 70 Q25 50 50 70 T100 70' fill='none' stroke='%230EA5E9' stroke-width='0.5' opacity='0.12'/%3E%3Cpath d='M0 30 Q25 10 50 30 T100 30' fill='none' stroke='%2315803D' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #BBF7D0;
}
.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: 800; font-size: 1.25rem; color: var(--dark);
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--green), var(--sky));
    color: white; font-size: 1.1rem;
}
.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); }

/* Buttons */
.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(21, 128, 61, 0.35);
    color: white;
}
.btn-sky {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white;
}
.btn-sky:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35); color: white; }
.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 */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--green-light) 0%, var(--sky-light) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='60' cy='60' rx='50' ry='30' fill='none' stroke='%2315803D' stroke-width='0.6' opacity='0.12'/%3E%3Cellipse cx='60' cy='60' rx='35' ry='20' fill='none' stroke='%230EA5E9' stroke-width='0.5' opacity='0.1'/%3E%3Cellipse cx='60' cy='60' rx='20' ry='12' fill='none' stroke='%2315803D' stroke-width='0.4' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    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: 800;
}
.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-img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden; border: 3px solid var(--green-light);
    position: relative;
}
.hero-img::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--sky));
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Trust bar */
.trust-bar {
    background: var(--dark); color: white; padding: 0.75rem 0;
    font-size: 0.875rem; text-align: center;
}
.trust-bar span { margin: 0 1rem; opacity: 0.9; }

/* Sections */
.section { padding: 4rem 0; }
.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: 800; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--green-light), var(--sky-light));
    text-align: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q20 20 40 40 T80 40' fill='none' stroke='%2315803D' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; 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 */
.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 #E2E8F0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21, 128, 61, 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(--green-light);
    color: var(--green-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.card-includes {
    font-size: 0.85rem;
    color: var(--gray);
    border-top: 1px solid #E2E8F0;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

/* Stats */
.stats-section { padding: 3rem 0; background: var(--dark); 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(--sky); }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 0.25rem; }

/* Callout */
.domain-callout { padding: 3rem 0; background: var(--light); }
.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; }

/* Map route visual */
.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(--green-light);
    font-weight: 600;
    font-size: 0.875rem;
}
.route-dot::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Tour detail */
.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 #E2E8F0;
}
.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: 800; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.tour-meta span { background: var(--sky-light); color: var(--sky-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; color: var(--dark); }
.tour-includes li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--sky);
}
.service-item img { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.service-item h3 { margin-bottom: 0.75rem; font-weight: 700; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Contact */
.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 #E2E8F0; border-radius: 8px;
    font-family: inherit; font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}
.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 */
.faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #E2E8F0; }
.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 / legal */
.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; }

/* Footer */
.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; }
.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(--sky); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.35rem; }
.footer-contact a { color: var(--sky); }
.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; line-height: 1.5;
}
.footer-copy { font-size: 0.8rem; opacity: 0.6; text-align: center; }

/* Cookie banner */
.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(--sky); }
.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 */
.error-page { padding: 6rem 0; text-align: center; min-height: 50vh; }
.error-page h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; color: var(--green-dark); }
.error-page p { color: var(--gray); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.error-page .btn { margin: 0 0.5rem; }

/* Two col feature */
.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); }

/* Responsive */
@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 #E2E8F0; box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .header-inner { position: relative; }
    .hero { padding: 2.5rem 0 3rem; }
    .section { padding: 2.5rem 0; }
}
