/* ---------- Design tokens ---------- */
:root {
    --ink: #201a15;
    --ink-soft: #4a4038;
    --cream: #faf5ec;
    --cream-2: #f2ead9;
    --line: #e4d8c3;
    --rust: #b6502e;
    --rust-dark: #93401f;
    --forest: #2f4a3c;
    --forest-dark: #22362b;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --gold: #c98a2c;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 2px 10px rgba(32, 26, 21, 0.08);
    --shadow-lg: 0 8px 30px rgba(32, 26, 21, 0.14);
    --max-width: 1120px;
    --font-sans: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; margin: 0 0 0.5em; color: var(--forest-dark); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--forest); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.header-inner, .footer-inner, .section-inner, .breadcrumb-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 48px 20px; max-width: var(--max-width); margin: 0 auto; }
.section-tight { padding: 28px 20px; max-width: var(--max-width); margin: 0 auto; }
.section-alt { background: var(--cream-2); }
.section-alt > .section { background: transparent; }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { border-radius: 6px; width: 48px; height: auto; }
.logo-text { font-family: var(--font-serif); font-weight: bold; font-size: 1.05rem; color: var(--forest-dark); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink); font-weight: 500; }
.site-nav a:hover { color: var(--rust); text-decoration: none; }
.nav-cta { display: flex; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-small { padding: 9px 16px; font-size: 0.86rem; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.breadcrumbs { max-width: var(--max-width); margin: 0 auto; padding: 10px 20px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; font-size: 0.85rem; color: var(--ink-soft); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--line); }
.breadcrumbs a { color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
    background: var(--white);
    padding: 56px 20px;
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 44px;
    align-items: center;
}
.hero-inner { min-width: 0; }
.hero h1 { color: var(--forest-dark); }
.hero p.lede { color: var(--ink-soft); }
.hero-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-strip { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.trust-strip li { font-size: 0.92rem; display: flex; align-items: center; gap: 6px; color: var(--ink); }
.trust-strip li::before { content: '✓'; color: var(--gold); font-weight: bold; }
.hero .text-link { color: var(--rust-dark); text-decoration: underline; display: inline-block; margin-top: 14px; }

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .hero-media { aspect-ratio: 16 / 10; }
}

/* ---------- Quick booking bar ---------- */
.booking-bar {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    max-width: var(--max-width);
    margin: -34px auto 0;
    position: relative;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    align-items: end;
}
.booking-bar label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.booking-bar input, .booking-bar select {
    width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; font-size: 0.95rem; background: var(--cream);
}
.booking-bar .booking-note { grid-column: 1 / -1; font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 24px; }
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--cream-2); }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body .price { color: var(--rust-dark); font-weight: 700; font-size: 1.05rem; }
.card-body .spec { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 8px; }
.card-body p { flex: 1; }
.card-body a.card-link { font-weight: 600; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 18px 0; }
table { border-collapse: collapse; width: 100%; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.rate-table th, .rate-table td,
.specs-table th, .specs-table td,
.quickfacts-table th, .quickfacts-table td {
    padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem;
}
.rate-table thead th { background: var(--forest); color: #fff; font-weight: 600; white-space: nowrap; }
.rate-table tbody tr:hover { background: var(--cream-2); }
.specs-table th, .quickfacts-table th { width: 42%; background: var(--cream-2); font-weight: 600; color: var(--forest-dark); }
.price-box { border-collapse: collapse; width: 100%; max-width: 420px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-box th, .price-box td { padding: 11px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.price-box th { color: var(--ink-soft); font-weight: 500; }
.price-box td { font-weight: 700; color: var(--rust-dark); text-align: right; }
.price-box tr:last-child th, .price-box tr:last-child td { border-bottom: none; }

/* ---------- Lists ---------- */
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--forest); font-weight: bold; }

.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .two-col-list { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 20px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; padding: 4px 18px; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; position: relative; padding-right: 26px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 12px; font-size: 1.3rem; color: var(--rust); }
.faq-item[open] summary::after { content: '–'; }
.faq-answer { padding-bottom: 16px; color: var(--ink-soft); }

/* ---------- CTA block ---------- */
.cta-block { background: var(--forest); color: #fff; border-radius: var(--radius); text-align: center; padding: 44px 28px; }
.cta-block h2 { color: #fff; }
.cta-block p { color: rgba(255,255,255,.9); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-block .btn-row { justify-content: center; }

/* ---------- Who it's for boxes ---------- */
.for-against { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.for-against > div { padding: 20px; border-radius: var(--radius); }
.box-yes { background: #eaf3ec; border: 1px solid #cfe3d3; }
.box-no { background: #f7ece7; border: 1px solid #ecd6cb; }
@media (max-width: 700px) { .for-against { grid-template-columns: 1fr; } }

/* ---------- Note / callout ---------- */
.callout { background: var(--cream-2); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 4px; margin: 20px 0; }
.callout-updated { background: #fdf3e0; border-left: 4px solid var(--gold); padding: 10px 16px; border-radius: 4px; font-size: 0.9rem; display: inline-block; margin-bottom: 18px; }

/* ---------- Reviews ---------- */
.review-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; }
.review-card cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: #dfe6e0; padding: 48px 0 0; margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 32px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: var(--font-sans); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #c9d4cd; }
.footer-col a:hover { color: #fff; }
.footer-contact address { font-style: normal; color: #c9d4cd; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px 20px; font-size: 0.85rem; color: #a8b4ac; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile bar ---------- */
.sticky-mobile-bar { display: none; }
@media (max-width: 760px) {
    .sticky-mobile-bar {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
        box-shadow: 0 -4px 14px rgba(0,0,0,.15);
    }
    .sticky-mobile-bar a {
        flex: 1; text-align: center; padding: 14px 10px; font-weight: 700; color: #fff;
        display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.95rem;
    }
    .sticky-call { background: var(--rust); }
    .sticky-whatsapp { background: var(--whatsapp); }
    body { padding-bottom: 54px; }
}

/* ---------- Responsive nav ---------- */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute; top: 68px; left: 0; right: 0; background: var(--white);
        flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .25s ease;
    }
    .site-nav.open { max-height: 480px; }
    .site-nav ul { flex-direction: column; padding: 16px 20px 0; gap: 4px; }
    .site-nav ul a { display: block; padding: 10px 0; }
    .nav-cta { padding: 16px 20px 20px; }
}

/* ---------- Section title with subtitle ---------- */
.section-head { max-width: 70ch; margin-bottom: 8px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 18px; margin-top: 20px; }
.steps li { counter-increment: step; padding-left: 52px; position: relative; }
.steps li::before {
    content: counter(step); position: absolute; left: 0; top: -2px; width: 36px; height: 36px;
    background: var(--rust); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-serif);
}
.steps h3 { margin-bottom: 4px; font-size: 1.05rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small-note { font-size: 0.85rem; color: var(--ink-soft); }
.map-embed { width: 100%; border: 0; border-radius: var(--radius); min-height: 320px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 6px; font-size: 0.95rem; font-family: inherit; background: var(--white);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-success { background: #eaf3ec; border: 1px solid #cfe3d3; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; }
.form-error { background: #f7ece7; border: 1px solid #ecd6cb; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; }
