/* ============================================================
   AI TRIP DNA™ — Global Silent Walks
   Base CSS · v1.0.0
   Compatible : Astro + Cloudflare Pages
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --gsw-green:        #1D9E75;
  --gsw-green-dark:   #0F6E56;
  --gsw-green-deep:   #085041;
  --gsw-green-light:  #E1F5EE;
  --gsw-green-mid:    #9FE1CB;
  --gsw-amber:        #EF9F27;
  --gsw-amber-light:  #FAEEDA;
  --gsw-coral:        #D85A30;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Outfit', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --radius-full:  9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);

  --transition: 0.2s ease;

  /* Spacing */
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px;
  --space-4: 16px; --space-5: 20px;  --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px;

  /* Light mode defaults */
  --bg:         #FFFFFF;
  --bg-2:       #F7F8F6;
  --bg-3:       #EDEEED;
  --text:       #18201C;
  --text-2:     #4A5550;
  --text-3:     #8A9590;
  --border:     #D6DDD9;
  --border-2:   #C2CDCA;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #111714;
    --bg-2:       #192019;
    --bg-3:       #222E27;
    --text:       #E8EEE9;
    --text-2:     #A0B0A4;
    --text-3:     #607368;
    --border:     #2A3A2E;
    --border-2:   #3A4E40;
  }
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body { min-height: 100vh; }

img, video, svg { display: block; max-width: 100%; }

a { color: var(--gsw-green); }
a:hover { color: var(--gsw-green-dark); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--gsw-green);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 0 var(--space-6);
}
.container--narrow { max-width: 740px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 10px 22px; border-radius: var(--radius-full);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gsw-green); color: #fff;
}
.btn--primary:hover { background: var(--gsw-green-dark); color: #fff; }

.btn--outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover { border-color: var(--gsw-green); color: var(--gsw-green); }

.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.gsw-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.gsw-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: 14px var(--space-6);
  max-width: 1100px; margin: 0 auto;
}

.gsw-nav__logo {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  letter-spacing: 0.5px; color: var(--text); text-decoration: none;
}
.gsw-nav__logo span { color: var(--gsw-green); }

.gsw-nav__links {
  display: flex; gap: var(--space-6); list-style: none;
}
.gsw-nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color var(--transition);
}
.gsw-nav__links a:hover,
.gsw-nav__links a.active { color: var(--text); }
.gsw-nav__links a[aria-current="page"] {
  color: var(--gsw-green); font-weight: 600;
}

.gsw-nav__cta {
  background: var(--gsw-green); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-full);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition);
}
.gsw-nav__cta:hover { background: var(--gsw-green-dark); }

.gsw-nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: var(--space-1); border-radius: var(--radius-sm);
}
.gsw-nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .gsw-nav__burger { display: flex; }
  .gsw-nav__links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: var(--space-4) var(--space-6); gap: var(--space-4);
  }
  .gsw-nav__links.open { display: flex; }
  .gsw-nav__actions { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(96px, 14vh, 160px) var(--space-6) clamp(72px, 12vh, 120px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,4,28,.78), rgba(40,12,90,.55)),
    url('/banners/trip-dna.webp') center/cover no-repeat;
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(80% 60% at 30% 30%, rgba(140,90,255,.35), transparent 60%);
  mix-blend-mode: screen; pointer-events:none;
}
.hero__title { color: #fff !important; text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.hero__title em { color: #b794ff !important; }
.hero__sub { color: rgba(255,255,255,.92) !important; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero__note { color: rgba(255,255,255,.75) !important; }
.hero__badge {
  background: rgba(255,255,255,.14) !important; color: #fff !important;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.hero__stats { border-top-color: rgba(255,255,255,.18) !important; }
.hero__stat-val { color: #fff !important; }
.hero__stat-label { color: rgba(255,255,255,.78) !important; }

.hero__inner { max-width: 620px; margin: 0 auto; }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--gsw-green-light); color: var(--gsw-green-deep);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-serif); font-size: clamp(38px, 8vw, 58px);
  font-weight: 700; line-height: 1.06;
  margin-bottom: var(--space-5); color: var(--text);
}
.hero__title em { font-style: italic; color: var(--gsw-green); }

.hero__sub {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-3);
}
.hero__note { font-size: 12px; color: var(--text-3); }

.hero__stats {
  display: flex; justify-content: center; gap: var(--space-8);
  margin-top: var(--space-10); padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-val {
  display: block; font-family: var(--font-serif); font-size: 28px;
  font-weight: 700; color: var(--text);
}
.hero__stat-label { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
  text-align: center; max-width: 580px;
  margin: 0 auto var(--space-10);
}
.section-kicker {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gsw-green);
  margin-bottom: var(--space-3);
}
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(26px, 5vw, 36px);
  font-weight: 700; margin-bottom: var(--space-4); color: var(--text);
}
.section-header p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ── PROFILES SECTION ───────────────────────────────────────── */
.profiles-section { padding: var(--space-16) var(--space-6); }

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
}

.profile-pill {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4); border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.profile-pill:hover {
  border-color: var(--gsw-green); box-shadow: var(--shadow-sm);
}
.profile-pill__icon { font-size: 24px; flex-shrink: 0; }
.profile-pill__name {
  display: block; font-size: 13px; font-weight: 600; color: var(--text);
}
.profile-pill__desc {
  display: block; font-size: 11px; color: var(--text-3); margin-top: 2px;
}

.profiles-cta { text-align: center; margin-top: var(--space-10); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section {
  padding: var(--space-16) var(--space-6);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.how-step {
  display: flex; flex-direction: column;
  gap: var(--space-3); padding: var(--space-6);
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.how-step__num {
  font-family: var(--font-serif); font-size: 40px; font-weight: 900;
  color: var(--border-2); line-height: 1;
}
.how-step h3 { font-size: 15px; font-weight: 600; color: var(--text); }
.how-step p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-section { padding: var(--space-16) var(--space-6); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.feature-card {
  padding: var(--space-6); border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md); border-color: var(--gsw-green-mid);
}
.feature-card__icon { font-size: 28px; margin-bottom: var(--space-4); }
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: var(--space-2); color: var(--text); }
.feature-card p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: var(--space-16) var(--space-6);
  background: var(--gsw-green-light);
  border-top: 1px solid var(--gsw-green-mid);
  text-align: center;
}
.cta-section__inner { max-width: 500px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 700;
  margin-bottom: var(--space-3); color: var(--gsw-green-deep);
}
.cta-section p { font-size: 14px; color: var(--gsw-green-dark); margin-bottom: var(--space-6); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.gsw-footer {
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.gsw-footer .container { display: flex; flex-direction: column; gap: var(--space-2); }
.gsw-footer p { font-size: 12px; color: var(--text-3); }
.gsw-footer a { color: var(--text-3); }
.gsw-footer a:hover { color: var(--text); }
.gsw-footer__affiliate { font-size: 11px; color: var(--text-3); }

/* ── AD SLOTS ───────────────────────────────────────────────── */
.ad-slot {
  padding: var(--space-3); margin: var(--space-5) 0;
  border: 1px dashed var(--border); border-radius: var(--radius-md);
  background: var(--bg-2); text-align: center;
  min-height: 100px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-2);
}
.ad-slot__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-3);
}
.ad-center { text-align: center; }

/* ── QUIZ PAGE ──────────────────────────────────────────────── */
.quiz-page { min-height: 80vh; display: flex; align-items: center; }

.quiz-container {
  width: 100%; max-width: 680px; margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}

.quiz-progress {
  display: flex; gap: var(--space-2); margin-bottom: var(--space-6);
}
.quiz-progress__bar {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--border); transition: background 0.4s ease;
}
.quiz-progress__bar.done { background: var(--gsw-green); }

.quiz-step-counter {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: var(--space-3);
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.3s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-step__title {
  font-family: var(--font-serif); font-size: clamp(24px, 5vw, 32px);
  font-weight: 700; line-height: 1.2; color: var(--text);
  margin-bottom: var(--space-2);
}
.quiz-step__sub {
  font-size: 14px; color: var(--text-2); margin-bottom: var(--space-6);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-3); border: none; padding: 0;
}

.quiz-option {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4) var(--space-4); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); background: var(--bg);
  cursor: pointer; transition: all var(--transition);
  position: relative;
}
.quiz-option:hover {
  border-color: var(--gsw-green);
  background: var(--gsw-green-light);
  box-shadow: var(--shadow-sm);
}
.quiz-option:has(.quiz-option__input:checked) {
  border-color: var(--gsw-green);
  border-width: 2px;
  background: var(--gsw-green-light);
}

.quiz-option__input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.quiz-option__content { flex: 1; }
.quiz-option__name {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 3px;
}
.quiz-option__desc {
  display: block; font-size: 12px; color: var(--text-2); line-height: 1.5;
}
.quiz-option__check {
  position: absolute; top: 12px; right: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gsw-green); color: #fff;
  font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.quiz-option:has(.quiz-option__input:checked) .quiz-option__check {
  display: flex;
}

.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.quiz-nav__back {
  background: none; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); padding: 9px 18px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: all var(--transition);
}
.quiz-nav__back:hover:not(:disabled) {
  border-color: var(--text); color: var(--text);
}
.quiz-nav__back:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-nav__next {
  background: var(--gsw-green); color: #fff;
  border: none; border-radius: var(--radius-full);
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; gap: var(--space-2);
}
.quiz-nav__next:hover:not(:disabled) { background: var(--gsw-green-dark); }
.quiz-nav__next:disabled {
  background: var(--border); color: var(--text-3); cursor: not-allowed;
}
.quiz-nav__next--submit { background: var(--gsw-green-deep); }
.quiz-nav__next--submit:hover:not(:disabled) { background: #042E25; }

/* Generating screen */
.quiz-generating { display: none; text-align: center; padding: var(--space-12) 0; }
.quiz-generating.active { display: block; animation: fadeInUp 0.4s ease; }

.quiz-generating__spinner {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gsw-green);
  margin: 0 auto var(--space-6);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.quiz-generating__title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 700;
  color: var(--text); margin-bottom: var(--space-3);
}
.quiz-generating__sub { font-size: 14px; color: var(--text-2); margin-bottom: var(--space-6); }
.quiz-generating__steps {
  display: flex; flex-direction: column; gap: var(--space-3);
  max-width: 300px; margin: 0 auto;
}
.quiz-generating__steps li {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  text-align: left; display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  background: var(--bg-2); border: 1px solid var(--border);
}
.quiz-generating__steps li.active { color: var(--gsw-green); }

/* ── RESULT PAGE ────────────────────────────────────────────── */
.result-hero {
  display: flex; gap: var(--space-6); align-items: flex-start;
  padding: var(--space-8) var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.result-hero__badge {
  font-size: 48px; width: 80px; height: 80px;
  border-radius: 50%; background: var(--gsw-green-light);
  border: 2px solid var(--gsw-green-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.result-hero__type {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gsw-green);
  margin-bottom: var(--space-2);
}
.result-hero__title {
  font-family: var(--font-serif); font-size: clamp(28px, 6vw, 40px);
  font-weight: 700; line-height: 1.1; color: var(--text);
  margin-bottom: var(--space-3);
}
.result-hero__desc {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  margin-bottom: var(--space-4);
}
.result-hero__tags {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.result-hero__tags li {
  font-size: 11px; padding: 3px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-2);
}

.result-layout {
  display: grid; grid-template-columns: 1fr 240px;
  gap: 0; max-width: 1100px; margin: 0 auto;
}

.result-main { border-right: 1px solid var(--border); }

.result-section {
  padding: var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--border);
}
.result-section__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: var(--space-5);
}

/* Score bar */
.result-score-bar {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.result-score-bar__inner {
  display: flex; align-items: center; gap: var(--space-4);
  max-width: 100%;
}
.result-score-bar__label { font-size: 12px; color: var(--text-3); white-space: nowrap; }
.result-score-bar__track {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--border); overflow: hidden;
}
.result-score-bar__fill {
  height: 100%; border-radius: 3px;
  background: var(--gsw-green);
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.result-score-bar__val {
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; color: var(--gsw-green); white-space: nowrap;
}

/* Destination cards */
.dest-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
}
.dest-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.dest-card:hover { box-shadow: var(--shadow-md); border-color: var(--gsw-green-mid); }
.dest-card__img {
  height: 96px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dest-card__emoji { font-size: 38px; }
.dest-card__match {
  position: absolute; top: 8px; right: 8px;
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: var(--radius-full);
}
.dest-card__match--high { background: var(--gsw-green); color: #fff; }
.dest-card__match--mid  { background: var(--gsw-amber-light); color: #6B3A00; }
.dest-card__body { padding: var(--space-3) var(--space-4); }
.dest-card__name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.dest-card__country {
  font-size: 11px; color: var(--text-3); margin-bottom: var(--space-3);
  display: flex; align-items: center; gap: 4px;
}
.dest-card__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-3); }
.dest-card__tags li {
  font-size: 10px; padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--gsw-green-light); color: var(--gsw-green-deep);
}
.dest-card__footer { display: flex; align-items: center; justify-content: space-between; }
.dest-card__price { font-size: 12px; color: var(--text-2); }
.dest-card__price strong { color: var(--gsw-green-dark); }
.dest-card__link {
  font-size: 12px; font-weight: 600; color: var(--gsw-green);
  text-decoration: none;
}

/* Itinerary */
.itinerary {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg);
}
.itinerary__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--gsw-green-light);
  border-bottom: 1px solid var(--gsw-green-mid);
}
.itinerary__header-title {
  font-size: 13px; font-weight: 600; color: var(--gsw-green-deep);
}
.itinerary__header-days {
  font-family: var(--font-mono); font-size: 11px; color: var(--gsw-green);
}
.itinerary__days li {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--border);
}
.itinerary__days li:last-child { border-bottom: none; }
.itinerary__day-num {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--gsw-green); min-width: 32px; line-height: 1.2;
}
.itinerary__day-content h3 {
  font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.itinerary__day-content p {
  font-size: 12px; color: var(--text-2); line-height: 1.55;
}
.itinerary__more {
  padding: var(--space-4); background: var(--bg-2);
  border-top: 1px solid var(--border); text-align: center;
}
.itinerary__more p { font-size: 13px; color: var(--text-2); }

/* Hotels */
.hotels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
}
.hotel-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-4); background: var(--bg);
  transition: box-shadow var(--transition);
}
.hotel-card:hover { box-shadow: var(--shadow-md); }
.hotel-card__header { display: flex; justify-content: space-between; margin-bottom: var(--space-2); }
.hotel-card__name { font-size: 14px; font-weight: 600; color: var(--text); }
.hotel-card__stars { color: var(--gsw-amber); font-size: 12px; }
.hotel-card__amenities {
  font-size: 11px; color: var(--text-3); line-height: 1.8;
  margin-bottom: var(--space-3);
}
.hotel-card__amenities li::before { content: "✓ "; color: var(--gsw-green); }
.hotel-card__location {
  font-size: 11px; color: var(--text-3); margin-bottom: var(--space-4);
  display: flex; align-items: center; gap: 4px;
}
.hotel-card__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.hotel-card__price-from {
  display: block; font-size: 10px; color: var(--text-3);
}
.hotel-card__price strong { font-size: 16px; font-weight: 700; color: var(--gsw-green); }
.hotel-card__price-night { font-size: 10px; color: var(--text-3); }
.hotel-card__book {
  background: var(--gsw-green); color: #fff;
  border: none; border-radius: var(--radius-full);
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background var(--transition);
}
.hotel-card__book:hover { background: var(--gsw-green-dark); color: #fff; }
.hotel-card__affiliate-note { font-size: 10px; color: var(--text-3); margin-top: var(--space-2); }

/* Budget grid */
.budget-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-3);
}
.budget-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-4);
  text-align: center;
}
.budget-item__icon { font-size: 20px; margin-bottom: var(--space-2); }
.budget-item__label { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.budget-item__val {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--text);
}

/* Share section */
.share-section { background: var(--bg-2); }
.share-card {
  display: flex; gap: var(--space-5); align-items: flex-start;
  padding: var(--space-4); border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
}
.share-card__icon { font-size: 28px; flex-shrink: 0; }
.share-card__content { flex: 1; }
.share-card__content p {
  font-size: 14px; color: var(--text-2); margin-bottom: var(--space-4);
}
.share-btns {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.share-btn {
  border: 1px solid var(--border); border-radius: var(--radius-full);
  background: var(--bg); color: var(--text-2);
  font-size: 12px; font-weight: 500; padding: 7px 14px;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: all var(--transition);
}
.share-btn:hover { border-color: var(--gsw-green); color: var(--gsw-green); }

/* Email capture */
.email-capture {
  margin: var(--space-6) var(--space-6);
  padding: var(--space-6); border-radius: var(--radius-xl);
  border: 2px solid var(--gsw-green); background: var(--gsw-green-light);
}
.email-capture__title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--gsw-green-deep); margin-bottom: var(--space-3);
}
.email-capture__sub {
  font-size: 13px; color: var(--gsw-green-dark); margin-bottom: var(--space-5);
  line-height: 1.65;
}
.email-capture__row { display: flex; gap: var(--space-3); }
.email-capture__row input {
  flex: 1; border: 1.5px solid var(--gsw-green-mid);
  border-radius: var(--radius-full); padding: 10px 16px;
  font-size: 14px; background: #fff; color: var(--text);
  outline: none; transition: border-color var(--transition);
}
.email-capture__row input:focus { border-color: var(--gsw-green); }
.email-error {
  font-size: 12px; color: var(--gsw-coral); margin-top: var(--space-2);
}
.email-capture__privacy {
  font-size: 11px; color: var(--gsw-green-dark); margin-top: var(--space-3);
}

/* Result sidebar */
.result-sidebar {
  padding: var(--space-5) var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-4);
}

.sidebar-widget {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg);
}
.sidebar-widget--light { background: var(--bg-2); padding: var(--space-4); }
.sidebar-widget__header {
  padding: var(--space-3) var(--space-4);
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text);
}
.sidebar-widget__body { padding: var(--space-4); }
.sidebar-widget__route { font-size: 13px; color: var(--text-2); margin-bottom: var(--space-2); }
.sidebar-widget__price {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: var(--gsw-green); margin-bottom: var(--space-4);
}
.sidebar-widget__note {
  font-size: 10px; color: var(--text-3); text-align: center;
  margin-top: var(--space-2);
}

/* Related articles */
.related-section {
  padding: var(--space-10) var(--space-6);
  border-top: 1px solid var(--border);
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.related-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); background: var(--bg);
  text-decoration: none; display: block;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.related-card:hover { box-shadow: var(--shadow-md); border-color: var(--gsw-green-mid); }
.related-card__kicker {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gsw-green);
  margin-bottom: var(--space-2);
}
.related-card__title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: var(--space-2); line-height: 1.3;
}
.related-card__desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* Skeletons */
.skeleton-card {
  height: 180px; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .result-layout { grid-template-columns: 1fr; }
  .result-main { border-right: none; border-bottom: 1px solid var(--border); }
  .result-sidebar { flex-direction: row; flex-wrap: wrap; }
  .result-sidebar > * { flex: 1 1 200px; }
  .result-hero { flex-direction: column; }
  .result-hero__badge { width: 60px; height: 60px; font-size: 32px; }
}

@media (max-width: 600px) {
  .hero__stats { gap: var(--space-5); }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-container { padding: var(--space-5) var(--space-4); }
  .email-capture__row { flex-direction: column; }
  .email-capture__row input { border-radius: var(--radius-md); }
  .email-capture__row .btn { border-radius: var(--radius-md); }
  .result-section { padding: var(--space-5) var(--space-4); }
  .result-hero { padding: var(--space-5) var(--space-4); }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  .gsw-nav, .ad-slot, .share-btns, .email-capture { display: none; }
}
