@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

/* ── Design tokens ── */
:root {
    --bg: #ffffff;
    --text: #1c2731;
    --muted: #5c6773;
    --brand: #0f2d44;
    --brand-light: #174668;
    --accent: #c86a30;
    --accent-light: #f4dbc8;
    --soft: #f7f4f0;
    --soft-alt: #faf8f6;
    --line: #e8e1da;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(15,45,68,.06);
    --shadow: 0 12px 36px rgba(15,45,68,.08);
    --shadow-lg: 0 24px 56px rgba(15,45,68,.12);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
}

body {
    font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Fraunces', 'Georgia', serif;
    color: var(--brand);
    line-height: 1.2;
    margin-top: 0;
}

a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
img { max-width: 100%; height: auto; }

.container {
    width: min(1140px, 90%);
    margin: 0 auto;
}

/* ── Fade-in animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeUp .6s var(--transition) both;
}

/* ══════════════════════════════════
   HEADER
   ══════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px) saturate(1.6);
    -webkit-backdrop-filter: blur(14px) saturate(1.6);
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(15,45,68,.08);
}

.header-inner {
    min-height: 72px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: opacity var(--transition);
}

.brand:hover { opacity: .8; }

.brand-kicker {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-main {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -.01em;
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

/* Nav */
.site-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.site-nav a {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.site-nav a:hover {
    background: var(--soft);
    color: var(--accent);
}

.site-nav a.active {
    background: var(--brand);
    color: #fff;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.nav-toggle:hover { background: var(--soft); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(170deg, #ffffff 0%, #f7f3ef 50%, #f0ebe5 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    right: -200px;
    top: -200px;
    background: radial-gradient(circle, rgba(200,106,48,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    left: -100px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(15,45,68,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

h1 {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.lead-text {
    max-width: 56ch;
    color: #3a4f60;
    font-size: 17px;
    line-height: 1.8;
}

.hero-points {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    color: #3a4f60;
}

.hero-points li {
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.hero-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.hero-visual {
    display: grid;
    gap: 16px;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-visual img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15,45,68,.16);
}

.hero-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    background: linear-gradient(145deg, #ffffff 20%, #faf7f4 100%);
    transition: transform var(--transition);
}

.hero-panel:hover {
    transform: translateY(-2px);
}

.hero-panel-top {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.hero-panel-main {
    font-size: 20px;
    font-family: 'Fraunces', serif;
    line-height: 1.4;
    color: var(--brand);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════ */
.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(170deg, #ffffff 0%, #f5f1ec 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -150px;
    background: radial-gradient(circle, rgba(200,106,48,.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 60ch;
    color: var(--muted);
    font-size: 17px;
}

/* ══════════════════════════════════
   SECTIONS
   ══════════════════════════════════ */
.section-block {
    padding: 80px 0;
}

.section-soft {
    background: var(--soft);
    background-image: url('../img/motif.svg');
    background-repeat: repeat;
    background-size: 280px;
    position: relative;
}

.section-soft::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247,244,240,.7) 0%, rgba(247,244,240,.95) 100%);
    pointer-events: none;
}

.section-soft > * {
    position: relative;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.section-head h2 {
    margin-bottom: 0;
}

/* ══════════════════════════════════
   CARDS
   ══════════════════════════════════ */
.cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Step card */
.step-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Tour, service, cta, detail cards */
.tour-card,
.service-card,
.cta-box,
.detail-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tour-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.media-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    margin: 0;
    padding: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition);
}

.media-card:hover {
    transform: translateY(-4px);
}

.media-card img {
    width: 100%;
    display: block;
    border-radius: calc(var(--radius) - 6px);
}

.tour-card {
    border-top: none;
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #e8a97e 100%);
}

.tour-card,
.service-card {
    box-shadow: var(--shadow-sm);
}

.tour-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    transition: transform var(--transition);
}

.tour-card:hover .tour-cover {
    transform: scale(1.02);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-tag {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    background: var(--accent);
    padding: 3px 10px;
    border-radius: 6px;
}

.tour-duration {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cta-box {
    background: linear-gradient(145deg, #fdfbf9 0%, #f7f3ef 100%);
    border: 1px solid var(--line);
}

/* ══════════════════════════════════
   CHECK LIST
   ══════════════════════════════════ */
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #3a4f60;
}

.check-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    background: linear-gradient(135deg, var(--accent) 0%, #e89a5e 100%);
    box-shadow: 0 2px 6px rgba(200,106,48,.25);
}

/* ══════════════════════════════════
   LINKS & BUTTONS
   ══════════════════════════════════ */
.text-link {
    color: var(--brand);
    font-weight: 700;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), gap var(--transition);
}

.text-link::after {
    content: '→';
    font-size: 14px;
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--accent);
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(15,45,68,.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,45,68,.28);
}

.btn-ghost {
    border-color: var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.content-narrow {
    max-width: 760px;
}

/* ══════════════════════════════════
   DETAIL PAGE
   ══════════════════════════════════ */
.detail-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.detail-card {
    position: sticky;
    top: 100px;
}

/* ══════════════════════════════════
   QUOTES
   ══════════════════════════════════ */
.quote {
    font-size: 18px;
    font-family: 'Fraunces', serif;
    color: var(--brand);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.quote-author {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    padding-left: 20px;
}

/* ══════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════ */
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 14px;
    color: var(--brand);
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    background: var(--soft-alt);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,106,48,.12);
    background: #fff;
}

.contact-form button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.honeypot {
    display: none;
}

/* Alerts */
.alert {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
}

.alert-success {
    background: #ecf7ef;
    border: 1px solid #a8dbb3;
    color: #1a6630;
}

.alert-error {
    background: #fdf0f0;
    border: 1px solid #f0baba;
    color: #9a2525;
}

/* ══════════════════════════════════
   404
   ══════════════════════════════════ */
.not-found {
    text-align: center;
    padding: 40px 0;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.site-footer {
    background: linear-gradient(170deg, #0a1f30 0%, var(--brand) 100%);
    color: rgba(255,255,255,.75);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: -200px;
    background: radial-gradient(circle, rgba(200,106,48,.1) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer a {
    color: rgba(255,255,255,.8);
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--accent-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
    gap: 36px;
    position: relative;
    padding-bottom: 40px;
}

.footer-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-subtitle {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.3);
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.footer-links li a {
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    color: rgba(255,255,255,.45);
    position: relative;
}

.footer-license {
    font-weight: 600;
    color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════
   QUICK CONTACT BOX
   ══════════════════════════════════ */
.quick-contact-box {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: min(320px, calc(100% - 40px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 90;
    animation: slideUp .5s var(--transition) both;
    animation-delay: 1s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.quick-contact-box p {
    margin: 0 0 12px;
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
}

.quick-contact-actions {
    display: flex;
    gap: 8px;
}

.quick-contact-actions .btn {
    flex: 1;
    padding: 9px 10px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(37,211,102,.25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,.35);
}

.btn-email {
    background: var(--soft);
    color: var(--brand);
    border-color: var(--line);
}

.btn-email:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--accent-light);
    color: var(--accent);
    border-color: #e8c3a4;
}

.btn-call:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 960px) {
    .hero-grid,
    .two-col,
    .cards-grid,
    .steps-grid,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 8px 0 4px;
        min-height: auto;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        gap: 4px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, opacity .25s ease;
        opacity: 0;
    }

    .site-nav.open {
        max-height: 400px;
        opacity: 1;
        padding-top: 8px;
    }

    .site-nav a {
        padding: 10px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .hero-section {
        padding: 60px 0 48px;
    }

    .section-block {
        padding: 56px 0;
    }

    .page-hero {
        padding: 56px 0 28px;
    }

    .quick-contact-box {
        position: fixed;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        border-radius: 14px;
    }

    .site-footer {
        padding-bottom: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .detail-card {
        position: static;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 600px) and (max-width: 960px) {
    .cards-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .container {
        width: 92%;
    }
}
