:root {
    --cream: #FAF7F0;
    --burgundy: #7F1D1D;
    --burgundy-dark: #5C1515;
    --burgundy-light: #F5E6E6;
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --gold-pale: #F3E5AB;
    --ink: #2C1810;
    --muted: #6B5344;
    --white: #FFFFFF;
    --radius: 2px;
    --shadow: 0 8px 32px rgba(127, 29, 29, 0.08);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    line-height: 1.7;
    background: var(--cream);
    font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--burgundy);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.5rem; }

/* Editorial pattern background */
.editorial-bg {
    background-color: var(--cream);
    background-image:
        linear-gradient(90deg, rgba(127,29,29,0.03) 1px, transparent 1px),
        linear-gradient(rgba(127,29,29,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250, 247, 240, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 29, 29, 0.12);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 76px;
}
.logo {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-serif);
    font-weight: 700; font-size: 1.5rem; color: var(--burgundy);
}
.logo-mark {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 2px solid var(--gold);
    font-family: var(--font-serif);
    font-size: 0.85rem; font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.05em;
}
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
    color: var(--ink); font-weight: 500; font-size: 0.9rem;
    letter-spacing: 0.02em; text-transform: uppercase;
}
.main-nav a.active { color: var(--burgundy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.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(--burgundy); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.75rem;
    font-weight: 600; font-size: 0.875rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s; font-family: inherit;
    border-radius: var(--radius);
}
.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--gold-pale);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    border-color: var(--burgundy);
    color: var(--burgundy);
}
.btn-outline:hover {
    background: var(--burgundy);
    color: var(--cream);
}
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }

/* Trust bar */
.trust-bar {
    background: var(--burgundy);
    color: var(--gold-pale);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.trust-bar .container {
    display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
}
.trust-bar span { opacity: 0.92; }
.trust-bar span::before { content: '◆ '; color: var(--gold); font-size: 0.6rem; }

/* Hero */
.hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy), var(--gold));
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-content h1 span { color: var(--gold); font-style: italic; }
.hero-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 1.5rem 0 2rem;
    max-width: 520px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.03em; }
.hero-img {
    position: relative;
}
.hero-img img {
    border: 1px solid rgba(127, 29, 29, 0.15);
    box-shadow: var(--shadow);
}
.hero-img::before {
    content: '';
    position: absolute; top: -12px; right: -12px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

/* Domain callout */
.domain-callout { padding: 4rem 0; background: var(--white); }
.callout-box {
    max-width: 780px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border-left: 4px solid var(--gold);
    background: var(--cream);
}
.callout-box h2 { margin-bottom: 1.25rem; }
.callout-box p { color: var(--muted); margin-bottom: 1rem; }
.callout-box p:last-child { margin-bottom: 0; }

/* Stats */
.stats-section { padding: 4rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow);
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; color: var(--muted); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.section-header p { color: var(--muted); margin-top: 0.75rem; }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.card {
    background: var(--white);
    border: 1px solid rgba(127, 29, 29, 0.08);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: 0.75rem; }
.card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.card-includes { font-size: 0.85rem !important; font-style: italic; }

/* Route strip */
.route-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
    margin-bottom: 2rem;
}
.route-dot {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--burgundy);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--burgundy);
}

/* Feature row */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.feature-row h2 { font-size: 1.65rem; margin-bottom: 1rem; }
.feature-row p { color: var(--muted); margin-bottom: 1rem; }

/* Page hero */
.page-hero {
    padding: 4rem 0 3rem;
    background: var(--burgundy);
    color: var(--cream);
    text-align: center;
}
.page-hero h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero p { color: var(--gold-pale); max-width: 600px; margin: 0 auto; opacity: 0.95; }

/* Tour cards */
.tour-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(127, 29, 29, 0.1);
    align-items: start;
}
.tour-card:last-child { border-bottom: none; }
.tour-card img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    border: 1px solid rgba(127, 29, 29, 0.12);
}
.tour-meta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin: 0.75rem 0 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gold);
}
.tour-meta span { padding: 0.25rem 0.75rem; background: var(--burgundy-light); color: var(--burgundy); }
.tour-includes { margin-top: 1.25rem; }
.tour-includes h4 { font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--muted); }
.tour-includes ul { padding-left: 1.25rem; color: var(--muted); font-size: 0.95rem; }
.tour-includes li { margin-bottom: 0.35rem; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.35rem; color: var(--ink); }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid rgba(127, 29, 29, 0.2);
    background: var(--white);
    font-family: inherit; font-size: 1rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(127, 29, 29, 0.1);
}
.checkbox-label {
    display: flex; gap: 0.75rem; align-items: flex-start;
    font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem;
    cursor: pointer;
}
.checkbox-label input { width: auto; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: var(--radius); }
.form-msg.success { background: #E8F5E9; border-left: 4px solid #2E7D32; color: #1B5E20; }
.form-msg.error { background: var(--burgundy-light); border-left: 4px solid var(--burgundy); color: var(--burgundy-dark); }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p { margin-bottom: 1rem; color: var(--muted); }
.contact-info img { margin-top: 1.5rem; border: 1px solid rgba(127, 29, 29, 0.1); }

/* FAQ */
.faq-full .faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(127, 29, 29, 0.1);
}
.faq-full .faq-item:last-of-type { border-bottom: none; }
.faq-full .faq-item h2 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.faq-full .faq-item p { color: var(--muted); }

/* Prose / legal */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.prose h3 { margin: 1.75rem 0 0.75rem; font-size: 1.2rem; }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; color: var(--muted); margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.legal-content { padding: 3rem 0 5rem; }

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    padding: 2rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-grid img { border: 1px solid rgba(127, 29, 29, 0.12); box-shadow: var(--shadow); }

/* Error page */
.error-page {
    padding: 6rem 0;
    text-align: center;
    min-height: 50vh;
}
.error-code {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}
.error-page h1 { margin-bottom: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.error-page p { color: var(--muted); max-width: 480px; margin: 0 auto 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
    background: var(--burgundy);
    color: var(--gold-pale);
    padding: 3.5rem 0 2rem;
    margin-top: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand strong {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cream);
}
.footer-brand p { font-size: 0.9rem; opacity: 0.85; font-style: italic; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: var(--gold-pale); font-size: 0.875rem; opacity: 0.9; }
.footer-links a:hover, .footer-legal a:hover { color: var(--gold-light); }
.footer-contact { font-size: 0.85rem; line-height: 1.8; opacity: 0.9; }
.footer-contact a { color: var(--gold-pale); }
.footer-host { margin-top: 0.75rem; font-size: 0.8rem; opacity: 0.7; }
.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.75;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.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(--ink);
    color: var(--cream);
    padding: 1.25rem 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-inner {
    max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
    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(--gold-light); }
.cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn-outline { border-color: var(--gold-pale); color: var(--gold-pale); }
.cookie-banner .btn-outline:hover { background: var(--gold-pale); color: var(--ink); }
.cookie-banner .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cookie-banner .btn-primary:hover { background: var(--gold-light); color: var(--ink); }

/* Responsive */
@media (max-width: 960px) {
    .hero-grid, .cards-grid, .stats-grid, .feature-row,
    .contact-grid, .about-grid, .services-grid, .footer-grid { grid-template-columns: 1fr; }
    .tour-card { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none; position: absolute; top: 76px; left: 0; right: 0;
        background: var(--cream); flex-direction: column; padding: 1.5rem;
        border-bottom: 1px solid rgba(127, 29, 29, 0.12);
        gap: 1rem;
    }
    .main-nav.open { display: flex; }
    .header-inner { position: relative; }
    .cards-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .callout-box { padding: 1.75rem; }
}
