/* ──────────────────────────────────────────────────────────
   VenezuelaEcologica.com
   Eco-tourism & conservation editorial.
   Palette: warm sand + deep forest green + sunset terracotta
   Fonts: Fraunces (display) + Inter (body)
   ────────────────────────────────────────────────────────── */

:root {
    /* Surfaces */
    --sand: #f3ede0;
    --sand-soft: #faf6ec;
    --sand-deep: #e8dfca;
    --cream: #faf6ec;
    --card: #ffffff;

    /* Earth + nature accents */
    --forest: #2d4a3a;
    --forest-deep: #1a2c22;
    --forest-soft: #4d6b58;
    --moss: #7a9377;
    --terracotta: #c66135;
    --terracotta-deep: #9c4a25;
    --terracotta-soft: #e8b89a;
    --sun: #d4952a;
    --sky: #94b8c4;
    --clay: #b85a3a;

    /* Type */
    --ink: #1c1814;
    --ink-soft: #4a423a;
    --ink-mute: #8b7e6f;
    --ink-faint: #b8ab9b;

    /* Lines */
    --rule: rgba(28, 24, 20, 0.10);
    --rule-strong: rgba(28, 24, 20, 0.22);
    --rule-forest: rgba(45, 74, 58, 0.30);

    /* Geometry */
    --radius: 14px;
    --radius-sm: 8px;
    --radius-xs: 4px;

    /* Type families */
    --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --serif: 'Fraunces', Georgia, serif;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --content-max: 740px;
    --grid-max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    background: var(--sand);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    min-height: 100vh;
}

::selection { background: var(--terracotta); color: var(--cream); }

a {
    color: var(--terracotta-deep);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--terracotta); }

img { max-width: 100%; height: auto; display: block; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--ink);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.012em;
    font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.02;
    font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144;
}
h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.6rem);
    font-weight: 600;
}
h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--body); }

em, i { font-style: italic; }
strong { color: var(--ink); font-weight: 600; }

/* ─── TIPBAR ─── */
.tipbar {
    background: var(--forest-deep);
    color: var(--cream);
    font-size: 0.72rem;
    padding: 10px 24px;
    text-align: center;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}
.tipbar a {
    color: var(--terracotta-soft);
    font-weight: 700;
    letter-spacing: 0.22em;
}
.tipbar a:hover { color: var(--cream); }
.tipbar strong { color: var(--cream); }

/* ─── MASTHEAD ─── */
.masthead {
    background: var(--sand);
    padding: 56px 32px 40px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.masthead::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 1px;
    background: var(--terracotta);
}
.masthead-inner { max-width: var(--grid-max); margin: 0 auto; }
.brand {
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    font-weight: 500;
    color: var(--forest-deep);
    letter-spacing: -0.028em;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    font-variation-settings: "SOFT" 100, "opsz" 144;
}
.brand .em {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
}
.brand .dot {
    color: var(--sun);
    margin: 0 6px;
    font-size: 0.6em;
    position: relative;
    top: -0.4em;
}
.brand-tag {
    font-size: 0.7rem;
    color: var(--ink-mute);
    margin-top: 14px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--body);
}

/* ─── NAV ─── */
.nav {
    background: var(--sand);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(243, 237, 224, 0.94);
}
.nav-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 16px;
}
.nav a {
    color: var(--ink-soft);
    text-decoration: none;
    padding: 16px 18px;
    font-family: var(--body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px;
    bottom: 10px;
    height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav a:hover, .nav a[aria-current="page"] {
    color: var(--forest);
}
.nav a:hover::after, .nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* ─── HERO PHOTO ─── */
.hero-photo {
    background: var(--sand);
    padding: 56px 16px 24px;
    text-align: center;
}
.hero-photo img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 40px 80px -20px rgba(45, 74, 58, 0.30),
                0 15px 30px -10px rgba(28, 24, 20, 0.18);
}
.hero-photo figcaption {
    max-width: 580px;
    margin: 20px auto 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink-mute);
}

/* ─── ARTICLE BODY ─── */
.article-body {
    background: var(--sand);
    padding: 72px 32px;
}
.article-body-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

/* Crumb */
.crumb {
    font-size: 0.7rem;
    color: var(--ink-mute);
    margin-bottom: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}
.crumb a { color: var(--ink-mute); text-decoration: none; transition: color 0.3s; }
.crumb a:hover { color: var(--terracotta-deep); }
.crumb .sep { margin: 0 10px; color: var(--ink-faint); }

/* Category tag */
.cat-tag {
    display: inline-block;
    font-family: var(--body);
    font-size: 0.66rem;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule-forest);
}

/* Dek */
.dek {
    font-family: var(--display);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--ink-soft);
    line-height: 1.42;
    margin: 0 0 36px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Meta */
.meta {
    font-size: 0.7rem;
    color: var(--ink-mute);
    margin-bottom: 48px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
}

/* Body */
.article-body p {
    margin: 0 0 1.4em;
    font-size: 1.06rem;
    line-height: 1.78;
    color: var(--ink-soft);
}
.article-body p strong { color: var(--ink); }

/* Drop cap */
.article-body .dek + p::first-letter,
.article-body .verdict + p::first-letter {
    font-family: var(--display);
    font-size: 4.4em;
    font-weight: 600;
    color: var(--terracotta);
    float: left;
    line-height: 0.88;
    margin: 0.08em 0.12em 0 0;
    padding: 0;
    font-variation-settings: "SOFT" 100, "opsz" 144;
}

.article-body h2 {
    margin-top: 2.4em;
    margin-bottom: 0.7em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid var(--rule);
    color: var(--forest-deep);
}
.article-body h3 { margin-top: 2em; color: var(--forest); }
.article-body ul, .article-body ol { margin: 0 0 1.5em; padding-left: 24px; color: var(--ink-soft); }
.article-body li { margin-bottom: 0.5em; line-height: 1.7; }

/* ─── INFO BLOCK ─── */
.info-block {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 26px 36px;
}
.info-block .label {
    font-family: var(--body);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 8px;
}
.info-block .value {
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.35;
}
.info-block .value a {
    color: var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta-soft);
    transition: border-color 0.3s;
}
.info-block .value a:hover { border-bottom-color: var(--terracotta); }

/* ─── VERDICT (forest-green block) ─── */
.verdict {
    background: var(--forest);
    color: var(--cream);
    padding: 44px 40px;
    margin: 56px 0;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(45, 74, 58, 0.30);
}
.verdict::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 1px;
    background: var(--terracotta-soft);
}
.verdict .rating {
    font-family: var(--display);
    font-size: 3.4rem;
    font-weight: 500;
    color: var(--terracotta-soft);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "SOFT" 100, "opsz" 144;
}
.verdict .rating .max {
    font-size: 1rem;
    color: rgba(250, 246, 236, 0.5);
    font-weight: 400;
    font-family: var(--body);
}
.verdict .summary {
    font-family: var(--display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--cream);
    margin-top: 16px;
    line-height: 1.4;
    font-weight: 400;
}

/* ─── HIGHLIGHTS / BULLET LISTS ─── */
.highlights, .danger-list, .wildlife-list, .before-go-list {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--forest);
    padding: 28px 32px;
    margin: 36px 0;
    border-radius: var(--radius-sm);
}
.highlights h4, .danger-list h4, .wildlife-list h4, .before-go-list h4 {
    margin: 0 0 16px;
    font-family: var(--body);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--forest);
    font-weight: 700;
}
.danger-list { border-left-color: var(--terracotta-deep); }
.danger-list h4 { color: var(--terracotta-deep); }
.wildlife-list { border-left-color: var(--moss); }
.wildlife-list h4 { color: var(--forest); }

.highlights ul, .danger-list ul, .wildlife-list ul, .before-go-list ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.highlights li, .danger-list li, .wildlife-list li, .before-go-list li {
    color: var(--ink);
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: 1.06rem;
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}
.highlights li::before {
    content: '◆';
    position: absolute;
    left: 0; top: 0.2em;
    color: var(--forest);
    font-size: 0.6em;
}
.danger-list li::before {
    content: '⚠';
    position: absolute;
    left: 0; top: 0;
    color: var(--terracotta-deep);
    font-size: 1em;
}
.wildlife-list li::before {
    content: '◉';
    position: absolute;
    left: 0; top: 0.2em;
    color: var(--moss);
    font-size: 0.55em;
}
.before-go-list li::before {
    content: '→';
    position: absolute;
    left: 0; top: 0;
    color: var(--forest);
    font-size: 0.95em;
}

/* ─── COMPARISON BLOCK (international equivalent) ─── */
.comparison-block {
    background: linear-gradient(135deg, var(--sand-deep), var(--cream));
    border: 1px solid var(--rule);
    padding: 32px 36px;
    margin: 48px 0;
    border-radius: var(--radius);
    position: relative;
}
.comparison-block .label {
    font-family: var(--body);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--terracotta-deep);
    font-weight: 700;
    margin-bottom: 14px;
}
.comparison-block h3 {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 500;
}
.comparison-block p {
    font-family: var(--display);
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* ─── COST / PRICE TABLE ─── */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 36px 0;
}
.cost-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 24px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
}
.cost-card .tier {
    font-family: var(--body);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--ink-mute);
    font-weight: 700;
    margin-bottom: 10px;
}
.cost-card .price {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--terracotta);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variation-settings: "SOFT" 100, "opsz" 144;
}
.cost-card .price small {
    font-size: 0.85rem;
    color: var(--ink-mute);
    font-weight: 400;
    font-family: var(--body);
}
.cost-card .notes {
    margin-top: 10px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-family: var(--display);
    font-style: italic;
}

/* ─── HOTEL / TOUR / RESTAURANT LISTS ─── */
.listing {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
}
.listing-info h4 {
    margin: 0 0 4px;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: -0.005em;
}
.listing-info .type {
    font-family: var(--body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 8px;
}
.listing-info p {
    font-family: var(--display);
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}
.listing-price {
    font-family: var(--display);
    font-weight: 600;
    color: var(--terracotta-deep);
    font-size: 1.05rem;
    white-space: nowrap;
    text-align: right;
}
.listing-price small {
    display: block;
    font-size: 0.7rem;
    color: var(--ink-mute);
    font-weight: 400;
    font-family: var(--body);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 3px;
}
.listing.recommended {
    border-color: var(--terracotta);
    border-width: 1px;
    background: linear-gradient(135deg, rgba(198, 97, 53, 0.04), var(--cream));
}
.listing.recommended .listing-info h4::after {
    content: ' ★';
    color: var(--terracotta);
}

/* ─── DESTINATION SUB-NAV ─── */
.destination-subnav {
    background: var(--forest-deep);
    border-bottom: 1px solid var(--forest);
}
.destination-subnav-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.dsn-name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    font-style: italic;
    letter-spacing: -0.005em;
}
.dsn-links { display: flex; gap: 0; flex-wrap: wrap; }
.dsn-links a {
    color: rgba(250, 246, 236, 0.65);
    text-decoration: none;
    padding: 8px 16px;
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s, background 0.3s;
    border-radius: 999px;
}
.dsn-links a:hover,
.dsn-links a[aria-current="page"] {
    color: var(--cream);
    background: rgba(198, 97, 53, 0.25);
}

/* ─── ACTION BUTTONS ─── */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 36px 0;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--forest);
    color: var(--cream);
    padding: 15px 30px;
    border: 1px solid var(--forest);
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.action-btn:hover {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
    color: var(--cream);
    transform: translateY(-1px);
}
.action-btn.secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule-strong);
}
.action-btn.secondary:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

/* ─── GALLERY ─── */
.gallery-section {
    background: var(--forest-deep);
    padding: 96px 32px;
}
.gallery-inner { max-width: 1400px; margin: 0 auto; }
.gallery-section h2 {
    color: var(--cream);
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.018em;
}
.gallery-section .gallery-sub {
    text-align: center;
    color: var(--terracotta-soft);
    font-size: 0.7rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 72px;
    font-weight: 700;
    font-family: var(--body);
}

.gallery-grid {
    columns: 1;
    column-gap: 20px;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; column-gap: 28px; } }
@media (min-width: 1100px) { .gallery-grid { columns: 3; column-gap: 32px; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 32px;
    cursor: zoom-in;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--cream);
    padding: 40px 18px 16px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--display);
    font-style: italic;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 18, 14, 0.97);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    border-radius: var(--radius-sm);
}
.lightbox .lb-close {
    position: absolute;
    top: 24px; right: 28px;
    background: transparent;
    border: none;
    color: var(--terracotta-soft);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 8px;
    font-family: var(--display);
    transition: color 0.3s;
    line-height: 1;
}
.lightbox .lb-close:hover { color: var(--cream); }
.lightbox .lb-caption {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    color: var(--cream);
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    padding: 0 32px;
}

/* ─── HUB HERO ─── */
.hub-hero {
    background: var(--sand);
    padding: 96px 32px 56px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.hub-hero h1 {
    margin: 24px 0 16px;
    font-style: italic;
    font-weight: 500;
}
.hub-hero .dek {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* ─── DESTINATION CARDS ─── */
.destination-grid {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 72px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 56px 32px;
}
.destination-card {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
.destination-card .card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--sand-deep);
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
}
.destination-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: saturate(0.95);
}
.destination-card:hover .card-image img {
    transform: scale(1.03);
    filter: saturate(1.05);
}
.destination-card .type-tag {
    font-family: var(--body);
    font-size: 0.66rem;
    color: var(--terracotta-deep);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
    margin-bottom: 10px;
}
.destination-card h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--forest-deep);
}
.destination-card:hover h3 { color: var(--terracotta-deep); }
.destination-card .card-meta {
    font-family: var(--body);
    font-size: 0.74rem;
    color: var(--ink-mute);
    margin-bottom: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}
.destination-card .card-verdict {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.55;
    font-family: var(--display);
    font-style: italic;
    margin: 0;
}

/* ─── HOMEPAGE ─── */
.home-hero {
    background: var(--sand);
    padding: 120px 32px 80px;
    text-align: center;
}
.home-hero h1 {
    font-size: clamp(3.2rem, 8vw, 6.4rem);
    margin: 0 0 28px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--forest-deep);
}
.home-hero p {
    max-width: 580px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--ink-soft);
    font-family: var(--display);
    font-style: italic;
    line-height: 1.5;
}
.home-hero::after {
    content: '';
    display: block;
    width: 48px; height: 1px;
    background: var(--terracotta);
    margin: 56px auto 0;
}

/* ─── SISTER SITES (cross-link to Venezuela cluster) ─── */
.sister-sites {
    background: var(--sand-deep);
    padding: 64px 32px;
    border-top: 1px solid var(--rule);
}
.sister-sites-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    text-align: center;
}
.sister-sites .label {
    font-family: var(--body);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 14px;
}
.sister-sites h2 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 36px;
    color: var(--forest-deep);
}
.sister-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.sister-tile {
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 28px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.3s, transform 0.3s;
}
.sister-tile:hover {
    border-color: var(--terracotta);
    transform: translateY(-2px);
    color: var(--ink);
}
.sister-tile .sd {
    font-family: var(--body);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--terracotta-deep);
    font-weight: 700;
    margin-bottom: 8px;
}
.sister-tile h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--forest-deep);
    margin: 0 0 6px;
}
.sister-tile p {
    font-family: var(--display);
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin: 0;
    font-style: italic;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--forest-deep);
    color: rgba(250, 246, 236, 0.55);
    padding: 80px 32px 40px;
    margin-top: 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 1px;
    background: var(--terracotta);
    margin-top: 32px;
}
.footer-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}
.footer-inner h4 {
    color: var(--terracotta-soft);
    font-family: var(--body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    margin: 0 0 18px;
    font-weight: 700;
}
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { margin-bottom: 10px; }
.footer-inner a {
    color: rgba(250, 246, 236, 0.55);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
    font-family: var(--display);
    font-style: italic;
}
.footer-inner a:hover { color: var(--cream); }
.footer-brand {
    font-family: var(--display);
    font-size: 1.7rem;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.018em;
    font-variation-settings: "SOFT" 100, "opsz" 144;
}
.footer-brand .em { color: var(--terracotta); font-style: italic; font-weight: 400; }
.footer-disc {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 32px;
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--body);
}

/* ─── MOBILE ─── */
@media (max-width: 700px) {
    body { font-size: 16px; }
    .masthead { padding: 36px 18px 28px; }
    .nav-inner { justify-content: flex-start; }
    .nav a { padding: 12px 12px; font-size: 0.7rem; letter-spacing: 0.12em; }
    .article-body { padding: 48px 22px; }
    .destination-grid { padding: 48px 22px; gap: 40px 24px; }
    .verdict { padding: 36px 24px; }
    .hero-photo { padding: 32px 14px 20px; }
    .gallery-section { padding: 64px 16px; }
    .destination-subnav-inner { padding: 14px 20px; }
    .dsn-links a { padding: 6px 12px; font-size: 0.66rem; }
    .info-block { padding: 24px 22px; }
    .listing { grid-template-columns: 1fr; gap: 10px; }
    .listing-price { text-align: left; }
    .article-body .dek + p::first-letter,
    .article-body .verdict + p::first-letter {
        font-size: 3.4em;
    }
    .home-hero { padding: 80px 22px 56px; }
}
