/* ============================================================
   Travel blog — modern, clean, editorial. No framework.
   ============================================================ */
:root {
    --ink: #15202b;
    --ink-soft: #475569;
    --muted: #8a97a6;
    --line: #e8ebef;
    --bg: #ffffff;
    --bg-soft: #f6f8fa;
    --accent: #0f766e;        /* teal */
    --accent-ink: #0b5a54;
    --radius: 14px;
    --shadow: 0 1px 2px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.06);
    --maxw: 1120px;
    --readw: 720px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --serif: "Fraunces", "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--readw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; display: block; }
.nav { display: flex; gap: 4px; flex: 1; overflow: hidden; }
.nav a { color: var(--ink-soft); padding: 8px 12px; border-radius: 8px; font-size: .92rem; font-weight: 500; white-space: nowrap; }
.nav a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }
.lang { display: flex; gap: 2px; }
.lang__item { font-size: .78rem; font-weight: 700; color: var(--muted); padding: 5px 8px; border-radius: 7px; letter-spacing: .03em; }
.lang__item:hover { background: var(--bg-soft); text-decoration: none; }
.lang__item.is-active { color: #fff; background: var(--accent); }

/* ---------- Home heading ---------- */
.home { padding-top: 44px; }
.home__head { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.home__eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; }
.home__title { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 2.9rem); line-height: 1.08; letter-spacing: -.01em; margin: 0 0 8px; }
.home__subtitle { color: var(--ink-soft); font-size: 1.08rem; margin: 0; max-width: 60ch; }

/* ---------- Grid + Cards ---------- */
.grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); margin: 8px 0 40px; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { display: block; aspect-ratio: 3/2; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2rem; color: var(--muted); }
.card__body { padding: 16px 18px 20px; }
.card__region { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.card__title { font-size: 1.18rem; line-height: 1.3; margin: 6px 0 8px; letter-spacing: -.01em; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--accent-ink); text-decoration: none; }
.card__excerpt { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Article ---------- */
.post { padding-bottom: 60px; }
/* Wider reading measure for articles on desktop (overrides .container-narrow) */
.post .container-narrow { max-width: 800px; }
.post__hero { margin: 0 0 8px; }
.post__hero img { width: 100%; max-height: 70vh; object-fit: cover; }
.credit { font-size: .76rem; color: var(--muted); padding: 6px 20px 0; text-align: center; }
.post__head { padding-top: 30px; }
.post__region { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.post__title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; letter-spacing: -.01em; margin: 12px 0 26px; }
.post__section { margin: 38px 0; }
.post__section h2 { font-size: 1.6rem; line-height: 1.2; letter-spacing: -.01em; margin: 0 0 16px; }
.post__figure { margin: 0 0 20px; }
.post__figure img { width: 100%; border-radius: var(--radius); }
.post__figure .credit { text-align: left; padding-left: 0; }

/* prose (rendered markdown) */
.prose { color: var(--ink); }
.prose p { margin: 0 0 18px; }
.prose h3 { font-size: 1.22rem; margin: 28px 0 12px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 24px; }
.prose li { margin: 6px 0; }
.prose a { color: var(--accent-ink); text-decoration: underline; }
.prose strong { font-weight: 700; }
.prose blockquote { margin: 20px 0; padding: 8px 18px; border-left: 3px solid var(--accent); color: var(--ink-soft); background: var(--bg-soft); border-radius: 0 8px 8px 0; }

/* FAQ */
.post__faq { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 30px; }
.post__faq h2 { font-size: 1.5rem; margin: 0 0 16px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 14px 18px; font-weight: 600; 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: '+'; color: var(--accent); font-size: 1.3rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item__answer { padding: 0 18px 16px; color: var(--ink-soft); }

/* ---------- Booking affiliate ---------- */
.booking {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    flex-wrap: wrap; margin: 34px 0;
    padding: 22px 24px; border-radius: var(--radius);
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    border: 1px solid #cbeae6;
}
.booking--wide { margin-top: 44px; }
.booking__text { flex: 1; min-width: 220px; }
.booking__title { font-size: 1.2rem; margin: 0 0 4px; letter-spacing: -.01em; }
.booking__blurb { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.booking__cta {
    flex: none; white-space: nowrap;
    background: #003b95;          /* Booking.com blue */
    color: #fff; font-weight: 700; font-size: .98rem;
    padding: 13px 22px; border-radius: 10px;
}
.booking__cta:hover { background: #002a6e; text-decoration: none; }

/* ---------- Search / list ---------- */
.list-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 30px 0 22px; }
.list-head h1 { font-family: var(--serif); font-size: 2rem; margin: 0; }
.search { display: flex; gap: 8px; }
.search input { border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; font: inherit; min-width: 220px; }
.search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(15,118,110,.12); }
.search button { border: 0; background: var(--accent); color: #fff; border-radius: 10px; padding: 10px 18px; font: inherit; font-weight: 600; cursor: pointer; }
.search button:hover { background: var(--accent-ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .88rem; color: var(--ink-soft); background: #fff; }
.chip:hover { border-color: var(--accent); color: var(--accent-ink); text-decoration: none; }
.chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip__count { opacity: .6; font-size: .8em; }

/* ---------- Pagination ---------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 30px 0 10px; }
.pagination__btn { border: 1px solid var(--line); border-radius: 10px; padding: 9px 16px; font-weight: 600; color: var(--ink); }
.pagination__btn:hover { border-color: var(--accent); color: var(--accent-ink); text-decoration: none; }
.pagination__info { color: var(--muted); font-size: .9rem; }

/* ---------- Misc ---------- */
.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-soft); }
.empty-state h1 { font-family: var(--serif); font-size: 2.4rem; margin: 0 0 10px; }
.btn { display: inline-block; background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 10px; font-weight: 600; margin-top: 14px; }
.btn:hover { background: var(--accent-ink); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 60px; background: var(--bg-soft); color: var(--ink-soft); font-size: .92rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding: 48px 20px 40px; }
.site-footer__brand { max-width: 320px; }
.site-footer__logo { height: 52px; width: auto; }
.site-footer__tagline { margin: 14px 0 12px; color: var(--ink-soft); font-size: .95rem; max-width: 34ch; }
.site-footer__mail { font-weight: 600; color: var(--accent-ink); }
.site-footer__heading { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin: 4px 0 14px; }
.site-footer__col { display: flex; flex-direction: column; }
.site-footer__col a { color: var(--ink-soft); padding: 5px 0; }
.site-footer__col a:hover { color: var(--accent-ink); text-decoration: none; }
.site-footer__col a[aria-current="true"] { color: var(--ink); font-weight: 600; }
.site-footer__bottom { border-top: 1px solid var(--line); }
.site-footer__bottom .container { padding-top: 20px; padding-bottom: 20px; }
.site-footer__bottom p { margin: 0; color: var(--muted); font-size: .86rem; }

/* ---------- Static pages (About / Contact) ---------- */
.page { padding-bottom: 64px; }
.page__hero {
    background: linear-gradient(180deg, #f0fdfa 0%, var(--bg-soft) 60%, var(--bg) 100%);
    border-bottom: 1px solid var(--line);
    padding: 60px 0 46px; margin-bottom: 44px;
}
.page__eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 14px; }
.page__title { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 2.9rem); line-height: 1.1; letter-spacing: -.01em; margin: 0 0 14px; }
.page__lead { font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 60ch; }
.page .prose { font-size: 1.05rem; }
.section-title { font-family: var(--serif); font-size: 1.7rem; letter-spacing: -.01em; margin: 48px 0 22px; }

/* Value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 16px; }
.value-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.value-card__icon { font-size: 1.8rem; line-height: 1; }
.value-card__title { font-size: 1.12rem; margin: 14px 0 8px; letter-spacing: -.01em; }
.value-card__text { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* CTA band */
.cta-band {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    margin-top: 50px; padding: 32px 34px; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-ink) 100%); color: #fff;
}
.cta-band__title { font-family: var(--serif); font-size: 1.55rem; margin: 0 0 6px; }
.cta-band__blurb { margin: 0; color: rgba(255,255,255,.88); max-width: 52ch; }
.cta-band .btn { background: #fff; color: var(--accent-ink); }
.cta-band .btn:hover { background: #eafaf7; }

/* Big button */
.btn--lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Contact layout ---------- */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.contact__aside { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.contact__aside-title { font-size: 1.15rem; margin: 0 0 18px; letter-spacing: -.01em; }
.contact__item { margin-bottom: 18px; }
.contact__item-label { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.contact__item p { margin: 0; color: var(--ink-soft); }
.contact__item a { font-weight: 600; }

/* ---------- Forms ---------- */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field__opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
    border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
    font: inherit; color: var(--ink); background: var(--bg); width: 100%; resize: vertical;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(15,118,110,.12); }
.field--error input, .field--error textarea { border-color: #dc2626; }
.field--error input:focus, .field--error textarea:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.field__error { color: #dc2626; font-size: .84rem; margin: 7px 0 0; }
/* Honeypot — visually removed, still in the DOM for bots */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Alerts ---------- */
.alert { border-radius: 10px; padding: 14px 16px; margin-bottom: 22px; font-size: .96rem; border: 1px solid transparent; }
.alert--success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert--error { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .site-footer__brand { grid-column: 1 / -1; max-width: none; }
    .contact { grid-template-columns: 1fr; gap: 26px; }
    .values { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    body { font-size: 16px; }
    .nav { display: none; }
    .hero__media { height: 56vh; }
    .post__title { margin-bottom: 18px; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .page__hero { padding: 44px 0 34px; margin-bottom: 32px; }
    .cta-band { padding: 26px; }
}
@media (max-width: 560px) {
    .site-footer__inner { grid-template-columns: 1fr; gap: 22px; }
}
