:root {
    --orange: #EA580C;
    --orange-dark: #C2410C;
    --orange-light: #FB923C;
    --slate: #334155;
    --slate-dark: #1E293B;
    --slate-light: #475569;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 8px 32px rgba(51, 65, 85, 0.12);
    --shadow-orange: 0 8px 24px rgba(234, 88, 12, 0.25);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--slate-dark);
    line-height: 1.7;
    background: var(--slate-50);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--orange); color: var(--white); padding: 0.75rem 1rem;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--slate-200);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 76px;
}
.logo {
    display: flex; align-items: center; gap: 0.65rem;
    color: var(--slate); font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
}
.logo-accent { color: var(--orange); }
.logo-icon { flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: var(--slate); font-weight: 600; font-size: 0.95rem; }
.main-nav a.active { color: var(--orange); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.75rem; border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s; font-family: inherit;
}
.btn-primary {
    background: var(--orange); color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark); border-color: var(--orange-dark);
    color: var(--white); transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}
.btn-outline {
    background: transparent; border-color: var(--orange); color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.875rem; }

/* Trust bar */
.trust-bar {
    background: var(--slate); color: var(--white);
    padding: 0.65rem 0; font-size: 0.85rem; text-align: center;
}
.trust-bar-inner {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.trust-item { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.92; }

/* Hero */
.hero {
    position: relative; min-height: 520px;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.88) 0%, rgba(51, 65, 85, 0.75) 50%, rgba(234, 88, 12, 0.35) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 720px; padding: 4rem 1.25rem;
    margin: 0 auto; text-align: center; width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(234, 88, 12, 0.2); color: var(--orange-light);
    padding: 0.35rem 0.85rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 1.25rem;
    border: 1px solid rgba(234, 88, 12, 0.4);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.1;
    color: var(--white); margin-bottom: 1.25rem;
}
.hero-slogan {
    font-size: 1.125rem; color: var(--slate-200);
    margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page hero */
.page-hero {
    padding: 3.5rem 0; text-align: center;
    background: linear-gradient(180deg, var(--slate-dark), var(--slate));
    color: var(--white);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; margin-bottom: 0.75rem;
}
.page-hero p { color: var(--slate-200); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800; color: var(--slate);
    margin-bottom: 0.75rem;
}
.section-header p { color: var(--slate-light); }

/* Domain callout */
.domain-callout {
    background: var(--white); border-left: 4px solid var(--orange);
    padding: 1.75rem 2rem; border-radius: var(--radius);
    box-shadow: var(--shadow); max-width: 900px; margin: 0 auto 2.5rem;
}
.domain-callout p { color: var(--slate-light); }

/* Stats */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.stat-card {
    background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg);
    text-align: center; border: 1px solid var(--slate-200);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem; font-weight: 800; color: var(--orange);
}
.stat-label { font-size: 0.875rem; color: var(--slate-light); margin-top: 0.25rem; }

/* Cards */
.cards-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--slate-200);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--orange); margin-bottom: 0.5rem;
}
.card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem;
}
.card p { color: var(--slate-light); font-size: 0.95rem; }
.card-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(234, 88, 12, 0.1); color: var(--orange);
    border-radius: var(--radius); margin: 1.5rem 1.5rem 0;
}

/* Steps */
.steps-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
}
.step-item {
    background: var(--white); padding: 1.5rem; border-radius: var(--radius);
    border-top: 3px solid var(--orange);
}
.step-item h3 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
}
.step-item p { font-size: 0.9rem; color: var(--slate-light); }

/* Tour preview */
.tour-preview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tour-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--slate-200);
}
.tour-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.tour-card-body { padding: 1.25rem; }
.tour-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem;
}
.tour-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--slate-light); margin-bottom: 0.75rem; }
.tour-price { font-weight: 700; color: var(--orange); margin-top: 0.75rem; }

/* Tour blocks */
.tour-block {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem;
    align-items: start; margin-bottom: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid var(--slate-200);
}
.tour-block:last-of-type { border-bottom: none; }
.tour-block img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.tour-block h2 {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    text-align: left; color: var(--slate);
}
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding-bottom: 1.25rem; color: var(--slate-light); }

/* CTA band */
.cta-band {
    text-align: center; padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--slate-dark), var(--slate));
    border-radius: var(--radius-lg); color: var(--white);
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem;
}

/* Disclaimer */
.disclaimer-box {
    background: var(--slate-50); border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange);
    padding: 1.25rem 1.5rem; border-radius: var(--radius);
    font-size: 0.9rem; color: var(--slate-light);
}
.disclaimer-box strong { color: var(--slate); display: block; margin-bottom: 0.35rem; }

/* Prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700; margin: 2rem 0 0.75rem;
    color: var(--slate);
}
.prose p { margin-bottom: 1rem; color: var(--slate-light); }
.prose ul { margin: 0 0 1rem 1.5rem; color: var(--slate-light); }

/* Contact */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.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: 1px solid var(--slate-200);
    border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
    margin-bottom: 1rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status {
    padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem;
}
.form-status.ok { background: #DCFCE7; color: #166534; }
.form-status.err { background: #FEE2E2; color: #991B1B; }

/* About */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Services */
.service-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
    background: var(--white); padding: 2rem 1.5rem; border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200); text-align: center;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700; margin: 1rem 0 0.5rem;
}

/* Error page */
.error-page {
    padding: 6rem 0; text-align: center;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
    color: var(--slate); margin-bottom: 1rem;
}
.error-page p { color: var(--slate-light); max-width: 520px; margin: 0 auto 2rem; }

/* Footer */
.site-footer {
    background: var(--slate-dark); color: var(--slate-200);
    padding: 3rem 0 1.5rem; margin-top: 2rem; position: relative;
}
.footer-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.25rem; color: var(--white);
}
.footer-slogan { margin-top: 0.75rem; font-size: 0.95rem; }
.footer-domain-note { margin-top: 0.75rem; font-size: 0.85rem; color: var(--slate-400); }
.footer-grid h3 {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.75rem;
}
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: var(--slate-400); font-size: 0.9rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--orange-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.35rem; }
.footer-contact a { color: var(--orange-light); }
.footer-disclaimer {
    font-size: 0.8rem; color: var(--slate-400); font-style: italic;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}
.footer-copy { font-size: 0.85rem; color: var(--slate-400); text-align: center; }
.footer-host { font-size: 0.8rem; color: var(--slate-400); margin-top: 0.5rem; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); border-top: 2px solid var(--orange);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12); padding: 1.25rem 0;
}
.cookie-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.cookie-inner p { flex: 1; min-width: 240px; font-size: 0.9rem; color: var(--slate-light); }
.cookie-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid, .tour-preview-grid, .service-cards { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-block, .contact-grid, .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 76px; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 1.5rem; gap: 1rem; border-bottom: 2px solid var(--slate-200);
        transform: translateY(-120%); opacity: 0; pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
