:root {
    --stone: #78716C;
    --stone-dark: #57534E;
    --stone-light: #F5F5F4;
    --lime: #84CC16;
    --lime-dark: #65A30D;
    --lime-light: #ECFCCB;
    --dark: #292524;
    --gray: #78716C;
    --light: #FAFAF9;
    --white: #FFFFFF;
    --radius: 8px;
    --shadow: 0 2px 16px rgba(41, 37, 36, 0.08);
    --font: 'Manrope', 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(--lime-dark); text-decoration: none; }
a:hover { color: var(--stone-dark); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Urban grid pattern */
.urban-bg {
    background-color: var(--light);
    background-image:
        linear-gradient(rgba(120, 113, 108, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 113, 108, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #E7E5E4;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 68px;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 800; font-size: 1.15rem; color: var(--dark);
    letter-spacing: -0.02em;
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 6px;
    background: var(--stone);
    color: var(--lime);
    font-size: 1.1rem; font-weight: 800;
}
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { color: var(--dark); font-weight: 600; font-size: 0.9rem; }
.main-nav a.active { color: var(--lime-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.7rem 1.35rem; border-radius: var(--radius);
    font-weight: 700; font-size: 0.9rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary {
    background: var(--lime);
    color: var(--dark);
}
.btn-primary:hover {
    background: var(--lime-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.35);
}
.btn-outline {
    background: transparent; border-color: var(--stone); color: var(--stone-dark);
}
.btn-outline:hover { background: var(--stone); color: var(--white); border-color: var(--stone); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

/* Hero */
.hero {
    padding: 3.5rem 0 4.5rem;
    background: var(--stone-light);
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--lime);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
    position: relative;
}
.hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.12; margin-bottom: 1.25rem; font-weight: 800;
    letter-spacing: -0.03em;
}
.hero h1 span { color: var(--lime-dark); }
.hero-lead { font-size: 1.05rem; color: var(--gray); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.hero-img::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--lime);
    z-index: 1;
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.92); }

/* Trust bar */
.trust-bar {
    background: var(--dark); color: white; padding: 0.65rem 0;
    font-size: 0.8rem; text-align: center;
    letter-spacing: 0.02em;
}
.trust-bar span { margin: 0 0.85rem; opacity: 0.88; }
.trust-bar span::before { content: '· '; color: var(--lime); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 0.65rem; font-weight: 800; letter-spacing: -0.02em; }
.section-header p { color: var(--gray); font-size: 1rem; }

.page-hero {
    padding: 2.75rem 0;
    background: var(--stone-light);
    text-align: center;
    border-bottom: 2px solid var(--lime);
}
.page-hero h1 { font-size: clamp(1.85rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.65rem; letter-spacing: -0.02em; }
.page-hero p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #E7E5E4;
    transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--lime); }
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.35rem; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 0.45rem; font-weight: 700; }
.card-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 0.85rem; }
.card-price {
    display: inline-block;
    background: var(--lime-light);
    color: var(--lime-dark);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}
.card-includes {
    font-size: 0.82rem;
    color: var(--gray);
    border-top: 1px solid #E7E5E4;
    padding-top: 0.65rem;
    margin-top: 0.45rem;
}

/* Stats */
.stats-section { padding: 2.5rem 0; background: var(--stone); color: white; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    text-align: center;
}
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--lime); }
.stat-label { font-size: 0.85rem; opacity: 0.88; margin-top: 0.2rem; }

/* Callout */
.domain-callout { padding: 2.5rem 0; background: var(--light); }
.callout-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border-left: 4px solid var(--lime);
    box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.35rem; margin-bottom: 0.85rem; font-weight: 700; }
.callout-box p { color: var(--gray); margin-bottom: 0.85rem; }
.callout-box p:last-child { margin-bottom: 0; }

/* Route strip */
.route-strip {
    display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center;
    padding: 1.75rem 0;
}
.route-dot {
    display: flex; align-items: center; gap: 0.4rem;
    background: var(--white);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    border: 1px solid #D6D3D1;
    font-weight: 600;
    font-size: 0.82rem;
}
.route-dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
}

/* Tour detail */
.tour-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.75rem;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.35rem;
    margin-bottom: 1.75rem;
    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.35rem; margin-bottom: 0.65rem; font-weight: 800; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.85rem; font-size: 0.85rem; }
.tour-meta span { background: var(--lime-light); color: var(--lime-dark); padding: 0.2rem 0.65rem; border-radius: 4px; font-weight: 600; }
.tour-includes { background: var(--stone-light); padding: 0.85rem; border-radius: 6px; margin-top: 0.85rem; }
.tour-includes h4 { font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--stone-dark); }
.tour-includes ul { list-style: none; font-size: 0.88rem; color: var(--dark); }
.tour-includes li::before { content: '→ '; color: var(--lime-dark); font-weight: 700; }

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-item {
    text-align: left;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--lime);
}
.service-item img { border-radius: var(--radius); margin-bottom: 0.85rem; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.service-item h3 { margin-bottom: 0.65rem; font-weight: 700; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    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: 2.5rem;
    align-items: start;
}
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.88rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 0.7rem 0.9rem;
    border: 1px solid #D6D3D1; border-radius: 6px;
    font-family: inherit; font-size: 0.95rem;
    margin-bottom: 0.85rem;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none; border-color: var(--lime);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.checkbox-label {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.85rem; font-weight: 400; margin-bottom: 0.85rem;
}
.checkbox-label input { width: auto; margin-top: 0.2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: 0.85rem; border-radius: 6px; margin-bottom: 1.25rem; font-weight: 600; }
.form-msg.success { background: var(--lime-light); color: var(--lime-dark); }
.form-msg.error { background: #FEE2E2; color: #991B1B; }
.contact-info img { border-radius: var(--radius); margin-top: 1.25rem; }

/* FAQ */
.faq-item { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid #E7E5E4; }
.faq-item:last-child { border-bottom: none; }
.faq-item h2 { font-size: 1.15rem; margin-bottom: 0.65rem; font-weight: 700; color: var(--stone-dark); }
.faq-item p { color: var(--gray); }

/* Prose / legal */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.25rem; margin: 1.75rem 0 0.65rem; font-weight: 700; color: var(--stone-dark); }
.prose h3 { font-size: 1.05rem; margin: 1.25rem 0 0.45rem; font-weight: 600; }
.prose p, .prose li { color: var(--gray); margin-bottom: 0.85rem; }
.prose ul, .prose ol { padding-left: 1.35rem; margin-bottom: 0.85rem; }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 2.5rem 0 1.25rem;
    margin-top: 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}
.footer-brand strong { color: white; font-size: 1.05rem; display: block; margin-bottom: 0.45rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a, .footer-legal a { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--lime); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.3rem; }
.footer-contact a { color: var(--lime); }
.footer-host { opacity: 0.55; font-size: 0.78rem; margin-top: 0.45rem; }
.footer-disclaimer {
    font-size: 0.78rem; opacity: 0.65;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem; margin-bottom: 0.85rem; line-height: 1.5;
}
.footer-copy { font-size: 0.78rem; opacity: 0.55; 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.1rem; box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.18);
}
.cookie-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.85rem;
}
.cookie-inner p { font-size: 0.88rem; flex: 1; min-width: 220px; }
.cookie-inner a { color: var(--lime); }
.cookie-btns { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.cookie-banner .btn-outline { border-color: rgba(255, 255, 255, 0.4); color: white; }
.cookie-banner .btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: white; }

/* Error page */
.error-page { padding: 5rem 0; text-align: center; min-height: 50vh; }
.error-page h1 { font-size: 2.25rem; margin-bottom: 0.85rem; font-weight: 800; color: var(--stone-dark); }
.error-page p { color: var(--gray); margin-bottom: 1.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.error-page .btn { margin: 0 0.4rem; }

/* Two col feature */
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
    margin-bottom: 2.5rem;
}
.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: 68px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 0.85rem;
        border-bottom: 1px solid #E7E5E4; box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .header-inner { position: relative; }
    .hero { padding: 2.25rem 0 2.75rem; }
    .section { padding: 2.25rem 0; }
}
