/* ============================================================
   BLUE SKY JOURNEYS — River Cruise Explorer
   Design tokens + component styles
   Brand: Navy #05102D | Gold #CD8E33 | Off-white #F5F5F5
   Font: Bellefair 400
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  /* === TYPE SCALE === */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* === SPACING === */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* === BRAND COLORS === */
  --navy:         #05102D;
  --navy-light:   #0a1f57;
  --navy-mid:     #0d2660;
  --gold:         #CD8E33;
  --gold-light:   #e8b96a;
  --gold-dark:    #a06b1a;
  --offwhite:     #F5F5F5;
  --white:        #ffffff;

  /* === SEMANTIC COLORS === */
  --color-bg:           var(--offwhite);
  --color-surface:      var(--white);
  --color-surface-2:    #f0f0f0;
  --color-border:       #ddd;
  --color-text:         var(--navy);
  --color-text-muted:   #5a6072;
  --color-text-faint:   #9aa0b0;
  --color-text-inverse: var(--offwhite);
  --color-primary:      var(--navy);
  --color-gold:         var(--gold);
  --color-gold-hover:   var(--gold-dark);

  /* === RADIUS === */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(5,16,45,0.08);
  --shadow-md: 0 4px 16px rgba(5,16,45,0.12);
  --shadow-lg: 0 12px 40px rgba(5,16,45,0.16);

  /* === FONTS === */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  /* === LAYOUT === */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* === TRANSITION === */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   GLOBAL LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(205, 142, 51, 0.2);
  transition: box-shadow 300ms var(--ease);
  padding-block: 4px;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(5,16,45,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 60px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.8);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.nav__links a:hover, .nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-dark) !important;
  color: var(--offwhite) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: all 300ms var(--ease);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid rgba(205,142,51,0.15);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.8);
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile .mobile-cta {
  margin: var(--space-4) var(--space-6) 0;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6) !important;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(13,38,96,0.6) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(205,142,51,0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero__river-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image: 
    repeating-linear-gradient(
      -15deg,
      transparent,
      transparent 80px,
      rgba(205,142,51,0.4) 80px,
      rgba(205,142,51,0.4) 82px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--space-24);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--offwhite);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(245,245,245,0.7);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(245,245,245,0.4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--offwhite);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(205,142,51,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(245,245,245,0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy);
  color: var(--offwhite);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-5);
  min-height: 36px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.section-title--light {
  color: var(--offwhite);
}

.section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.8;
}

.section-desc--light {
  color: rgba(245,245,245,0.65);
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section--navy {
  background: var(--navy);
}

.section--navy-soft {
  background: #071436;
}

.section--offwhite {
  background: var(--offwhite);
}

.section--white {
  background: var(--white);
}

.section--gold-stripe {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2260 100%);
  position: relative;
}

/* ============================================================
   NAV TABS (section switcher)
   ============================================================ */

.tab-nav {
  display: flex;
  gap: var(--space-2);
  border-bottom: 1px solid rgba(205,142,51,0.2);
  margin-bottom: var(--space-10);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1px;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: all 200ms var(--ease);
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ============================================================
   QUIZ
   ============================================================ */

.quiz-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.quiz-progress {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.quiz-progress__step {
  flex: 1;
  height: 4px;
  background: rgba(205,142,51,0.2);
  border-radius: var(--radius-full);
  transition: background 400ms var(--ease);
}

.quiz-progress__step.done {
  background: var(--gold);
}

.quiz-progress__step.active {
  background: linear-gradient(90deg, var(--gold), rgba(205,142,51,0.4));
}

.quiz-step {
  display: none;
  animation: fadeSlideIn 400ms var(--ease);
}

.quiz-step.active {
  display: block;
}

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

.quiz-q-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}

.quiz-hint {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.5);
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.quiz-options {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

.quiz-options--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 540px) {
  .quiz-options--2col {
    grid-template-columns: 1fr;
  }
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(205,142,51,0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.85);
  font-weight: 400;
  transition: all 200ms var(--ease);
  min-height: 56px;
  line-height: 1.4;
}

.quiz-option:hover {
  background: rgba(205,142,51,0.1);
  border-color: var(--gold);
  color: var(--offwhite);
}

.quiz-option.selected {
  background: rgba(205,142,51,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.quiz-option.selected .quiz-option__check {
  border-color: var(--gold);
  background: var(--gold);
}

.quiz-option.selected .quiz-option__check::after {
  opacity: 1;
}

.quiz-option__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(245,245,245,0.3);
  flex-shrink: 0;
  position: relative;
  transition: all 200ms var(--ease);
}

.quiz-option__check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.quiz-option__check--square {
  border-radius: var(--radius-sm);
}

.quiz-option__check--square::after {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 2px;
}

.quiz-option__icon {
  font-size: 1.4rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

/* === Text input for quiz === */
.quiz-input {
  width: 100%;
  background: rgba(245,245,245,0.06);
  border: 1px solid rgba(205,142,51,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  margin-bottom: var(--space-4);
}

.quiz-input:focus {
  border-color: var(--gold);
  background: rgba(245,245,245,0.08);
}

.quiz-input::placeholder {
  color: rgba(245,245,245,0.3);
}

/* === Email capture gate === */
.quiz-gate {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
}

.quiz-gate__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.quiz-gate__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  margin-bottom: var(--space-3);
}

.quiz-gate__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.6);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
  font-weight: 300;
}

.quiz-gate__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 400px;
  margin-inline: auto;
}

.quiz-gate__privacy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245,245,245,0.35);
  margin-top: var(--space-3);
}

/* === Results === */
.quiz-results {
  display: none;
}

.quiz-results.active {
  display: block;
  animation: fadeSlideIn 500ms var(--ease);
}

.results-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.results-header__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.results-header__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  margin-bottom: var(--space-4);
}

.results-header__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.6);
  max-width: 500px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.7;
}

.river-result-card {
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(205,142,51,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}

.river-result-card--top {
  border-color: var(--gold);
  background: rgba(205,142,51,0.07);
}

.river-result-card__rank {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.river-result-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--offwhite);
  margin-bottom: var(--space-3);
}

.river-result-card__why {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: var(--space-4);
}

.river-result-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(205,142,51,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(205,142,51,0.25);
}

.results-cta-box {
  background: linear-gradient(135deg, rgba(205,142,51,0.12), rgba(205,142,51,0.04));
  border: 1px solid rgba(205,142,51,0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-cta-box__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--offwhite);
  margin-bottom: var(--space-3);
}

.results-cta-box__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.65);
  margin-bottom: var(--space-6);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   RIVER CARDS GRID
   ============================================================ */

.rivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.river-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(5,16,45,0.08);
  transition: all 250ms var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.river-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.river-card__header {
  background: var(--navy);
  padding: var(--space-6);
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.river-card__country {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(205,142,51,0.8);
  margin-bottom: var(--space-1);
}

.river-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--offwhite);
  line-height: 1.2;
}

.river-card__body {
  padding: var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.river-card__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.river-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.river-card__badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.badge--activity {
  background: rgba(5,16,45,0.06);
  color: var(--navy);
}

.badge--season {
  background: rgba(205,142,51,0.1);
  color: var(--gold-dark);
}

.badge--duration {
  background: rgba(5,16,45,0.06);
  color: var(--navy);
}

.river-card__cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}

.river-card__cta svg {
  transition: transform 200ms var(--ease);
}

.river-card:hover .river-card__cta svg {
  transform: translateX(4px);
}

/* ============================================================
   RIVER DETAIL MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,16,45,0.85);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-6);
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #0a1736;
  border: 1px solid rgba(205,142,51,0.25);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  margin-block: auto;
  animation: modalIn 350ms var(--ease);
  position: relative;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,245,245,0.08);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1;
  transition: background 200ms var(--ease);
}

.modal__close:hover {
  background: rgba(205,142,51,0.2);
  color: var(--gold);
}

.modal__header {
  background: var(--navy);
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom: 1px solid rgba(205,142,51,0.15);
}

.modal__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--offwhite);
  margin-bottom: var(--space-3);
}

.modal__tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(245,245,245,0.65);
  font-weight: 300;
  line-height: 1.6;
}

.modal__body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.modal__meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
}

.modal__meta-item {
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(205,142,51,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.modal__meta-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-1);
}

.modal__meta-value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--offwhite);
}

.modal__section-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(205,142,51,0.15);
}

.ports-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.port-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(245,245,245,0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(205,142,51,0.08);
}

@media (max-width: 600px) {
  .port-item {
    grid-template-columns: 1fr;
  }
}

.port-item__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--offwhite);
}

.port-item__country {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245,245,245,0.4);
  font-weight: 300;
  margin-top: 2px;
}

.port-item__activities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.port-item__activities li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.7);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
}

.port-item__activities li::before {
  content: '›';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: -1px;
}

.lines-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.line-pill {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(205,142,51,0.08);
  border: 1px solid rgba(205,142,51,0.2);
  color: rgba(245,245,245,0.75);
}

.modal__cta-section {
  background: linear-gradient(135deg, rgba(205,142,51,0.1), rgba(5,16,45,0.3));
  border: 1px solid rgba(205,142,51,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  text-align: center;
}

.modal__cta-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--offwhite);
  margin-bottom: var(--space-2);
}

.modal__cta-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.6);
  margin-bottom: var(--space-5);
  font-weight: 300;
}

/* ============================================================
   CRUISE LINES
   ============================================================ */

.cruise-line-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid rgba(5,16,45,0.2);
  background: var(--white);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.cruise-lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.cruise-line-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(5,16,45,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 250ms var(--ease);
  display: flex;
  flex-direction: column;
}

.cruise-line-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cruise-line-card__header {
  background: var(--navy);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.cruise-line-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--offwhite);
}

.cruise-line-card__tier {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(205,142,51,0.8);
  text-transform: uppercase;
  margin-top: 2px;
}

.inclusive-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.badge--full {
  background: rgba(105, 200, 110, 0.2);
  color: #5cba62;
  border: 1px solid rgba(105,200,110,0.3);
}

.badge--semi {
  background: rgba(205,142,51,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(205,142,51,0.3);
}

.cruise-line-card__body {
  padding: var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cruise-line-card__best-for {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.cruise-line-card__best-for strong {
  color: var(--navy);
  font-weight: 700;
}

.cruise-line-card__price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cruise-line-card__price strong {
  font-weight: 700;
  color: var(--navy);
}

.cruise-line-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cruise-line-card__features li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-weight: 300;
  line-height: 1.5;
}

.cruise-line-card__features li::before {
  content: '›';
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: 1rem;
}

.cruise-line-card__book {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(205,142,51,0.12);
  border: 1px solid rgba(205,142,51,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  transition: all 200ms var(--ease);
}

.cruise-line-card__book:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ============================================================
   GAME
   ============================================================ */

.game-wrap {
  max-width: 680px;
  margin-inline: auto;
}

.game-score-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
}

.game-score-item {
  text-align: center;
}

.game-score-item__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
  margin-bottom: var(--space-1);
}

.game-score-item__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
}

.game-difficulty {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.diff-btn {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid rgba(205,142,51,0.25);
  background: transparent;
  color: rgba(245,245,245,0.5);
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.diff-btn:hover, .diff-btn.active {
  background: rgba(205,142,51,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.game-card {
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(205,142,51,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  text-align: center;
}

.game-card__river-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.game-card__q-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245,245,245,0.4);
  font-weight: 400;
  margin-bottom: var(--space-6);
}

.game-card__clue {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.game-card__clue-detail {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.55);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.game-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (max-width: 480px) {
  .game-options {
    grid-template-columns: 1fr;
  }
}

.game-option {
  padding: var(--space-4) var(--space-5);
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(205,142,51,0.2);
  border-radius: var(--radius-lg);
  color: rgba(245,245,245,0.85);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms var(--ease);
  text-align: center;
  line-height: 1.4;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-option:hover:not(:disabled) {
  background: rgba(205,142,51,0.1);
  border-color: var(--gold);
  color: var(--offwhite);
}

.game-option.correct {
  background: rgba(100,200,100,0.15);
  border-color: #6dc46a;
  color: #90e88d;
}

.game-option.wrong {
  background: rgba(200,80,80,0.15);
  border-color: #c45050;
  color: #e88d8d;
  opacity: 0.7;
}

.game-option.reveal {
  background: rgba(100,200,100,0.1);
  border-color: rgba(100,200,100,0.3);
  color: rgba(100,200,100,0.7);
}

.game-option:disabled {
  cursor: default;
}

.game-feedback {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 300ms var(--ease);
}

.game-feedback.correct {
  background: rgba(100,200,100,0.08);
  border: 1px solid rgba(100,200,100,0.2);
}

.game-feedback.wrong {
  background: rgba(200,80,80,0.08);
  border: 1px solid rgba(200,80,80,0.2);
}

.game-feedback__emoji {
  font-size: 1.8rem;
}

.game-feedback__message {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--offwhite);
}

.game-feedback__fact {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.6);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

.game-over {
  display: none;
  text-align: center;
  animation: fadeSlideIn 500ms var(--ease);
}

.game-over.active {
  display: block;
}

.game-over__trophy {
  font-size: 4rem;
  margin-bottom: var(--space-4);
}

.game-over__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  margin-bottom: var(--space-3);
}

.game-over__score {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.game-over__message {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.6);
  font-weight: 300;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* ============================================================
   ABOUT BRAD STRIP
   ============================================================ */

.about-strip {
  background: var(--navy);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 700px) {
  .about-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-strip__badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.about-strip__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(205,142,51,0.12);
  border: 2px solid rgba(205,142,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}

.about-strip__virtuoso {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(205,142,51,0.1);
  border: 1px solid rgba(205,142,51,0.25);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  text-align: center;
}

.about-strip__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--offwhite);
  margin-bottom: var(--space-2);
}

.about-strip__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.about-strip__bio {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.65);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.about-strip__stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

@media (max-width: 700px) {
  .about-strip__stats {
    justify-content: center;
  }
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  line-height: 1;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245,245,245,0.45);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #030b1e;
  border-top: 1px solid rgba(205,142,51,0.12);
  padding: clamp(var(--space-12), 5vw, var(--space-20)) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245,245,245,0.5);
  text-decoration: none;
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(245,245,245,0.06);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245,245,245,0.3);
}

.footer__virtuoso {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(205,142,51,0.6);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   ACTIVITY LEVEL INDICATOR
   ============================================================ */

.activity-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(205,142,51,0.2);
}

.activity-dot.filled {
  background: var(--gold);
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */

@media (max-width: 600px) {
  .modal__body { padding: var(--space-5) var(--space-5); }
  .modal__header { padding: var(--space-6) var(--space-5) var(--space-5); }
  .river-result-card { padding: var(--space-5) var(--space-5); }
  .rivers-grid { grid-template-columns: 1fr; }
  .cruise-lines-grid { grid-template-columns: 1fr; }
  .game-score-bar { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--color-text-muted); }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.divider-gold {
  border: none;
  border-top: 1px solid rgba(205,142,51,0.2);
  margin-block: var(--space-6);
}

/* ============================================================
   CRUISE LINE LOGOS
   ============================================================ */

.cruise-line-logo-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
  padding: var(--space-2) 0;
}

.cruise-line-logo {
  max-height: 44px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Lines with light/colored logos on navy bg — invert to white */
.logo-on-dark {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Amadeus has gold/navy — works on dark bg without full invert */
.logo-amadeus {
  filter: brightness(1.1) contrast(1.05);
  opacity: 0.95;
}

/* Riverside is sage green — lighten on dark */
.logo-riverside {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Viva is blue on white — invert */
.logo-viva {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Riviera is dark on white — invert to white */
.logo-riviera {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ============================================================
   RIVER CARD IMAGES
   ============================================================ */

.river-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.modal__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ============================================================
   ABOUT BRAD — PHOTO + STATS
   ============================================================ */

.about-brad__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid rgba(205,142,51,0.4);
  box-shadow: 0 4px 20px rgba(5,16,45,0.4);
}

.about-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(205,142,51,0.12);
  border: 1px solid rgba(205,142,51,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  font-size: 1.3rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (max-width: 500px) {
  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

/* ============================================================
   HERO BACKGROUND PHOTO
   ============================================================ */

.hero__photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/photos/hero-budapest.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,16,45,0.55) 0%,
    rgba(5,16,45,0.45) 40%,
    rgba(5,16,45,0.65) 100%
  );
  z-index: 1;
}

/* Fix cruise line book button on mobile */
.cruise-line-card__book {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 600px) {
  .cruise-line-card__book {
    font-size: 0.65rem;
    padding: var(--space-2) var(--space-3);
  }
}

/* ============================================================
   HERO TEXT BOX — readable overlay panel
   ============================================================ */

.hero__text-box {
  background: rgba(5, 16, 45, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(205, 142, 51, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-8), 5vw, var(--space-16));
  display: inline-block;
  max-width: 720px;
  margin-inline: auto;
}

/* ============================================================
   CRUISE LINE CARDS — REDESIGNED (logo in white, name in navy)
   ============================================================ */

/* Navy header now shows only name + tier + badge — no logo */
.cruise-line-card__header-text {
  flex: 1;
}

.cruise-line-card__header-name {
  font-family: var(--font-display);
  font-size: 1.6rem;  /* Fixed size — same across all 11 cards */
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cruise-line-card__header-tier {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(205, 142, 51, 0.8);
}

/* Logo zone in the white body — fixed 56px height, logos scale to fill */
.cruise-line-logo-zone {
  display: flex;
  align-items: center;
  height: 56px;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(5, 16, 45, 0.08);
  overflow: hidden;
}

.cruise-line-logo-white {
  /* All logos rendered at a consistent apparent height */
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* ============================================================
   ABOUT BRAD — PPTX-STYLE SVG INFOGRAPHICS
   ============================================================ */

.brad-infographics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (max-width: 600px) {
  .brad-infographics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brad-infographic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}

.brad-infographic-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.brad-infographic-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.4;
}

/* ============================================================
   FIX 1: Cruise line button — prevent awkward text wrapping
   ============================================================ */
.cruise-line-card__book {
  font-size: 0.6rem !important;
  letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-4) !important;
  min-height: 38px;
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   FIX 2: Activity & season badges — remove emoji calendar icon
   and use clean text-only badges
   ============================================================ */
.badge--season {
  /* Remove the emoji calendar that appears via content */
}

/* Strip the emoji calendar from season text display */
.river-card__badge.badge--season {
  background: rgba(205,142,51,0.1);
  color: var(--gold-dark);
  font-size: var(--text-xs);
}

/* ============================================================
   FIX 3: Mobile About Brad — better stacking layout
   ============================================================ */
@media (max-width: 700px) {
  .about-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .about-strip__badge-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }

  .about-brad__photo {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--space-3);
    display: block;
  }

  .brad-infographics {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .about-strip__stats {
    justify-content: center;
  }

  .about-strip__bio {
    text-align: left;
  }
}

/* ============================================================
   FIX A: Cruise card header — badge always visible at bottom,
   uniform header height regardless of name length
   ============================================================ */

.cruise-line-card__header {
  flex-direction: column !important;
  justify-content: space-between;
  min-height: 110px;
  gap: var(--space-2);
}

.cruise-line-card__header-text {
  flex: 1;
}

/* Badge pinned to bottom of header */
.inclusive-badge {
  align-self: flex-start;
  margin-top: auto;
  flex-shrink: 0;
}

/* ============================================================
   FIX B: River card header — uniform height regardless of
   how many countries are listed
   ============================================================ */

.river-card__header {
  min-height: 100px !important;
  height: auto;
}

.river-card__country {
  font-size: 0.6rem !important; /* Smaller so long country lists stay on 1–2 lines */
  letter-spacing: 0.1em;
  line-height: 1.4;
  /* Clamp to 2 lines max */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.river-card__name {
  font-size: var(--text-base) !important;
}
