:root {
    --slate: #334155;
    --slate-dark: #1E293B;
    --slate-light: #475569;
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --teal-light: #CCFBF1;
    --dark: #0F172A;
    --gray: #64748B;
    --light: #F1F5F9;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(51, 65, 85, 0.14);
    --font: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--slate-dark);
    line-height: 1.65;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Compass pattern background */
.compass-bg {
    background-color: var(--light);
    background-image:
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='50' fill='none' stroke='%23334155' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='60' cy='60' r='35' fill='none' stroke='%2314B8A6' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='60' y1='10' x2='60' y2='110' stroke='%23334155' stroke-width='0.3' opacity='0.06'/%3E%3Cline x1='10' y1='60' x2='110' y2='60' stroke='%23334155' stroke-width='0.3' opacity='0.06'/%3E%3Cpolygon points='60,20 65,55 60,90 55,55' fill='%2314B8A6' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 120px 120px;
}

/* 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 #CBD5E1;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-weight: 700; font-size: 1.2rem; color: var(--slate-dark);
}
.logo-compass { color: var(--teal); display: flex; }
.logo-text { letter-spacing: -0.02em; }
.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(--teal-dark); }
.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(--slate); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
    color: white;
}
.btn-outline {
    background: transparent; border-color: var(--slate); color: var(--slate);
}
.btn-outline:hover { background: var(--slate); color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--slate-dark) 0%, var(--slate) 55%, var(--teal-dark) 100%);
    color: white;
    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%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='0.5' opacity='0.08'/%3E%3Cpolygon points='50,15 55,48 50,85 45,48' fill='white' opacity='0.05'/%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(--teal-light); }
.hero-lead { font-size: 1.125rem; opacity: 0.9; margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
.hero .btn-outline:hover { background: white; color: var(--slate-dark); }
.hero-img {
    border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    overflow: hidden; border: 3px solid rgba(20, 184, 166, 0.4);
    position: relative;
}
.hero-img::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-note { font-size: 0.875rem; opacity: 0.75; }

/* Trust bar */
.trust-bar {
    background: var(--slate); 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: 700; color: var(--slate-dark); }
.section-header p { color: var(--gray); font-size: 1.05rem; }

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--slate-dark), var(--slate));
    color: white;
    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 { opacity: 0.9; 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(51, 65, 85, 0.18); }
.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; color: var(--slate-dark); }
.card-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.card-price {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    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(--slate-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: 700; color: var(--teal); }
.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(--teal);
    box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; color: var(--slate-dark); }
.callout-box p { color: var(--gray); margin-bottom: 1rem; }
.callout-box p:last-child { margin-bottom: 0; }

/* Route strip */
.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(--teal-light);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--slate);
}
.route-dot::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

/* 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: 700; color: var(--slate-dark); }
.tour-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.tour-meta span { background: var(--teal-light); color: var(--teal-dark); padding: 0.25rem 0.75rem; border-radius: 6px; font-weight: 600; }
.tour-includes { background: var(--light); padding: 1rem; border-radius: 8px; margin-top: 1rem; border-left: 3px solid var(--teal); }
.tour-includes h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--slate); }
.tour-includes ul { list-style: none; font-size: 0.9rem; color: var(--slate-dark); }
.tour-includes li::before { content: '→ '; color: var(--teal); 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(--teal);
}
.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; color: var(--slate-dark); }

/* 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; color: var(--slate); }
.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(--teal);
}
.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(--teal-light); color: var(--teal-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(--slate-dark); }
.faq-item p { color: var(--gray); }

/* Prose / legal */
.prose { max-width: 800px; margin: 0 auto; }
.prose h1 { font-size: 2rem; margin-bottom: 1rem; font-weight: 700; color: var(--slate-dark); }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; font-weight: 700; color: var(--slate); }
.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(--slate-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(--teal-light); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.35rem; }
.footer-contact a { color: var(--teal-light); }
.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(--slate-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(--teal-light); }
.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: 700; color: var(--slate-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; }

/* Feature row */
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid, .tour-card, .feature-row { grid-template-columns: 1fr; }
}
@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; }
}
