/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  --teal:            #087F8C;
  --teal-dark:       #065f69;
  --charcoal:        #172A2E;
  --limestone:       #E7DCC8;
  --limestone-light: #F1EBD9;
  --ivory:           #FAF7F0;
  --terracotta:      #A6533C;
  --brass:           #BC955C;
  --serif:           Georgia, 'Times New Roman', serif;
  --sans:            Inter, 'Segoe UI', Arial, system-ui, sans-serif;
  --max-w:           1200px;
  --r:               12px;
  --r-sm:            10px;
  --r-lg:            14px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--limestone); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
.serif { font-family: var(--serif); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
.eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brass);
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--r);
  font-size: .875rem; font-weight: 700; transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline-light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.2); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--teal); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Chip filters ────────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .375rem .875rem; border-radius: var(--r-sm);
  font-size: .8125rem; font-weight: 600; border: 1.5px solid var(--limestone);
  background: #fff; color: var(--charcoal); cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: rgba(8,127,140,.5); }
.chip.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── Header ──────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(250,247,240,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--limestone);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.wordmark { font-family: var(--serif); font-size: 1.375rem; font-weight: 600; color: var(--charcoal); }
.wordmark span { color: var(--teal); }
.wordmark:hover .wordmark-base { color: var(--teal); }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { font-size: .875rem; font-weight: 600; color: var(--charcoal); transition: color .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--teal); }
.header-right { display: flex; align-items: center; gap: .75rem; }
.lang-btn {
  display: flex; align-items: center; gap: .25rem;
  font-size: .7rem; font-weight: 700; color: rgba(23,42,46,.6);
  border: 1.5px solid var(--limestone); border-radius: 6px;
  padding: .35rem .65rem; transition: color .2s;
}
.lang-btn:hover { color: var(--charcoal); }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* Mobile overlay */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(23,42,46,.4); backdrop-filter: blur(4px); }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--ivory); box-shadow: -4px 0 32px rgba(0,0,0,.15);
  display: flex; flex-direction: column; padding: 5rem 1.5rem 2rem;
  transform: translateX(100%); transition: transform .3s;
}
.mobile-nav-overlay.open .mobile-nav-panel { transform: none; }
.mobile-nav-panel a { display: block; padding: 1rem 0; font-size: 1rem; font-weight: 600; color: var(--charcoal); border-bottom: 1px solid var(--limestone); transition: color .2s; }
.mobile-nav-panel a:hover { color: var(--teal); }
.mobile-nav-lang { margin-top: .5rem; color: var(--teal) !important; font-weight: 700; }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-overlay { display: block; }
  .lang-btn { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: none;
}
@media (min-width: 768px) { .hero-video { display: block; } }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none !important; } }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,42,46,.85) 0%, rgba(23,42,46,.3) 50%, transparent 100%); }
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 11rem;
}
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(231,220,200,.8); margin-bottom: 1.25rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 600; color: #fff; line-height: 1.1; max-width: 36rem; }
.hero h1 em { font-style: normal; color: var(--limestone); }
.hero-sub { margin-top: 1.25rem; font-size: 1.0625rem; color: rgba(250,247,240,.8); max-width: 34rem; line-height: 1.7; }
.hero-actions { margin-top: 2rem; }

/* ── Search panel ────────────────────────────────────────────────────────────── */
.search-panel-wrap { position: relative; z-index: 20; margin-top: -4rem; padding: 0 2rem 1.5rem; }
@media (max-width: 640px) { .search-panel-wrap { padding: 0 1.25rem 1.5rem; } }
.search-panel {
  background: var(--ivory); border-radius: 1.25rem;
  border: 1.5px solid var(--limestone); padding: 2rem;
  box-shadow: 0 8px 40px rgba(23,42,46,.12);
}
.search-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(23,42,46,.4); margin-bottom: 1rem; }
.search-row { display: flex; gap: .5rem; margin-top: 1.25rem; }
.search-input {
  flex: 1; border: 1.5px solid var(--limestone); border-radius: var(--r);
  padding: .75rem 1rem; font-size: .875rem; font-family: var(--sans);
  color: var(--charcoal); background: #fff;
}
.search-input::placeholder { color: rgba(23,42,46,.35); }
.search-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,127,140,.15); }
.search-btn { padding: .75rem 1.5rem; background: var(--charcoal); color: #fff; border-radius: var(--r); font-size: .875rem; font-weight: 700; transition: background .2s; }
.search-btn:hover { background: var(--teal); }

/* Inline results */
.search-results { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--limestone); }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.search-result-card { background: #fff; border-radius: var(--r); border: 1.5px solid var(--limestone); padding: .75rem; transition: border-color .2s; text-align: left; }
.search-result-card:hover { border-color: var(--teal); }
.search-result-card img { width: 100%; height: 7rem; object-fit: cover; border-radius: 8px; margin-bottom: .75rem; background: var(--limestone); }
.search-result-card .cat-label { font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.search-result-card .result-name { font-size: .875rem; font-weight: 700; color: var(--charcoal); margin-top: .125rem; }
.search-result-card .result-loc { font-size: .75rem; color: rgba(23,42,46,.45); margin-top: .125rem; }
.search-no-results { text-align: center; padding: 1.5rem; font-size: .875rem; color: rgba(23,42,46,.4); }

/* ── Section base ────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--charcoal); }
.section-header p { margin-top: .5rem; color: rgba(23,42,46,.55); max-width: 30rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.more-link { display: flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 700; color: var(--teal); }
.more-link:hover { text-decoration: underline; }

/* ── Category grid ───────────────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  background: #fff; border: 1.5px solid var(--limestone); border-radius: 1.25rem;
  padding: 1.5rem; text-align: left; transition: all .2s;
}
.cat-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(8,127,140,.1); }
.cat-icon { color: var(--teal); margin-bottom: 1rem; transition: transform .2s; }
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .25rem; font-family: var(--sans); }
.cat-card p { font-size: .75rem; color: rgba(23,42,46,.5); line-height: 1.6; }

/* ── Listing cards ───────────────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }
.listing-card { background: #fff; border: 1.5px solid var(--limestone); border-radius: 1.25rem; overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; }
.listing-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.08); }
.listing-card-img { position: relative; }
.listing-card-img img { width: 100%; height: 12rem; object-fit: cover; background: var(--limestone); display: block; }
.sponsored-badge { position: absolute; top: .75rem; right: .75rem; background: var(--brass); color: #fff; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .625rem; border-radius: 6px; }
.sample-badge { position: absolute; bottom: .5rem; left: .5rem; background: rgba(23,42,46,.5); color: rgba(250,247,240,.7); font-size: .5625rem; padding: .125rem .5rem; border-radius: 4px; font-style: italic; }
.listing-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.listing-cat { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); }
.listing-card-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-top: .25rem; font-family: var(--sans); transition: color .2s; }
.listing-card:hover .listing-card-body h3 { color: var(--teal); }
.listing-card-body p { font-size: .875rem; color: rgba(23,42,46,.6); margin-top: .25rem; line-height: 1.6; flex: 1; }
.listing-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.listing-loc { display: flex; align-items: center; gap: .25rem; font-size: .75rem; color: rgba(23,42,46,.4); }
.view-link { font-size: .75rem; font-weight: 700; color: var(--teal); }
.view-link:hover { text-decoration: underline; }

/* ── Backgrounds ─────────────────────────────────────────────────────────────── */
.bg-ivory { background: var(--ivory); }
.bg-limestone-light { background: var(--limestone-light); }
.bg-charcoal { background: var(--charcoal); }

/* ── Editorial split ─────────────────────────────────────────────────────────── */
.editorial-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .editorial-split { grid-template-columns: 1fr; gap: 2.5rem; } }
.editorial-img { border-radius: 1.25rem; overflow: hidden; aspect-ratio: 4/3; background: var(--limestone); }
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-eyebrow { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--brass); margin-bottom: .75rem; }
.editorial-text h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); color: var(--charcoal); line-height: 1.15; }
.editorial-text p { margin-top: 1.25rem; font-size: 1.0625rem; color: rgba(23,42,46,.7); line-height: 1.75; }
.editorial-text .btn { margin-top: 2rem; }

/* ── Guides grid ─────────────────────────────────────────────────────────────── */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .guides-grid { grid-template-columns: 1fr; } }
.guide-card { border: 1.5px solid rgba(255,255,255,.1); border-radius: 1.25rem; overflow: hidden; transition: all .2s; text-align: left; background: rgba(255,255,255,.05); display: block; }
.guide-card:hover { border-color: rgba(8,127,140,.6); background: rgba(255,255,255,.1); }
.guide-card img { width: 100%; height: 10rem; object-fit: cover; background: rgba(23,42,46,.5); display: block; }
.guide-card-body { padding: 1.25rem; }
.guide-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.guide-cat { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); }
.guide-time { font-size: .6875rem; color: rgba(250,247,240,.3); }
.guide-card h3 { font-family: var(--serif); font-size: 1.125rem; color: #fff; line-height: 1.35; transition: color .2s; }
.guide-card:hover h3 { color: var(--limestone); }

/* ── Regional route ──────────────────────────────────────────────────────────── */
.route-wrap { position: relative; }
.route-line { display: none; }
.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .route-grid { grid-template-columns: repeat(4, 1fr); row-gap: 2.5rem; } }
.route-node { display: flex; flex-direction: column; align-items: center; text-align: center; }
.route-dot { position: relative; z-index: 2; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--teal); border: 4px solid var(--ivory); box-shadow: 0 2px 8px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.route-dot.secondary { width: 2rem; height: 2rem; background: #fff; border: 2px solid var(--limestone); }
.route-dot.secondary::after { content: ''; display: block; width: .5rem; height: .5rem; border-radius: 50%; background: var(--limestone); }
.route-node:hover .route-dot.secondary { border-color: var(--teal); }
.route-node:hover .route-dot.secondary::after { background: var(--teal); }
.route-node p.name { font-size: .75rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: .06em; }
.route-node p.tag { font-size: .6875rem; color: rgba(23,42,46,.5); margin-top: .125rem; }
.route-node p.dist { font-size: .625rem; color: var(--brass); margin-top: .125rem; }
.route-node:hover p.name { color: var(--teal); }

/* ── Advertiser panel ────────────────────────────────────────────────────────── */
.advert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .advert-grid { grid-template-columns: 1fr; } }
.advert-text .eyebrow { color: var(--brass); margin-bottom: .75rem; }
.advert-text h2 { font-family: var(--serif); font-size: clamp(1.75rem,3vw,2.5rem); color: #fff; line-height: 1.2; }
.advert-text p { margin-top: 1rem; color: rgba(250,247,240,.6); line-height: 1.75; }
.advert-benefits { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.advert-benefits li { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; color: rgba(250,247,240,.7); line-height: 1.6; }
.advert-benefits li::before { content: '◆'; color: var(--teal); font-size: .5rem; margin-top: .35rem; flex-shrink: 0; }

/* ── Newsletter ──────────────────────────────────────────────────────────────── */
.nl-wrap { max-width: 36rem; margin: 0 auto; text-align: center; }
.nl-wrap h2 { font-family: var(--serif); font-size: clamp(1.75rem,3vw,2.25rem); color: var(--charcoal); }
.nl-wrap .nl-sub { margin-top: .75rem; color: rgba(23,42,46,.6); }
.nl-wrap .nl-proto { margin-top: .5rem; font-size: .75rem; color: rgba(23,42,46,.35); font-style: italic; }
.nl-form { margin-top: 2rem; text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.nl-success { margin-top: 2rem; background: #fff; border: 1.5px solid rgba(8,127,140,.3); border-radius: 1.25rem; padding: 2.5rem; text-align: center; display: none; }
.nl-success.show { display: block; }
.nl-success h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.nl-success p { font-size: .875rem; color: rgba(23,42,46,.5); margin-top: .25rem; }
.nl-check-icon { margin: 0 auto 1rem; width: 2.25rem; height: 2.25rem; color: var(--teal); }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-wrap { background: #fff; border: 1.5px solid var(--limestone); border-radius: 1.25rem; padding: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .375rem; }
.field label { font-size: .75rem; font-weight: 700; color: rgba(23,42,46,.55); }
.field .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--limestone); border-radius: var(--r);
  padding: .75rem 1rem; font-size: .875rem; font-family: var(--sans);
  color: var(--charcoal); background: #fff; transition: border-color .2s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(23,42,46,.3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,127,140,.12); }
.field input.error, .field select.error, .field textarea.error { border-color: var(--terracotta); }
.field .err-msg { font-size: .75rem; color: var(--terracotta); display: none; }
.field .err-msg.show { display: block; }
.field-checkbox { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.field-checkbox input { width: 1rem; height: 1rem; margin-top: .125rem; flex-shrink: 0; accent-color: var(--teal); }
.field-checkbox span { font-size: .8125rem; color: rgba(23,42,46,.6); line-height: 1.6; }
.form-proto { font-size: .75rem; color: rgba(23,42,46,.3); font-style: italic; margin-bottom: 1.5rem; }
.form-success { display: none; text-align: center; padding: 3rem; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--serif); font-size: 1.375rem; color: var(--charcoal); }
.form-success p { font-size: .875rem; color: rgba(23,42,46,.5); margin-top: .5rem; }
.form-success .check { margin: 0 auto 1rem; width: 2.75rem; height: 2.75rem; color: var(--teal); }

/* ── Package cards ───────────────────────────────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 4rem; }
@media (max-width: 1024px) { .packages-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .packages-grid { grid-template-columns: 1fr; } }
.pkg-card { border: 1.5px solid var(--limestone); border-radius: 1.25rem; padding: 1.5rem; display: flex; flex-direction: column; background: #fff; }
.pkg-card.featured { background: var(--charcoal); border-color: var(--charcoal); }
.pkg-name { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: .5rem; }
.pkg-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); margin-bottom: .75rem; }
.pkg-card.featured .pkg-price, .pkg-card.featured .pkg-feat li { color: rgba(250,247,240,.75); }
.pkg-feat { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pkg-feat li { display: flex; align-items: flex-start; gap: .5rem; font-size: .75rem; line-height: 1.5; color: rgba(23,42,46,.6); }
.pkg-feat li::before { content: '✓'; color: var(--teal); flex-shrink: 0; }
.pkg-btn { margin-top: 1.25rem; width: 100%; padding: .625rem; border-radius: 10px; font-size: .875rem; font-weight: 700; transition: all .2s; text-align: center; }
.pkg-btn-teal { border: 1.5px solid var(--teal); color: var(--teal); background: transparent; }
.pkg-btn-teal:hover { background: var(--teal); color: #fff; }
.pkg-btn-solid { background: var(--teal); color: #fff; border: none; }
.pkg-btn-solid:hover { background: var(--teal-dark); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(250,247,240,.8); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { font-size: 1.5rem; color: #fff; }
.footer-brand p { margin-top: .75rem; font-size: .875rem; line-height: 1.7; color: rgba(250,247,240,.5); }
.footer-brand .tagline { margin-top: .75rem; font-size: .8125rem; font-family: var(--serif); font-style: italic; color: rgba(250,247,240,.3); }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link { width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid rgba(250,247,240,.2); display: flex; align-items: center; justify-content: center; color: rgba(250,247,240,.4); transition: all .2s; }
.social-link:hover { color: var(--teal); border-color: var(--teal); }
.footer-col h4 { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(250,247,240,.35); margin-bottom: 1rem; font-family: var(--sans); }
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { font-size: .875rem; color: rgba(250,247,240,.55); transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { margin-top: 3.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(250,247,240,.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: rgba(250,247,240,.25); }
.footer-acq { font-size: .75rem; color: rgba(250,247,240,.2); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer-acq:hover { color: rgba(250,247,240,.45); }

/* ── Page header band ────────────────────────────────────────────────────────── */
.page-header { background: var(--charcoal); padding: 6rem 0 4rem; }
.page-header .breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: rgba(250,247,240,.3); margin-bottom: 1.25rem; }
.page-header .breadcrumb a { transition: color .2s; }
.page-header .breadcrumb a:hover { color: rgba(250,247,240,.6); }
.page-header h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); color: #fff; line-height: 1.15; max-width: 44rem; }
.page-header p { margin-top: 1rem; color: rgba(250,247,240,.5); max-width: 34rem; line-height: 1.7; }

/* ── Article ─────────────────────────────────────────────────────────────────── */
.article-hero { max-width: var(--max-w); margin: 2rem auto 0; padding: 0 2rem; }
.article-hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 1.25rem; background: var(--limestone); }
.article-body { max-width: 44rem; margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-meta { display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: rgba(23,42,46,.4); margin-bottom: 1.5rem; }
.article-meta .dot { color: rgba(23,42,46,.2); }
.article-body h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem; }
.article-lede { font-size: 1.125rem; color: rgba(23,42,46,.6); line-height: 1.75; border-left: 2px solid var(--teal); padding-left: 1.25rem; margin-bottom: 2.5rem; }
.article-content p { font-size: 1rem; color: rgba(23,42,46,.8); line-height: 1.85; margin-bottom: 1.25rem; }
.article-content h2 { font-size: 1.45rem; color: var(--charcoal); margin: 2.25rem 0 .75rem; }
.article-proto { background: var(--limestone); border-radius: 10px; padding: 1.25rem; margin-top: 2.5rem; font-size: .8125rem; color: rgba(23,42,46,.5); font-style: italic; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 700; color: var(--teal); margin-top: 2.5rem; }
.back-link:hover { text-decoration: underline; }

/* ── Directory page ──────────────────────────────────────────────────────────── */
.dir-search-bar { display: flex; gap: .5rem; max-width: 32rem; margin-top: 2rem; }
.dir-search-bar input { flex: 1; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--r); padding: .75rem 1rem; font-size: .875rem; font-family: var(--sans); color: #fff; }
.dir-search-bar input::placeholder { color: rgba(255,255,255,.3); }
.dir-search-bar input:focus { outline: none; border-color: var(--teal); }
.results-count { font-size: .875rem; color: rgba(23,42,46,.4); margin-bottom: 1.5rem; }
.no-results { text-align: center; padding: 5rem 0; }
.no-results p { font-size: 1.125rem; color: rgba(23,42,46,.4); margin-bottom: 1rem; }

/* ── Partnership page ────────────────────────────────────────────────────────── */
.partnership-body { max-width: 44rem; }
.partnership-body p { font-size: 1rem; color: rgba(23,42,46,.7); line-height: 1.85; margin-bottom: 1.25rem; }

/* ── Back to top ─────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--charcoal); color: #fff; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: background .2s;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--teal); }

/* ── Launch-ready directory and narrative pages ─────────────────────────────── */
.listing-card-visual {
  min-height: 12rem; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), var(--teal-dark));
}
.listing-card-visual::before {
  content: ''; position: absolute; width: 12rem; height: 12rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  top: -4rem; right: -3rem;
}
.listing-card-visual::after {
  content: ''; position: absolute; width: 7rem; height: 7rem;
  border: 1px solid rgba(255,255,255,.14); border-radius: 50%;
  top: 1rem; right: 1rem;
}
.listing-card-visual span { font-family: var(--serif); font-size: 3.25rem; line-height: 1; position: relative; z-index: 1; }
.listing-card-visual small { margin-top: .4rem; max-width: 12rem; font-size: .66rem; font-weight: 700; line-height: 1.4; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); position: relative; z-index: 1; }
.visual-stay { background: linear-gradient(135deg, #3c5a5d, #768b84); }
.visual-experiences { background: linear-gradient(135deg, #8f4d38, #bc955c); }
.visual-crafts { background: linear-gradient(135deg, #6a4936, #a36b42); }
.visual-events { background: linear-gradient(135deg, #4d4058, #8d668d); }
.visual-daytrips { background: linear-gradient(135deg, #315a4d, #63916d); }
.category-listing-card .listing-card-footer { gap: 1rem; align-items: flex-end; }
.category-listing-card .listing-loc { line-height: 1.4; }
.search-result-card { position: relative; min-height: 9rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.search-result-number { position: absolute; top: .25rem; right: .75rem; font-family: var(--serif); font-size: 3.5rem; color: rgba(8,127,140,.1); line-height: 1; }

.category-header-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.category-count { min-width: 10rem; border: 1px solid rgba(255,255,255,.18); border-radius: 1rem; padding: 1.25rem; color: #fff; }
.category-count strong { display: block; font-family: var(--serif); font-size: 2.75rem; line-height: 1; }
.category-count span { display: block; margin-top: .4rem; font-size: .68rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.48); }

.narrative-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(16rem, .75fr); gap: 4rem; align-items: start; }
.narrative-main > * + * { margin-top: 1.25rem; }
.narrative-main h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: var(--charcoal); }
.narrative-main h3 { margin-top: 1.75rem; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.narrative-main p, .narrative-main li { color: rgba(23,42,46,.72); line-height: 1.85; }
.narrative-main ul { display: grid; gap: .75rem; }
.narrative-main li { position: relative; padding-left: 1.25rem; }
.narrative-main li::before { content: '◆'; position: absolute; left: 0; top: .45rem; color: var(--teal); font-size: .45rem; }
.narrative-lede { font-size: 1.14rem; color: rgba(23,42,46,.68); border-left: 2px solid var(--teal); padding-left: 1.25rem; }
.narrative-aside { display: grid; gap: 1rem; position: sticky; top: 6rem; }
.aside-card { border: 1.5px solid var(--limestone); border-radius: 1rem; padding: 1.35rem; background: #fff; }
.aside-card h2, .aside-card h3 { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.aside-card p { margin-top: .65rem; font-size: .82rem; line-height: 1.7; color: rgba(23,42,46,.6); }
.aside-card .btn { margin-top: 1rem; width: 100%; justify-content: center; white-space: normal; text-align: center; }

.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.topic-card { border: 1.5px solid var(--limestone); border-radius: 1rem; padding: 1.25rem; background: #fff; }
.topic-card .topic-number { font-family: var(--serif); font-size: 1.8rem; color: var(--teal); line-height: 1; }
.topic-card h3 { margin-top: .8rem; font-family: var(--sans); font-size: .95rem; font-weight: 700; }
.topic-card p { margin-top: .45rem; font-size: .82rem; line-height: 1.65; color: rgba(23,42,46,.58); }

.destination-list { display: grid; gap: 1rem; margin-top: 2rem; }
.destination-card { display: grid; grid-template-columns: 4rem 1fr; gap: 1.25rem; align-items: start; border: 1.5px solid var(--limestone); border-radius: 1rem; padding: 1.25rem; background: #fff; }
.destination-card .destination-number { width: 4rem; height: 4rem; display: grid; place-items: center; border-radius: 50%; background: var(--limestone-light); color: var(--teal); font-family: var(--serif); font-size: 1.35rem; }
.destination-card h3 { margin: .1rem 0 0; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.destination-card p { margin-top: .35rem; font-size: .86rem; line-height: 1.7; color: rgba(23,42,46,.63); }

.listing-opportunities .section-header-row { align-items: flex-end; }
.listing-opportunities .section-header-row h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--charcoal); }
.listing-opportunities .section-header-row p:not(.eyebrow) { max-width: 43rem; margin-top: .7rem; color: rgba(23,42,46,.65); line-height: 1.75; }
.listing-includes { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0 2rem; }
.listing-includes span { border: 1px solid var(--limestone); border-radius: 999px; padding: .48rem .72rem; background: #fff; color: rgba(23,42,46,.65); font-size: .72rem; }
.listing-slot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.listing-slot { min-height: 12rem; display: flex; flex-direction: column; border: 1.5px dashed rgba(8,127,140,.32); border-radius: 1rem; padding: 1.15rem; background: rgba(255,255,255,.7); transition: transform .2s, border-color .2s, background .2s; }
.listing-slot:hover { transform: translateY(-2px); border-color: var(--teal); background: #fff; }
.listing-slot-number { font-family: var(--serif); font-size: 1.7rem; line-height: 1; color: var(--teal); }
.listing-slot-copy { display: flex; flex-direction: column; gap: .45rem; margin-top: 1rem; }
.listing-slot-copy strong { color: var(--charcoal); font-size: .9rem; line-height: 1.4; }
.listing-slot-copy small { color: rgba(23,42,46,.55); font-size: .72rem; line-height: 1.55; }
.listing-slot-action { margin-top: auto; padding-top: 1rem; color: var(--teal); font-size: .73rem; font-weight: 700; }
.listing-opportunity-note { margin-top: 1.25rem; color: rgba(23,42,46,.55); font-size: .75rem; line-height: 1.65; }

.status-note, .source-note, .email-help { border-radius: .75rem; padding: 1rem 1.1rem; font-size: .79rem; line-height: 1.65; }
.status-note { background: var(--limestone-light); color: rgba(23,42,46,.68); }
.source-note { background: rgba(8,127,140,.08); color: rgba(23,42,46,.7); }
.source-note a, .inline-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.email-help { display: none; margin-top: 1rem; background: rgba(8,127,140,.08); color: var(--charcoal); }
.email-help.show { display: block; }

.legal-content { max-width: 48rem; }
.legal-content h2 { margin-top: 2.5rem; font-size: 1.35rem; }
.legal-content p, .legal-content li { margin-top: .8rem; color: rgba(23,42,46,.7); line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; }
.legal-content .updated { font-size: .8rem; color: rgba(23,42,46,.45); }
.contact-card { max-width: 38rem; padding: 2rem; border: 1.5px solid var(--limestone); border-radius: 1.25rem; background: #fff; }
.contact-card h2 { font-size: 1.5rem; }
.contact-card p { margin-top: .75rem; color: rgba(23,42,46,.65); line-height: 1.75; }
.contact-email { display: inline-block; margin-top: 1.25rem; color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.guide-visual { height: 10rem; display: flex; align-items: flex-end; padding: 1rem; background: linear-gradient(135deg, var(--teal-dark), var(--charcoal)); color: rgba(255,255,255,.72); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.guide-visual.food { background: linear-gradient(135deg, #7b4938, var(--brass)); }
.guide-visual.route { background: linear-gradient(135deg, #315a4d, #63916d); }
.guide-visual.city { background: linear-gradient(135deg, #40545d, #798b8f); }

@media (max-width: 820px) {
  .category-header-inner, .narrative-grid { grid-template-columns: 1fr; gap: 2rem; }
  .category-count { width: fit-content; }
  .narrative-aside { position: static; }
  .topic-grid { grid-template-columns: 1fr; }
  .listing-slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .category-header-inner { gap: 1.5rem; }
  .destination-card { grid-template-columns: 3rem 1fr; }
  .destination-card .destination-number { width: 3rem; height: 3rem; }
  .listing-card-footer { align-items: flex-start; flex-direction: column; }
  .listing-slot-grid { grid-template-columns: 1fr; }
  .listing-opportunities .section-header-row { align-items: flex-start; }
}

/* ── Interactive Stari Most discovery ───────────────────────────────────────── */
.interactive-page { background: var(--ivory); }
.interactive-hero {
  position: relative; min-height: 46rem; overflow: hidden;
  display: flex; align-items: flex-end; padding: 9rem 0 5rem;
  background: var(--charcoal);
}
.interactive-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.interactive-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,42,46,.93) 0%, rgba(23,42,46,.74) 43%, rgba(23,42,46,.28) 75%, rgba(23,42,46,.12) 100%), linear-gradient(0deg, rgba(23,42,46,.68), transparent 55%); }
.interactive-hero-inner { position: relative; z-index: 1; width: 100%; }
.interactive-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: 3rem; color: rgba(255,255,255,.55); font-size: .75rem; }
.interactive-breadcrumb a { transition: color .2s; }
.interactive-breadcrumb a:hover { color: #fff; }
.interactive-hero h1 { max-width: 48rem; color: #fff; font-size: clamp(2.65rem, 6.5vw, 5.25rem); line-height: 1.02; }
.interactive-hero h1 em { display: block; color: var(--limestone); font-style: italic; font-weight: 500; }
.interactive-hero-copy { max-width: 40rem; margin-top: 1.5rem; color: rgba(255,255,255,.78); font-size: 1.08rem; line-height: 1.75; }
.interactive-hero-actions { margin-top: 2rem; }
.interactive-hero-stats { display: flex; flex-wrap: wrap; margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.16); }
.interactive-hero-stats li { display: flex; align-items: baseline; gap: .55rem; padding-right: 2.25rem; margin-right: 2.25rem; border-right: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); }
.interactive-hero-stats li:last-child { padding-right: 0; margin-right: 0; border-right: none; }
.interactive-hero-stats strong { color: #fff; font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.interactive-hero-stats span { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.research-strip { border-top: 3px solid var(--brass); border-bottom: 1px solid var(--limestone); background: var(--limestone-light); }
.research-strip p { padding: 1.3rem 0; color: rgba(23,42,46,.7); font-size: .8rem; line-height: 1.7; }
.interactive-section-heading { max-width: 46rem; }
.interactive-section-heading h2, .fact-library-heading h2, .source-panel-grid h2 { margin-top: .45rem; font-size: clamp(2rem, 4vw, 3.1rem); }
.interactive-section-heading > p:last-child, .fact-library-heading > p:last-child { margin-top: .85rem; color: rgba(23,42,46,.62); line-height: 1.75; }

.bridge-explorer-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(17rem, .7fr); gap: 1.25rem; align-items: stretch; margin-top: 2.5rem; }
.bridge-map { min-width: 0; padding: 1.5rem; border-radius: 1.5rem; background: var(--charcoal); box-shadow: 0 1.25rem 3rem rgba(23,42,46,.12); }
.bridge-image-stage { position: relative; overflow: hidden; min-height: 27rem; height: 100%; border-radius: 1rem; }
.bridge-image-stage > img { width: 100%; height: 100%; object-fit: cover; }
.bridge-map-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,42,46,.35), transparent 45%); pointer-events: none; }
.bridge-map figcaption { padding: .75rem .35rem .15rem; color: rgba(255,255,255,.46); font-size: .68rem; line-height: 1.55; }
.fact-hotspot {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  border: 3px solid rgba(255,255,255,.78); border-radius: 50%;
  background: var(--teal); color: #fff; box-shadow: 0 .35rem 1rem rgba(23,42,46,.45);
  font-size: .75rem; font-weight: 800; line-height: 1; transition: transform .18s, background .18s, box-shadow .18s;
}
.fact-hotspot:hover, .fact-hotspot:focus-visible { transform: translate(-50%, -50%) scale(1.12); background: var(--teal-dark); }
.fact-hotspot.active { background: var(--terracotta); box-shadow: 0 0 0 6px rgba(255,255,255,.24), 0 .35rem 1rem rgba(23,42,46,.45); }
.fact-reader { min-height: 100%; padding: 2.2rem; border-radius: 1.5rem; background: var(--charcoal); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.fact-reader-kicker { color: var(--brass); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact-reader h3 { margin-top: 1rem; font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.fact-reader > p:not(.fact-reader-kicker) { margin-top: 1.1rem; color: rgba(255,255,255,.66); font-size: .92rem; line-height: 1.78; }
.fact-reader-link { display: inline-flex; gap: .45rem; align-items: center; margin-top: 1.6rem; color: #70d0d8; font-size: .78rem; font-weight: 700; }
.fact-reader-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.fact-library { margin-top: 5rem; }
.fact-library-heading { max-width: 44rem; }
.fact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.5rem; align-items: start; }
.fact-detail { border: 1.5px solid var(--limestone); border-radius: 1rem; background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; scroll-margin-top: 6rem; }
.fact-detail[open] { border-color: rgba(8,127,140,.42); box-shadow: 0 .7rem 1.5rem rgba(23,42,46,.06); }
.fact-detail summary { position: relative; display: grid; grid-template-columns: 2.7rem 1fr; gap: .9rem; align-items: center; padding: 1.35rem 3rem 1.35rem 1.35rem; cursor: pointer; list-style: none; }
.fact-detail summary::-webkit-details-marker { display: none; }
.fact-detail summary::after { content: '+'; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--teal); font-size: 1.35rem; font-weight: 400; }
.fact-detail[open] summary::after { content: '−'; }
.fact-detail-number { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; border-radius: 50%; background: var(--limestone-light); color: var(--teal); font-family: var(--serif); font-size: 1rem; }
.fact-detail summary small { display: block; color: rgba(23,42,46,.42); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fact-detail-title { display: block; margin-top: .2rem; color: var(--charcoal); font-family: var(--sans); font-size: .9rem; line-height: 1.35; }
.fact-detail-body { padding: 0 1.3rem 1.35rem 4.75rem; }
.fact-detail-body > p { color: rgba(23,42,46,.7); font-size: .84rem; line-height: 1.75; }
.fact-detail-body .fact-source { margin-top: .9rem; color: rgba(23,42,46,.48); font-size: .7rem; }
.fact-source a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.fact-safety { margin-top: 1rem; padding: .8rem; border-left: 3px solid var(--terracotta); background: rgba(166,83,60,.07); }

.quiz-section { padding: 6rem 0; background: var(--limestone-light); }
.quiz-shell { max-width: 58rem; margin: 0 auto; padding: clamp(1.3rem, 4vw, 3rem); border: 1.5px solid var(--limestone); border-radius: 1.5rem; background: var(--ivory); box-shadow: 0 1rem 3rem rgba(23,42,46,.08); }
.quiz-intro { max-width: 40rem; }
.quiz-intro h2 { margin-top: .5rem; font-size: clamp(2rem, 4vw, 3rem); }
.quiz-intro > p:last-child { margin-top: .85rem; color: rgba(23,42,46,.58); }
#stari-most-quiz { margin-top: 2.5rem; }
.quiz-question { margin-top: 1rem; padding: 1.3rem; border: 1.5px solid var(--limestone); border-radius: 1rem; background: #fff; transition: border-color .2s, background .2s; }
.quiz-question legend { width: 100%; padding: 0 .25rem; color: var(--charcoal); font-weight: 700; line-height: 1.55; }
.quiz-question legend span { display: inline-grid; place-items: center; width: 1.8rem; height: 1.8rem; margin-right: .55rem; border-radius: 50%; background: var(--charcoal); color: #fff; font-family: var(--serif); font-size: .8rem; }
.quiz-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; margin-top: 1rem; }
.quiz-options label { display: flex; gap: .55rem; align-items: flex-start; padding: .8rem; border: 1px solid var(--limestone); border-radius: .7rem; color: rgba(23,42,46,.72); font-size: .8rem; line-height: 1.45; cursor: pointer; transition: border-color .18s, background .18s; }
.quiz-options label:hover { border-color: rgba(8,127,140,.6); background: rgba(8,127,140,.04); }
.quiz-options input { flex: 0 0 auto; margin-top: .15rem; accent-color: var(--teal); }
.quiz-question.correct { border-color: rgba(8,127,140,.6); background: rgba(8,127,140,.035); }
.quiz-question.incorrect { border-color: rgba(166,83,60,.55); background: rgba(166,83,60,.035); }
.quiz-question .answer-correct { border-color: var(--teal); background: rgba(8,127,140,.09); }
.quiz-question .answer-wrong { border-color: var(--terracotta); background: rgba(166,83,60,.08); }
.quiz-explanation { margin-top: .9rem; color: rgba(23,42,46,.65); font-size: .77rem; line-height: 1.65; }
.quiz-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.quiz-form-message { min-height: 1.4rem; margin-top: .8rem; color: var(--terracotta); font-size: .78rem; }
.quiz-result { margin-top: 2rem; padding: 2rem; border-radius: 1.2rem; background: var(--charcoal); color: #fff; text-align: center; }
.quiz-score-label { color: var(--brass); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quiz-score { display: flex; align-items: baseline; justify-content: center; margin-top: .45rem; }
.quiz-score strong { font-family: var(--serif); font-size: 4.5rem; line-height: 1; }
.quiz-score span { color: rgba(255,255,255,.5); font-size: 1.25rem; }
.quiz-result h3 { margin-top: .65rem; font-size: 1.7rem; }
.quiz-result > p:not(.quiz-score-label):not(.quiz-score):not(.quiz-share-status) { max-width: 34rem; margin: .65rem auto 0; color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.7; }
.quiz-share { margin-top: 1.2rem; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.3); border-radius: .7rem; color: #fff; font-size: .76rem; font-weight: 700; }
.quiz-share:hover { background: rgba(255,255,255,.1); }
.quiz-share-status { min-height: 1.2rem; margin-top: .55rem; color: #70d0d8; font-size: .7rem; }
.quiz-bonus { margin-top: 2.5rem; padding-top: 2.25rem; border-top: 1px solid rgba(231,220,200,.5); text-align: left; }
.quiz-bonus > .eyebrow { color: var(--brass); }
.quiz-bonus h3 { margin-top: .4rem; color: var(--charcoal); font-size: 1.25rem; }
.quiz-bonus-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.quiz-bonus-fact { padding: 1.25rem; border: 1.5px solid var(--limestone); border-radius: 1rem; background: #fff; }
.quiz-bonus-fact h4 { font-family: var(--serif); font-size: 1.02rem; color: var(--charcoal); font-weight: 600; }
.quiz-bonus-fact > p:first-of-type { margin-top: .55rem; color: rgba(23,42,46,.7); font-size: .82rem; line-height: 1.72; }
.quiz-bonus-fact .fact-source { margin-top: .8rem; }

.source-panel-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: 4rem; align-items: start; }
.source-panel-grid > div:first-child > p:not(.eyebrow):not(.source-reviewed) { margin-top: 1.1rem; color: rgba(23,42,46,.68); line-height: 1.8; }
.source-reviewed { margin-top: 1.5rem; color: rgba(23,42,46,.42); font-size: .75rem; }
.principal-sources { padding: 1.5rem; border: 1.5px solid var(--limestone); border-radius: 1rem; background: #fff; }
.principal-sources h3 { font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.principal-sources ul { display: grid; gap: .7rem; margin-top: 1rem; }
.principal-sources a { color: var(--teal); font-size: .78rem; text-decoration: underline; text-underline-offset: 3px; }
.interactive-next { padding: 5rem 0; background: var(--charcoal); }
.interactive-next-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: end; }
.interactive-next h2 { margin-top: .45rem; color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.interactive-next p:not(.eyebrow) { max-width: 41rem; margin-top: .8rem; color: rgba(255,255,255,.55); line-height: 1.7; }

.article-discovery-card { margin-top: 2rem; padding: 1.4rem; border: 1.5px solid rgba(8,127,140,.28); border-radius: 1rem; background: rgba(8,127,140,.06); }
.article-discovery-card .eyebrow { color: var(--teal); }
.article-discovery-card h2 { margin-top: .45rem; font-size: 1.25rem; }
.article-discovery-card p { margin-top: .55rem; color: rgba(23,42,46,.62); font-size: .84rem; line-height: 1.7; }
.article-discovery-card .btn { margin-top: 1rem; }
.article-discovery-card + .source-note { margin-top: 1rem; }
.interactive-guide-promo { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; margin-bottom: 1.25rem; padding: 1.6rem 1.8rem; border: 1.5px solid rgba(255,255,255,.14); border-radius: 1.25rem; background: radial-gradient(circle at 88% 18%, rgba(255,255,255,.1) 0 3%, transparent 3.4%), radial-gradient(circle at 72% 72%, rgba(255,255,255,.08) 0 4%, transparent 4.4%), linear-gradient(115deg, var(--terracotta), var(--charcoal) 72%); transition: border-color .2s, transform .2s; }
.interactive-guide-promo:hover { transform: translateY(-2px); border-color: rgba(112,208,216,.7); }
.interactive-guide-promo h3 { margin-top: .4rem; color: #fff; font-size: clamp(1.45rem, 3vw, 2.15rem); }
.interactive-guide-promo > div:first-child > p:last-child { margin-top: .55rem; color: rgba(255,255,255,.62); font-size: .84rem; }
.interactive-promo-stats { display: flex; align-items: center; gap: 1.5rem; color: rgba(255,255,255,.5); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.interactive-promo-stats span { display: grid; }
.interactive-promo-stats strong { color: #fff; font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.interactive-promo-stats b { color: #70d0d8; font-size: .74rem; white-space: nowrap; }

@media (max-width: 980px) {
  .bridge-explorer-grid { grid-template-columns: 1fr; }
  .bridge-image-stage { min-height: 24rem; }
  .fact-reader { min-height: 18rem; }
  .interactive-next-inner { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 760px) {
  .interactive-hero { min-height: 42rem; padding-bottom: 3.5rem; }
  .interactive-hero-shade { background: linear-gradient(0deg, rgba(23,42,46,.95) 0%, rgba(23,42,46,.68) 72%, rgba(23,42,46,.35)); }
  .interactive-breadcrumb { margin-bottom: 2rem; }
  .interactive-hero-stats li { padding-right: 1.4rem; margin-right: 1.4rem; }
  .bridge-image-stage { min-height: 20rem; }
  .fact-list, .source-panel-grid { grid-template-columns: 1fr; }
  .source-panel-grid { gap: 2rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-bonus-facts { grid-template-columns: 1fr; }
  .interactive-guide-promo { grid-template-columns: 1fr; }
  .interactive-promo-stats { justify-content: space-between; }
}
@media (max-width: 520px) {
  .interactive-hero h1 { font-size: 2.55rem; }
  .interactive-hero-actions .btn { width: 100%; justify-content: center; }
  .interactive-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; border-top: none; padding-top: 0; }
  .interactive-hero-stats li { display: block; padding-right: 0; margin-right: 0; border-right: none; }
  .interactive-hero-stats span { display: block; margin-top: .3rem; line-height: 1.35; }
  .bridge-map { padding: .75rem; }
  .bridge-image-stage { min-height: 16rem; }
  .bridge-map figcaption { padding-left: .5rem; padding-right: .5rem; }
  .fact-hotspot { width: 1.85rem; height: 1.85rem; border-width: 2px; font-size: .62rem; }
  .fact-reader { min-height: auto; padding: 1.5rem; }
  .fact-detail summary { grid-template-columns: 2.35rem 1fr; gap: .7rem; padding-left: .85rem; }
  .fact-detail-number { width: 2.35rem; height: 2.35rem; }
  .fact-detail-body { padding: 0 1rem 1.15rem 3.9rem; }
  .quiz-shell { border-radius: 1rem; }
  .quiz-question { padding: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fact-hotspot, .fact-detail, .quiz-question { transition: none; }
}
