:root {
    --cream: #FFFBEB;
    --cream-dark: #FEF3C7;
    --burgundy: #7F1D1D;
    --burgundy-dark: #5C1515;
    --burgundy-light: #991B1B;
    --gold: #B45309;
    --dark: #292524;
    --gray: #78716C;
    --white: #FFFFFF;
    --radius: 6px;
    --shadow: 0 8px 32px rgba(127, 29, 29, 0.1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 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(--dark);
    line-height: 1.7;
    background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--burgundy-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(--burgundy); color: var(--cream); padding: 0.75rem 1rem;
}
.skip-link:focus { left: 0; }

/* Art nouveau subtle pattern */
.pattern-bg {
    background-color: var(--cream);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='none' stroke='%237F1D1D' stroke-width='0.4' opacity='0.12'/%3E%3Cpath d='M5 30 Q15 35 25 30 Q15 25 5 30' fill='none' stroke='%237F1D1D' stroke-width='0.4' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 251, 235, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 29, 29, 0.15);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 76px;
}
.logo {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--dark); font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em;
}
.logo-mark {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius);
    background: var(--burgundy); color: var(--cream);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    border: 2px solid var(--gold);
}
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a { color: var(--dark); font-weight: 600; font-size: 0.95rem; }
.main-nav a.active { color: var(--burgundy); border-bottom: 2px solid var(--burgundy); 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.75rem 1.75rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s; font-family: inherit;
}
.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(--cream); 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.5rem 1.15rem; font-size: 0.875rem; }

/* Trust bar */
.trust-bar {
    background: var(--burgundy); color: var(--cream);
    padding: 0.6rem 0; font-size: 0.85rem; text-align: center;
}
.trust-bar span { margin: 0 1rem; opacity: 0.92; }

/* Hero */
.hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative; overflow: hidden;
}
.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%3Cellipse cx='40' cy='40' rx='30' ry='18' fill='none' stroke='%237F1D1D' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 80px 80px; pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; position: relative;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.15; margin-bottom: 1.25rem; font-weight: 700;
    color: var(--burgundy-dark);
}
.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); overflow: hidden;
    box-shadow: var(--shadow); border: 3px solid var(--burgundy);
    position: relative;
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Page hero */
.page-hero {
    padding: 3.5rem 0; text-align: center;
    background: linear-gradient(180deg, var(--cream-dark), var(--cream));
    border-bottom: 1px solid rgba(127, 29, 29, 0.12);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--burgundy-dark); margin-bottom: 0.75rem;
}
.page-hero p { color: var(--gray); 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.35rem);
    color: var(--burgundy-dark); margin-bottom: 0.75rem;
}
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* Callout */
.callout-box {
    background: var(--white); border-left: 4px solid var(--burgundy);
    padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0; box-shadow: var(--shadow);
}
.callout-box strong { color: var(--burgundy); }

/* Stats */
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    text-align: center;
}
.stat-item {
    background: var(--white); padding: 1.75rem 1rem;
    border-radius: var(--radius); border: 1px solid rgba(127, 29, 29, 0.12);
}
.stat-num {
    font-family: var(--font-display); font-size: 2.25rem;
    font-weight: 700; color: var(--burgundy); display: block;
}
.stat-label { font-size: 0.9rem; color: var(--gray); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid rgba(127, 29, 29, 0.1);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 {
    font-family: var(--font-display); font-size: 1.35rem;
    color: var(--burgundy-dark); margin-bottom: 0.5rem;
}
.card-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.card-price { font-weight: 700; color: var(--burgundy); margin-bottom: 0.75rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step {
    text-align: center; padding: 1.5rem;
    background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(127, 29, 29, 0.1);
}
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--burgundy); color: var(--cream);
    font-weight: 700; margin-bottom: 0.75rem;
}
.step h3 { font-family: var(--font-display); color: var(--burgundy-dark); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--gray); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 1rem; border: 1px solid rgba(127, 29, 29, 0.1);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600;
    color: var(--burgundy-dark); list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--burgundy); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--gray); }

/* Tour detail */
.tour-block {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem;
    align-items: start; margin-bottom: 3.5rem; padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(127, 29, 29, 0.12);
}
.tour-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tour-block:nth-child(even) { direction: rtl; }
.tour-block:nth-child(even) > * { direction: ltr; }
.tour-block img { border-radius: var(--radius); box-shadow: var(--shadow); border: 2px solid var(--burgundy); }
.tour-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1rem 0; font-size: 0.9rem; }
.tour-meta span { background: var(--cream-dark); padding: 0.35rem 0.75rem; border-radius: var(--radius); }
.tour-block h2 {
    font-family: var(--font-display); font-size: 1.75rem;
    color: var(--burgundy-dark); margin-bottom: 0.75rem;
}

/* Content prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 {
    font-family: var(--font-display); color: var(--burgundy-dark);
    margin: 2rem 0 0.75rem; font-size: 1.5rem;
}
.prose h3 { color: var(--burgundy); margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: var(--dark); }
.prose ul, .prose ol { margin: 0 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.35rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(127, 29, 29, 0.1); }
.contact-form { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(127, 29, 29, 0.1); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(127, 29, 29, 0.25);
    border-radius: var(--radius); font-family: inherit; font-size: 1rem;
    background: var(--cream);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.9rem; }
.form-check input { margin-top: 0.25rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* Disclaimer */
.disclaimer-box {
    background: var(--white); border: 1px solid rgba(127, 29, 29, 0.2);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: var(--gray);
}
.disclaimer-box strong { color: var(--burgundy); display: block; margin-bottom: 0.35rem; }

/* CTA band */
.cta-band {
    background: var(--burgundy); color: var(--cream);
    padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--cream); color: var(--burgundy); border-color: var(--cream); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--burgundy-dark); }

/* 404 */
.error-page { text-align: center; padding: 5rem 0; }
.error-page h1 { font-family: var(--font-display); font-size: 3rem; color: var(--burgundy); margin-bottom: 1rem; }
.error-page p { color: var(--gray); margin-bottom: 2rem; font-size: 1.1rem; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); border-top: 2px solid var(--burgundy);
    padding: 1.25rem 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-inner p { flex: 1; min-width: 240px; font-size: 0.9rem; }
.cookie-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Footer */
.site-footer {
    background: var(--burgundy-dark); color: rgba(255, 251, 235, 0.9);
    padding: 3.5rem 0 2rem; margin-top: 0;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-bottom: 2rem;
}
.footer-brand strong { font-family: var(--font-display); font-size: 1.35rem; display: block; margin-bottom: 0.5rem; }
.footer-slogan { 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: rgba(255, 251, 235, 0.85); font-size: 0.9rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--cream); }
.footer-contact { font-size: 0.85rem; line-height: 1.8; }
.footer-contact a { color: var(--cream-dark); }
.footer-host { opacity: 0.7; margin-top: 0.5rem; }
.footer-disclaimer {
    font-size: 0.8rem; opacity: 0.75; padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 251, 235, 0.15); margin-bottom: 1rem;
}
.footer-copy { font-size: 0.8rem; opacity: 0.6; text-align: center; }

/* Two col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); border: 2px solid var(--burgundy); }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .tour-block, .contact-grid, .two-col { grid-template-columns: 1fr; }
    .tour-block:nth-child(even) { direction: ltr; }
    .stats-row { 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.15); gap: 1rem;
    }
    .main-nav.open { display: flex; }
    .stats-row { grid-template-columns: 1fr; }
}
