/* ============================================
   VOYAGES BASKET — Premium Design System
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F5F3EF;
  --bg-dark: #0C1425;
  --bg-dark-2: #111C32;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-muted: #9A9A9A;
  --text-on-dark: rgba(255,255,255,.85);
  --text-on-dark-muted: rgba(255,255,255,.5);
  --accent: #E85D2C;
  --accent-light: #F4845F;
  --accent-dark: #C44A1E;
  --blue: #1D428A;
  --blue-light: #E8EDF5;
  --teal: #2A736E;
  --teal-light: #E0F0EE;
  --border: rgba(0,0,0,.06);
  --border-dark: rgba(255,255,255,.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --max-width: 1120px;
  --header-h: 64px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--accent); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); font-weight: 400; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }

/* --- Section Headers --- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.section-dark .section-label { color: var(--accent-light); }
.section-title { margin-bottom: 10px; }
.section-intro { color: var(--text-secondary); font-size: .95rem; max-width: 580px; margin-bottom: 40px; }
.section-dark .section-intro { color: var(--text-on-dark-muted); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo em { font-style: italic; color: var(--accent); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  color: var(--text-secondary);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: .2s;
  letter-spacing: .2px;
}
.nav a:hover { color: var(--text); background: rgba(0,0,0,.04); }
.nav a.active { color: var(--accent); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 4px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: .78rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-secondary); transition: color .2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; }

/* --- Hero --- */
.hero {
  padding: 72px 0 64px;
  background: linear-gradient(170deg, #FFF8F2 0%, var(--bg) 40%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,44,.06), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero h1 { margin-bottom: 0; }
.hero-desc {
  color: var(--text-secondary);
  font-size: .95rem;
  margin-top: 18px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.stat-card.featured {
  background: var(--bg-dark);
  color: var(--white);
  border: none;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-card.featured .stat-label { color: var(--accent-light); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}
.stat-sub { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }
.stat-card.featured .stat-sub { color: var(--text-on-dark-muted); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,93,44,.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* --- Cards: Destination --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

.dest-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card-header {
  padding: 22px 24px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dest-emoji { font-size: 2.2rem; }
.dest-meta { text-align: right; }
.dest-team {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.dest-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 2px;
}
.dest-body { padding: 0 24px 18px; }
.dest-body p { color: var(--text-secondary); font-size: .84rem; line-height: 1.6; margin-bottom: 12px; }
.dest-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tag-budget { background: var(--teal-light); color: var(--teal); }
.tag-premium { background: rgba(232,93,44,.1); color: var(--accent); }
.tag-experience { background: var(--blue-light); color: var(--blue); }
.tag-family { background: rgba(0,0,0,.05); color: var(--text-secondary); }
.dest-footer {
  padding: 14px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dest-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent);
  font-size: .95rem;
}
.dest-price small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  font-size: .72rem;
}
.dest-arrow { color: var(--accent); font-weight: 600; font-size: .85rem; transition: transform .2s; }
.dest-card:hover .dest-arrow { transform: translateX(3px); }

/* --- Cards: Road Trip --- */
.trip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.trip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(232,93,44,.2);
  line-height: 1;
  margin-bottom: 4px;
}
.trip-card h3 { margin-bottom: 4px; }
.trip-route { color: var(--accent); font-size: .8rem; font-weight: 600; margin-bottom: 10px; }
.trip-card p { color: var(--text-secondary); font-size: .84rem; line-height: 1.6; margin-bottom: 14px; }
.trip-info { display: flex; gap: 18px; flex-wrap: wrap; }
.trip-info span { font-size: .75rem; color: var(--text-muted); font-weight: 600; }

/* --- Tips Grid --- */
.tip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.tip-icon { font-size: 1.5rem; margin-bottom: 10px; }
.tip-card h3 { font-size: 1rem; margin-bottom: 6px; }
.tip-card p { color: var(--text-secondary); font-size: .84rem; line-height: 1.6; }
.tip-card strong { color: var(--text); }

/* --- Budget Section --- */
.budget-wrap {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.budget-wrap .section-label { color: var(--accent-light); }
.budget-wrap .section-title { color: var(--white); }
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.budget-card {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-dark);
}
.budget-card .stat-label { color: var(--accent-light); }
.budget-card .stat-value { color: var(--white); font-size: 1.5rem; }
.budget-card .stat-sub { color: var(--text-on-dark-muted); }
.budget-total {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.budget-total-label { color: var(--text-on-dark-muted); font-weight: 600; font-size: .9rem; }
.budget-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
}

/* --- Blog Preview --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { color: var(--text-secondary); font-size: .84rem; line-height: 1.6; }
.blog-card-arrow { color: var(--accent); font-size: .82rem; font-weight: 600; margin-top: 12px; display: inline-block; transition: transform .2s; }
.blog-card:hover .blog-card-arrow { transform: translateX(4px); }

/* --- FAQ --- */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-btn::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-btn::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { color: var(--text-secondary); font-size: .86rem; padding-bottom: 18px; line-height: 1.7; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 56px 24px 40px;
  margin-top: 0;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: var(--text-on-dark-muted); font-size: .8rem; margin-top: 10px; max-width: 280px; line-height: 1.6; }
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: 2.5px;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.site-footer ul li { margin-bottom: 6px; }
.site-footer ul a {
  color: var(--text-on-dark-muted);
  font-size: .8rem;
  transition: color .2s;
}
.site-footer ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  text-align: center;
}

/* --- Sticky Bar --- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, rgba(12,20,37,.97), rgba(17,28,50,.97));
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--accent);
  padding: 14px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transition: transform .4s;
}
.sticky-bar.hidden { transform: translateY(100%); }
.sticky-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-text { flex: 1; min-width: 0; }
.sticky-text strong {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  color: var(--accent-light);
  display: block;
}
.sticky-text small { color: var(--text-on-dark-muted); font-size: .72rem; }
.sticky-form { display: flex; gap: 6px; flex-shrink: 0; }
.sticky-form select,
.sticky-form input[type="email"] {
  padding: 9px 12px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  outline: none;
}
.sticky-form select {
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23E85D2C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.sticky-form select option { background: var(--bg-dark); }
.sticky-form input[type="email"] { width: 200px; }
.sticky-form input::placeholder { color: rgba(255,255,255,.3); }
.sticky-form input:focus { border-color: var(--accent); }
.sticky-form button {
  padding: 9px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  transition: .2s;
  white-space: nowrap;
}
.sticky-form button:hover { background: var(--accent-dark); }
.sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 1.1rem;
  padding: 4px 8px;
  flex-shrink: 0;
}
.sticky-close:hover { color: var(--white); }
.sticky-success {
  display: none;
  color: var(--accent-light);
  font-weight: 600;
  font-size: .84rem;
  text-align: center;
  padding: 4px 0;
}
.sticky-success.show { display: block; }
.sticky-form.gone { display: none; }

/* --- Article Pages --- */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.article-wrap h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 8px; }
.article-meta {
  color: var(--text-muted);
  font-size: .8rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-wrap h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 36px 0 10px;
}
.article-wrap h3 {
  font-size: 1.05rem;
  color: var(--accent-dark);
  margin: 28px 0 8px;
}
.article-wrap p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 14px;
  line-height: 1.8;
}
.article-wrap ul, .article-wrap ol {
  margin: 0 0 16px 20px;
  color: var(--text-secondary);
  font-size: .88rem;
  list-style: disc;
}
.article-wrap ol { list-style: decimal; }
.article-wrap li { margin-bottom: 6px; line-height: 1.7; }
.article-wrap strong { color: var(--text); }

/* Highlight Box */
.highlight-box {
  background: #FFF8F2;
  border: 1px solid rgba(232,93,44,.12);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 22px 0;
}
.highlight-box strong { color: var(--accent); }
.highlight-box p { margin-bottom: 0; }

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.info-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.info-item .info-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.info-item .info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
}
.info-item .info-note { font-size: .7rem; color: var(--text-muted); margin-top: 2px; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .84rem;
}
.comparison-table th {
  background: var(--bg-dark);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td { background: var(--bg-alt); }
.comparison-table td:first-child { font-weight: 600; color: var(--text); }
.comparison-table td a { color: var(--accent); font-weight: 600; }
.comparison-table td a:hover { text-decoration: underline; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pros, .cons {
  padding: 20px;
  border-radius: var(--radius-sm);
}
.pros { background: var(--teal-light); }
.cons { background: #FDE8E8; }
.pros h4, .cons h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pros h4 { color: var(--teal); }
.cons h4 { color: #C0392B; }
.pros ul, .cons ul { margin: 0; list-style: none; }
.pros li::before { content: '✓ '; color: var(--teal); font-weight: 700; }
.cons li::before { content: '✗ '; color: #C0392B; font-weight: 700; }
.pros li, .cons li { font-size: .84rem; margin-bottom: 4px; color: var(--text-secondary); }

/* Rating */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--accent);
}
.rating small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  color: var(--text-muted);
}

/* CTA Box (internal linking) */
.cta-box {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 28px 0;
  text-align: center;
}
.cta-box p { color: var(--text-on-dark-muted); margin-bottom: 14px; font-size: .88rem; }
.cta-box h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }

/* Related Links */
.related-links {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}
.related-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.related-links ul { margin: 0; list-style: none; }
.related-links li { margin-bottom: 6px; }
.related-links a {
  color: var(--accent);
  font-weight: 600;
  font-size: .86rem;
  transition: color .2s;
}
.related-links a:hover { color: var(--accent-dark); text-decoration: underline; }

/* --- Email Capture Inline --- */
.email-capture {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.email-capture h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.email-capture p {
  color: var(--text-on-dark-muted);
  font-size: .88rem;
  margin-bottom: 20px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.email-capture-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}
.email-capture-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  outline: none;
  min-width: 0;
}
.email-capture-form input::placeholder { color: rgba(255,255,255,.35); }
.email-capture-form input:focus { border-color: var(--accent); }
.email-capture-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.email-capture-form button:hover { background: var(--accent-dark); }
.email-capture .capture-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: 10px;
}
.email-capture-success {
  display: none;
  color: var(--accent-light);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 0;
}
.email-capture-success.show { display: block; }
.email-capture-form.gone { display: none; }

/* Email Capture Light variant */
.email-capture.light {
  background: linear-gradient(135deg, #FFF8F2 0%, var(--bg-alt) 100%);
  border: 1px solid rgba(232,93,44,.12);
}
.email-capture.light h3 { color: var(--text); }
.email-capture.light p { color: var(--text-secondary); }
.email-capture.light input[type="email"] {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}
.email-capture.light input::placeholder { color: var(--text-muted); }
.email-capture.light .capture-note { color: var(--text-muted); }
.email-capture.light .email-capture-success { color: var(--accent); }

/* --- Calendar / Schedule --- */
.calendar-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.calendar-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .2s;
  text-decoration: none;
}
.calendar-nav a:hover,
.calendar-nav a.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.month-section { margin-bottom: 48px; }
.month-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: .84rem;
}
.schedule-table th {
  background: var(--bg-alt);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border);
}
.schedule-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.schedule-table tr:hover td { background: rgba(232,93,44,.03); }
.schedule-table td:first-child { font-weight: 600; color: var(--text); }
.schedule-table .highlight-row td { background: rgba(232,93,44,.06); }
.schedule-table .tag-sm {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.tag-key { background: rgba(232,93,44,.12); color: var(--accent); }
.tag-allstar { background: rgba(29,66,138,.1); color: var(--blue); }
.tag-playoffs { background: var(--teal-light); color: var(--teal); }
.tag-finals { background: rgba(212,175,55,.15); color: #B8860B; }
.tag-paris { background: rgba(0,35,149,.1); color: #002395; }

/* Key dates cards */
.key-dates { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin: 24px 0; }
.key-date-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
  text-align: center;
}
.key-date-card .kd-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}
.key-date-card .kd-event {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.key-date-card .kd-note { font-size: .72rem; color: var(--text-muted); }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px;
    z-index: 99;
  }
  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .section { padding: 56px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .budget-grid { grid-template-columns: 1fr; }
  .budget-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-inner { flex-wrap: wrap; gap: 8px; }
  .sticky-text { flex: 1 1 100%; }
  .sticky-form { flex-wrap: wrap; width: 100%; }
  .sticky-form select { flex: 1; min-width: 0; }
  .sticky-form input[type="email"] { flex: 1; width: auto; min-width: 0; }
  .sticky-close { position: absolute; top: 6px; right: 6px; }
  .pros-cons { grid-template-columns: 1fr; }
  .comparison-table { font-size: .76rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .sticky-form { flex-direction: column; }
  .sticky-form select,
  .sticky-form input[type="email"],
  .sticky-form button { width: 100%; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
