/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:     #0369a1;
  --brand-dk:  #075985;
  --brand-lt:  #e0f2fe;
  --green:     #16a34a;
  --amber:     #d97706;
  --red:       #dc2626;
  --teal:      #0d9488;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-800:  #1f2937;
  --white:     #ffffff;
  --text:      #111827;
  --radius:    10px;
  --shadow:    0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --max-w:     1140px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.25rem; }

/* === Layout === */
.nav-inner, .hero-inner, .footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.25rem; }
.section-alt { background: var(--gray-50); border-radius: var(--radius); }
.main { min-height: 60vh; }

/* === Nav === */
.nav { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-weight: 800; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; gap: 1.25rem; }
.nav-links a { color: var(--gray-600); font-size: .88rem; font-weight: 500; }
.nav-links a:hover { color: var(--brand); text-decoration: none; }

/* === Hero === */
.hero { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0d9488 100%); color: #fff; padding: 5rem 1.25rem; text-align: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: .3rem .9rem; font-size: .82rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: .05em; }
.hero-inner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: .75rem; }
.hero-sub { font-size: 1.1rem; opacity: .9; max-width: 640px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.hstat { font-size: .82rem; opacity: .75; }
.hstat span { font-weight: 800; font-size: 1.4rem; display: block; color: #fff; opacity: 1; }

.page-hero { background: var(--brand-lt); border-bottom: 1px solid #bae6fd; padding: 2.5rem 1.25rem; }
.page-hero .hero-inner h1 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.page-hero .hero-inner p { color: var(--gray-600); }

/* === Buttons === */
.btn { display: inline-block; padding: .65rem 1.4rem; border-radius: var(--radius); font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .15s; white-space: nowrap; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dk); text-decoration: none; }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-secondary:hover { background: rgba(255,255,255,.25); text-decoration: none; }
.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; text-decoration: none; }
.btn-sm { padding: .4rem .85rem; font-size: .82rem; }

/* === Badges === */
.badge-green { background: #dcfce7; color: var(--green); font-size: .78rem; padding: .15rem .5rem; border-radius: 20px; font-weight: 600; }
.badge-amber { background: #fef3c7; color: var(--amber); font-size: .78rem; padding: .15rem .5rem; border-radius: 20px; font-weight: 600; }

/* === Money bar === */
.money-bar { background: var(--gray-800); }
.money-bar-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.money-bar-item { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; color: #d1d5db; text-decoration: none; transition: background .15s; border-right: 1px solid #374151; }
.money-bar-item:last-child { border-right: none; }
.money-bar-item:hover { background: #374151; text-decoration: none; }
.money-bar-item strong { display: block; color: #fff; font-size: .9rem; }
.money-bar-item em { font-size: .78rem; color: #9ca3af; font-style: normal; }
.mbi-icon { font-size: 1.4rem; flex-shrink: 0; }

/* === Breadcrumb === */
.breadcrumb { font-size: .82rem; color: var(--gray-400); margin-bottom: .75rem; }
.breadcrumb a { color: var(--brand); }

/* === Section headings === */
.section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--text); }
.section h3 { font-size: 1.05rem; font-weight: 700; }
.section-intro { color: var(--gray-600); margin-bottom: 1.5rem; font-size: .95rem; }

/* === Destination grid === */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.dest-card { display: block; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all .2s; text-decoration: none; color: var(--text); }
.dest-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); text-decoration: none; transform: translateY(-2px); }
.dest-card-body { padding: 1.5rem; }
.dest-meta { display: flex; gap: .5rem; margin-bottom: .6rem; }
.dest-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .4rem; }
.dest-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: .75rem; }
.dest-facts { display: flex; gap: 1rem; font-size: .82rem; color: var(--gray-400); margin-bottom: .75rem; }
.dest-link { font-size: .88rem; font-weight: 700; color: var(--brand); }
.dest-island { font-size: .75rem; padding: .15rem .55rem; border-radius: 20px; font-weight: 700; }
.island-north-island { background: #fef3c7; color: #92400e; }
.island-south-island { background: #dbeafe; color: #1e40af; }
.dest-ages { font-size: .75rem; background: var(--gray-100); color: var(--gray-600); padding: .15rem .55rem; border-radius: 20px; }

/* === Itinerary grid === */
.itin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.itin-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.itin-header { display: flex; justify-content: space-between; align-items: center; }
.itin-days { background: var(--brand); color: #fff; font-size: .8rem; font-weight: 700; padding: .25rem .75rem; border-radius: 20px; }
.itin-budget { font-size: .85rem; color: var(--green); font-weight: 700; }
.itin-card h3 { font-size: 1.05rem; font-weight: 800; }
.itin-card h3 a { color: var(--text); }
.itin-subtitle { font-size: .85rem; font-weight: 600; color: var(--gray-600); }
.itin-tagline { font-size: .88rem; color: var(--gray-600); }
.itin-meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--gray-400); }
.itin-highlights { display: flex; flex-wrap: wrap; gap: .4rem; }
.itin-highlight { background: var(--brand-lt); color: var(--brand); font-size: .78rem; padding: .2rem .6rem; border-radius: 20px; }

/* === Campervan CTA section === */
.campervan-cta { background: linear-gradient(135deg, #0c4a6e, #0369a1); color: #fff; border-radius: var(--radius); padding: 0; }
.campervan-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 2rem; max-width: var(--max-w); margin: 0 auto; align-items: center; }
.campervan-cta h2 { color: #fff; margin-bottom: .75rem; }
.campervan-cta p { opacity: .9; margin-bottom: 1.25rem; }
.cta-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }
.campervan-brands { display: flex; flex-wrap: wrap; gap: .6rem; }
.van-brand-pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: .75rem 1rem; color: #fff; text-decoration: none; transition: background .15s; }
.van-brand-pill:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.van-brand-pill span { display: block; }
.van-from { font-size: .78rem; opacity: .7; }

/* === Activity cards === */
.act-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.act-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.act-header { display: flex; gap: .4rem; flex-wrap: wrap; }
.act-rain { font-size: .75rem; background: #e0f2fe; color: #0369a1; padding: .15rem .5rem; border-radius: 20px; }
.act-free { font-size: .75rem; background: #dcfce7; color: var(--green); padding: .15rem .5rem; border-radius: 20px; font-weight: 700; }
.act-top { font-size: .75rem; background: #fef3c7; color: var(--amber); padding: .15rem .5rem; border-radius: 20px; font-weight: 700; }
.act-dest { font-size: .75rem; background: var(--gray-100); color: var(--gray-600); padding: .15rem .5rem; border-radius: 20px; }
.act-dest-badge { font-size: .82rem; background: var(--gray-100); color: var(--gray-600); padding: .2rem .65rem; border-radius: 20px; }
.act-card h3 { font-size: 1.05rem; font-weight: 700; }
.act-card h3 a { color: var(--text); }
.act-card p { font-size: .88rem; color: var(--gray-600); flex: 1; }
.act-meta { display: flex; flex-wrap: wrap; gap: .6rem; font-size: .82rem; }
.act-price { font-weight: 700; color: var(--brand); }
.act-price.free { color: var(--green); }
.act-age { color: var(--gray-600); }
.act-duration { color: var(--gray-400); }
.act-footer { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; margin-top: auto; }

/* === Tools grid === */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.tool-card { display: block; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; text-align: center; text-decoration: none; color: var(--text); transition: all .15s; }
.tool-card:hover { border-color: var(--brand); background: var(--brand-lt); text-decoration: none; }
.tool-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.tool-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.tool-card p { font-size: .85rem; color: var(--gray-600); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); }
.faq-item summary { padding: 1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: .95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--brand); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.25rem 1rem; font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

/* === Affiliate strips === */
.affiliate-strip { background: #0c4a6e; }
.aff-strip-inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 0; }
.aff-strip-item { flex: 1; display: flex; align-items: center; gap: .5rem; padding: .75rem 1.25rem; color: #e0f2fe; font-size: .85rem; text-decoration: none; border-right: 1px solid #0369a1; transition: background .15s; }
.aff-strip-item:last-child { border-right: none; }
.aff-strip-item:hover { background: #0369a1; text-decoration: none; }
.aff-strip-item strong { color: #fff; }

/* === Quick facts block === */
.quick-facts-block { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.qf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; }
.qf-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; padding: .9rem 1rem; }
.qf-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); font-weight: 700; margin-bottom: .25rem; }
.qf-val { font-weight: 700; color: var(--text); font-size: 1rem; }

/* === Verdict block === */
.verdict-block { background: var(--gray-50); border-left: 4px solid var(--brand); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; }
.verdict-text { font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.25rem; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.verdict-item { padding: 1rem 1.25rem; border-radius: var(--radius); }
.verdict-good { background: #f0fdf4; border: 1px solid #bbf7d0; }
.verdict-bad { background: #fef2f2; border: 1px solid #fecaca; }
.verdict-good strong { color: var(--green); display: block; margin-bottom: .25rem; }
.verdict-bad strong { color: var(--red); display: block; margin-bottom: .25rem; }

/* === Activity table === */
.act-table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: var(--radius); }
.act-table, .compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.act-table th, .compare-table th { background: var(--gray-800); color: #fff; padding: .7rem 1rem; text-align: left; white-space: nowrap; font-weight: 600; }
.act-table td, .compare-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.act-table tbody tr:last-child td, .compare-table tbody tr:last-child td { border-bottom: none; }
.act-table tbody tr:hover, .compare-table tbody tr:hover { background: var(--gray-50); }
.must-do-row { background: #fffbeb !important; }
.must-do-row:hover { background: #fef3c7 !important; }
.price-cell { font-weight: 700; color: var(--brand); white-space: nowrap; }
.table-note { margin-top: .75rem; font-size: .8rem; color: var(--gray-400); }
.table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: var(--radius); }

/* === Free activities list === */
.free-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: .5rem; }
.free-list li { background: #f0fdf4; border: 1px solid #bbf7d0; padding: .65rem 1rem; border-radius: 8px; font-size: .9rem; color: #166534; }

/* === Rainy day grid === */
.rainy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .75rem; }
.rainy-card { display: flex; align-items: center; gap: .75rem; background: #e0f2fe; border: 1px solid #bae6fd; padding: .85rem 1rem; border-radius: 8px; font-size: .9rem; }
.rainy-icon { font-size: 1.2rem; }

/* === Day plan === */
.day-plan { display: flex; flex-direction: column; gap: 1.25rem; }
.day-card { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.day-header { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.day-num { background: var(--brand); color: #fff; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .88rem; flex-shrink: 0; }
.day-header h3 { font-size: 1rem; flex: 1; }
.day-cost { font-size: .85rem; color: var(--green); font-weight: 700; }
.day-card ul { padding: 1rem 1.25rem 1rem 2.5rem; }
.day-card li { padding: .3rem 0; font-size: .9rem; }
.itin-cta { background: var(--brand-lt); border: 1px solid #bae6fd; border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* === Stay cards === */
.stay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.stay-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.stay-header { display: flex; gap: .5rem; align-items: flex-start; flex-wrap: wrap; }
.stay-header h3 { font-size: .95rem; font-weight: 700; flex: 1; }
.stay-type { font-size: .75rem; background: var(--gray-100); color: var(--gray-600); padding: .15rem .5rem; border-radius: 20px; }
.stay-price { font-size: .85rem; font-weight: 700; color: var(--brand); }
.stay-features { list-style: none; padding: 0; }
.stay-features li { font-size: .85rem; color: var(--gray-600); padding: .2rem 0; }
.stay-features li::before { content: '✓ '; color: var(--green); }

/* === Budget table === */
.budget-table { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.budget-row { display: flex; justify-content: space-between; padding: .75rem 1.25rem; font-size: .9rem; }
.budget-row:nth-child(odd) { background: var(--gray-50); }
.budget-row:last-child { border-top: 2px solid var(--gray-200); }
.budget-total { font-weight: 700; font-size: 1rem; background: var(--brand-lt) !important; }
.budget-cta { margin-top: .75rem; }

/* === Nearby destinations === */
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }
.nearby-card { display: block; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; color: var(--text); transition: all .15s; }
.nearby-card:hover { border-color: var(--brand); background: var(--brand-lt); text-decoration: none; }
.nearby-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.nearby-card p { font-size: .85rem; color: var(--gray-600); margin-bottom: .5rem; }
.nearby-card span { font-size: .8rem; color: var(--gray-400); }
.nearby-all { border: 2px dashed var(--gray-200); text-align: center; display: flex; flex-direction: column; justify-content: center; }

/* === Full itinerary === */
.itin-summary-block { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; }
.isb-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: .9rem 1rem; }
.isb-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); font-weight: 700; margin-bottom: .25rem; }
.itin-hero-facts { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: .75rem; font-size: .88rem; color: #6b7280; }
.itin-subtitle-hero { font-size: 1.1rem; font-weight: 600; color: var(--gray-600); margin-top: .4rem; }

.booking-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.booking-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; }
.booking-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.booking-card p { font-size: .85rem; color: var(--gray-600); margin-bottom: .75rem; }

.day-plan-full { display: flex; flex-direction: column; gap: 1.5rem; }
.day-full-card { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.day-full-header { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.day-num-big { background: var(--brand); color: #fff; min-width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.day-full-info h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; }
.day-full-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--gray-400); }
.day-activities { padding: 1rem 1.25rem 0 2.5rem; }
.day-activities li { padding: .3rem 0; font-size: .9rem; }
.day-tips { background: #fffbeb; padding: .75rem 1.25rem; margin: .5rem 0; }
.day-tips strong { font-size: .85rem; }
.day-tips ul { padding-left: 1.5rem; font-size: .85rem; }
.day-stay { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.25rem; border-top: 1px solid var(--gray-100); font-size: .85rem; color: var(--gray-600); }

.mid-affiliate { background: #0c4a6e; padding: 2rem 1.25rem; }
.mid-aff-inner { max-width: var(--max-w); margin: 0 auto; }
.mid-aff-inner h3 { color: #fff; margin-bottom: 1rem; }
.mid-aff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1rem; }
.mid-aff-card { display: block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; transition: background .15s; }
.mid-aff-card:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.mid-aff-card strong { display: block; color: #fff; font-size: .95rem; margin-bottom: .35rem; }
.mid-aff-card span { font-size: .85rem; color: #bae6fd; }

.packing-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: .5rem; }
.packing-list li { background: var(--gray-50); border: 1px solid var(--gray-200); padding: .6rem 1rem; border-radius: 8px; font-size: .88rem; }

/* === Destination hero badges === */
.dest-hero-meta { display: flex; gap: .5rem; margin-bottom: .75rem; }
.dest-verdict-pill { background: rgba(3,105,161,.1); border: 1px solid #bae6fd; border-radius: var(--radius); padding: .6rem 1rem; margin-top: .75rem; font-size: .88rem; color: var(--brand); display: inline-block; }

/* === Activity hero === */
.act-hero-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.badge-rain { background: #e0f2fe; color: #0369a1; font-size: .82rem; padding: .2rem .65rem; border-radius: 20px; }
.badge-free { background: #dcfce7; color: var(--green); font-size: .82rem; padding: .2rem .65rem; border-radius: 20px; font-weight: 700; }
.badge-age { background: var(--gray-100); color: var(--gray-600); font-size: .82rem; padding: .2rem .65rem; border-radius: 20px; }
.badge-duration { background: var(--gray-100); color: var(--gray-600); font-size: .82rem; padding: .2rem .65rem; border-radius: 20px; }

.affiliate-banner { background: linear-gradient(90deg, #e0f2fe, #bae6fd); border: 1px solid #7dd3fc; border-radius: var(--radius); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto; }
.affiliate-banner span { font-size: .88rem; color: var(--gray-600); }

.activity-cta-bar { background: var(--brand); padding: 1rem 1.25rem; }
.acb-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.acb-inner strong { color: #fff; font-size: 1.05rem; display: block; }
.acb-inner span { color: #bae6fd; font-size: .85rem; }

.review-block { line-height: 1.8; }
.price-note-block { background: #fffbeb; border: 1px solid #fde68a; padding: .75rem 1rem; border-radius: 8px; margin-top: 1rem; font-size: .88rem; }
.features-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.feature-tag { background: var(--brand-lt); color: var(--brand); font-size: .82rem; padding: .25rem .75rem; border-radius: 20px; font-weight: 600; }
.tips-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.tips-list li { background: var(--gray-50); border: 1px solid var(--gray-200); padding: .75rem 1rem; border-radius: 8px; font-size: .9rem; }
.dest-link-card { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: var(--brand-lt); border: 1px solid #bae6fd; border-radius: var(--radius); padding: 1.5rem; flex-wrap: wrap; }

/* === Campervans === */
.van-type-badge { font-size: .75rem; padding: .15rem .55rem; border-radius: 20px; font-weight: 700; }
.type-budget { background: #dcfce7; color: var(--green); }
.type-mid-range { background: #dbeafe; color: #1e40af; }
.type-family { background: #fef3c7; color: var(--amber); }
.type-premium { background: #f3e8ff; color: #7c3aed; }

.why-camper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-card { border-radius: var(--radius); padding: 1.5rem; }
.why-yes { background: #f0fdf4; border: 1px solid #bbf7d0; }
.why-no { background: #fef2f2; border: 1px solid #fecaca; }
.why-yes h3 { color: var(--green); margin-bottom: .75rem; }
.why-no h3 { color: var(--red); margin-bottom: .75rem; }
.why-card ul li { font-size: .9rem; padding: .25rem 0; }

.van-reviews { display: flex; flex-direction: column; gap: 1.25rem; }
.van-review-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.van-review-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.van-review-header h3 { font-size: 1.05rem; }
.van-rating { font-size: .85rem; color: var(--amber); margin-left: .5rem; }
.van-price-big { font-size: 1.5rem; font-weight: 800; color: var(--brand); text-align: right; white-space: nowrap; }
.van-price-big span { font-size: .85rem; font-weight: 400; color: var(--gray-600); }
.van-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: .75rem 0; }
.pros-mini, .cons-mini { display: flex; flex-direction: column; gap: .25rem; }
.pros-mini span { font-size: .82rem; color: var(--green); }
.cons-mini span { font-size: .82rem; color: var(--red); }
.van-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.van-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; }
.van-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; }
.van-family { border-color: var(--brand); background: var(--brand-lt); }
.van-sleeps { font-size: .85rem; color: var(--gray-600); margin: .4rem 0; }
.van-price { font-weight: 700; color: var(--brand); margin-bottom: .75rem; }
.family-badge { display: block; margin-bottom: .5rem; }

/* === Hub grid === */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.hub-card { display: block; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: var(--text); transition: all .15s; }
.hub-card:hover { border-color: var(--brand); background: var(--brand-lt); transform: translateY(-2px); text-decoration: none; }
.hub-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.hub-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: .75rem; }
.hub-card-meta { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .8rem; color: var(--gray-400); margin-bottom: .6rem; }
.hub-link { font-size: .85rem; font-weight: 700; color: var(--brand); }

/* === Guide === */
.guide-meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--gray-400); margin-top: .5rem; }
.guide-body { line-height: 1.8; }
.guide-body p + p { margin-top: 1rem; }
.guide-list { display: flex; flex-direction: column; gap: .4rem; }
.guide-list li { font-size: .9rem; }
.guide-cta { margin-top: 1.25rem; }

/* === Spotlight === */
.spotlight { background: var(--gray-50); border-radius: var(--radius); }
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.25rem; }
.spotlight-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.spotlight-card h3 { margin-bottom: .5rem; }
.spotlight-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }

/* === Sticky affiliate bar === */
.sticky-affiliate { display: none; } /* Enable with JS if desired */

/* === Location tags === */
.location-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.location-tag { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 20px; padding: .25rem .75rem; font-size: .85rem; }

/* === Stats grid === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 1rem; }
.stat-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.stat-val { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: .82rem; color: var(--gray-600); }

/* === Pros / cons === */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pros-box, .cons-box { padding: 1.25rem; border-radius: var(--radius); }
.pros-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }
.pros-box h3 { color: var(--green); margin-bottom: .75rem; }
.cons-box h3 { color: var(--red); margin-bottom: .75rem; }
.pros-box ul li, .cons-box ul li { font-size: .9rem; padding: .2rem 0; }

/* === Footer === */
.footer { background: var(--gray-800); color: #d1d5db; margin-top: 3rem; padding: 3rem 1.25rem 1.5rem; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer strong { color: #fff; display: block; margin-bottom: .6rem; }
.footer p { font-size: .85rem; line-height: 1.6; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: .35rem; }
.footer a { color: #9ca3af; font-size: .85rem; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.25rem; font-size: .82rem; color: var(--gray-400); text-align: center; }

/* === Destination hero image === */
.dest-hero-image {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.dest-hero-overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  padding: 3rem 1.25rem 2rem;
}
.img-credit { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .75rem; }

/* === Destination card image === */
.dest-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* === Activity hero image === */
.activity-hero-img {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.activity-hero-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0;
}

/* === Photo gallery === */
.photo-gallery { display: flex; flex-direction: column; gap: 1rem; }
.gallery-main img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.gallery-caption { display: block; font-size: .8rem; color: var(--gray-400); margin-top: .35rem; }

/* === Video embeds === */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(480px,1fr)); gap: 1.5rem; }
.video-single { max-width: 720px; }
.video-embed-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 1rem 1.25rem; }
.video-info h3 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.video-info p { font-size: .85rem; color: var(--gray-600); }

/* === Responsive === */
@media (max-width: 900px) {
  .money-bar-inner { grid-template-columns: 1fr 1fr; }
  .campervan-cta-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .aff-strip-inner { flex-wrap: wrap; }
  .why-camper-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .money-bar-inner { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1rem; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .van-pros-cons { grid-template-columns: 1fr; }
}

/* === Facebook groups === */
.fb-groups-grid { display: flex; flex-direction: column; gap: .75rem; }
.fb-group-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: #f0f2ff; border: 1px solid #c7d2fe; border-radius: var(--radius); text-decoration: none; color: var(--text); transition: background .15s; }
.fb-group-card:hover { background: #e0e7ff; text-decoration: none; }
.fb-icon { font-size: 1.5rem; flex-shrink: 0; }
.fb-group-card > div { flex: 1; }
.fb-group-card strong { display: block; font-weight: 700; color: #3730a3; }
.fb-group-card span { font-size: .85rem; color: var(--gray-600); }
.fb-join { font-size: .85rem; font-weight: 700; color: #3730a3; white-space: nowrap; }

/* === Newsletter === */
.newsletter-strip { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%); padding: 2.5rem 1.25rem; }
.newsletter-strip-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.ns-text strong { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.ns-text span { font-size: .9rem; color: rgba(255,255,255,.85); }
.ns-form { display: flex; gap: .5rem; }
.ns-input { padding: .65rem 1rem; border-radius: var(--radius); border: none; font-size: .9rem; width: 260px; outline: none; }
.ns-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.ns-btn { white-space: nowrap; background: #f59e0b; color: #fff; border: none; }
.ns-btn:hover { background: #d97706; }

.newsletter-section { background: var(--brand-lt); }
.newsletter-block { max-width: 600px; margin: 0 auto; text-align: center; padding: 2rem; }
.nb-icon { font-size: 3rem; margin-bottom: 1rem; }
.newsletter-block h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.newsletter-block > p { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.7; }
.nb-perks { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .75rem; margin-bottom: 1.75rem; text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
.nb-perks li { font-size: .9rem; color: var(--gray-600); }
.nb-form { display: flex; gap: .5rem; max-width: 440px; margin: 0 auto 1rem; }
.nb-form input[type=email] { flex: 1; padding: .7rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; outline: none; }
.nb-form input[type=email]:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-lt); }
.nb-note { font-size: .78rem; color: var(--gray-400); }

.nl-inline-block { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem 2rem; margin: 2rem 0; }
.nl-inline-block h3 { margin-bottom: .25rem; }
.nl-inline-block p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }
.nl-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.nl-form input[type=email] { flex: 1; min-width: 200px; padding: .6rem .9rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .9rem; outline: none; }
.nl-form input[type=email]:focus { border-color: var(--brand); }
.nl-success { font-weight: 700; color: var(--green); font-size: 1rem; padding: .5rem 0; }

@media (max-width: 760px) {
  .newsletter-strip-inner { grid-template-columns: 1fr; }
  .ns-form { flex-direction: column; }
  .ns-input { width: 100%; }
  .nb-form { flex-direction: column; }
  .nb-perks { grid-template-columns: 1fr; }
}

/* === Overseas destinations === */
.overseas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.overseas-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--text); display: block; transition: box-shadow .15s, transform .15s; }
.overseas-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.overseas-card-img { height: 180px; background-size: cover; background-position: center; }
.overseas-card-body { padding: 1.25rem; }
.overseas-badge { display: inline-block; background: var(--amber); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.overseas-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.overseas-card p { font-size: .85rem; color: var(--gray-600); margin-bottom: .75rem; }
.overseas-facts { display: flex; gap: 1rem; font-size: .8rem; color: var(--gray-600); }
