/* ============================================================
   COMPONENTS — Nav, Footer, Buttons, Cards, Forms
   ============================================================ */

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.nav.scrolled {
  background: rgba(31, 58, 82, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav.nav--light {
  background: rgba(245,243,240,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav.nav--light .nav__logo { color: var(--navy); }
.nav.nav--light .nav__link { color: var(--charcoal); }
.nav.nav--light .nav__link:hover { color: var(--navy); }
.nav.nav--light .hamburger span { background: var(--charcoal); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color var(--t-base);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo span {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 2px;
}

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

.nav__link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,243,240,0.88);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--sage-light);
  transition: width var(--t-base);
}

.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--cream); }
.nav__link.active::after { width: 100%; background: var(--gold); }

.nav__cta {
  margin-left: var(--sp-2);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: calc(var(--z-nav) + 1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--navy-deep);
  z-index: calc(var(--z-nav) - 1);
  padding: calc(var(--nav-h) + var(--sp-4)) var(--sp-4) var(--sp-4);
  transition: right var(--t-slow);
  flex-direction: column;
  gap: var(--sp-1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--cream);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(245,243,240,0.08);
  transition: color var(--t-base), padding-left var(--t-base);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--sage-light);
  padding-left: var(--sp-2);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-nav) - 2);
  opacity: 0;
  transition: opacity var(--t-base);
  backdrop-filter: blur(3px);
}

.mobile-overlay.open { opacity: 1; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: var(--sp-8) 0 var(--sp-4);
  color: var(--cream);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(245,243,240,0.08);
}

.footer__col-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.footer__text {
  font-size: var(--text-sm);
  color: rgba(245,243,240,0.65);
  line-height: 1.7;
  max-width: none;
}

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

.footer__link {
  font-size: var(--text-sm);
  color: rgba(245,243,240,0.65);
  transition: color var(--t-base), padding-left var(--t-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--sage-light);
  transition: width var(--t-base);
  flex-shrink: 0;
}

.footer__link:hover {
  color: var(--sage-light);
  padding-left: 6px;
}

.footer__link:hover::before { width: 12px; }

.footer__bottom {
  padding-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(245,243,240,0.4);
}

/* Footer newsletter */
.footer__form {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.footer__input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,243,240,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--cream);
  font-size: var(--text-sm);
  transition: border-color var(--t-base), background var(--t-base);
}

.footer__input::placeholder { color: rgba(245,243,240,0.35); }
.footer__input:focus {
  outline: none;
  border-color: var(--sage-light);
  background: rgba(255,255,255,0.10);
}

.footer__social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245,243,240,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,243,240,0.65);
  transition: all var(--t-base);
}

.footer__social-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.btn:hover::before { transform: scaleX(1); }

/* Primary */
.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Sage */
.btn--sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn--sage:hover {
  background: #5d7e70;
  border-color: #5d7e70;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Outline-light (on dark backgrounds) */
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,243,240,0.5);
}

.btn--outline-light:hover {
  background: rgba(245,243,240,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--sage);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover { color: var(--navy); }
.btn--ghost::before { display: none; }

/* Sizes */
.btn--sm { font-size: var(--text-xs); padding: 10px 20px; min-height: 40px; }
.btn--lg { font-size: var(--text-base); padding: 18px 36px; min-height: 56px; }

/* Gold */
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201,169,97,0.35);
  transform: translateY(-2px);
}

/* Arrow icon button */
.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--t-base);
  flex-shrink: 0;
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--sage);
  transition: height var(--t-slow);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card:hover::before { height: 100%; }

.card--cream { background: var(--cream); }
.card--navy  { background: var(--navy); color: var(--cream); }

.card--navy h3,
.card--navy h4,
.card--navy p  { color: var(--cream); }

/* Theme card */
.theme-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  transition: all var(--t-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.theme-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
  background: var(--white);
}

.theme-card:hover::after { opacity: 1; }

.theme-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--sp-3);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform var(--t-base);
}

.theme-card:hover .theme-card__icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, var(--sage) 0%, var(--navy-mid) 100%);
}

.theme-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
}

.theme-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  position: relative;
  z-index: 1;
}

.theme-card p {
  font-size: var(--text-sm);
  color: var(--charcoal-mid);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: none;
}

/* Testimonial card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage-pale);
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-3);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-2);
}

.star {
  color: var(--gold);
  font-size: var(--text-base);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
  max-width: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-dark));
  border: 2px solid var(--sage-light);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 700;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
  font-family: var(--font-sans);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--charcoal-light);
  margin-top: 1px;
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,243,240,0.1);
  transition: all var(--t-base);
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(245,243,240,0.2);
}

.stat-card__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, var(--text-7xl));
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-card__num .suffix {
  color: var(--gold);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: rgba(245,243,240,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Book card */
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.book-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  pointer-events: none;
}

/* Value card */
.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  border: 1px solid transparent;
  transition: all var(--t-base);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.value-card:hover .value-card__icon { transform: scale(1.1) rotate(-5deg); }

.value-card__icon svg { width: 20px; height: 20px; color: var(--sage-light); }

.value-card__body h4 {
  font-size: var(--text-base);
  margin-bottom: 4px;
  color: var(--navy);
}

.value-card__body p {
  font-size: var(--text-sm);
  color: var(--charcoal-mid);
  max-width: none;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-label .req {
  color: var(--sage);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--charcoal-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,142,127,0.12);
  background: rgba(245,243,240,0.4);
}

.form-input.valid { border-color: var(--sage); }
.form-input.invalid { border-color: #e05c5c; }

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232B2B2B' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

.form-error {
  font-size: var(--text-xs);
  color: #d93636;
  display: none;
  align-items: center;
  gap: 4px;
}

.form-error.show { display: flex; }

.form-check {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--sage);
  opacity: 0;
  transition: opacity var(--t-base);
}

.form-input.valid ~ .form-check { opacity: 1; }

/* Radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  cursor: pointer;
  color: var(--charcoal-mid);
}

.radio-label input[type="radio"] {
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
}

/* Submit */
.form-submit {
  padding-top: var(--sp-1);
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  background: var(--navy);
  color: var(--cream);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transform: translateY(120px);
  opacity: 0;
  transition: all var(--t-slow);
  border-left: 3px solid var(--sage);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--success { border-left-color: var(--sage); }
.toast--error   { border-left-color: #e05c5c; }

/* ══════════════════════════════════════════
   BOOK MOCKUP
══════════════════════════════════════════ */
.mockup-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-wrapper img {
  max-width: 100%;
  filter: drop-shadow(var(--shadow-2xl));
  transition: transform var(--t-slow), filter var(--t-slow);
}

.mockup-wrapper:hover img {
  filter: drop-shadow(0 32px 64px rgba(31,58,82,0.3));
}

/* ── Float animation (applied via JS/CSS) ── */
.float-anim {
  animation: floatBook 4s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   AUTHOR PORTRAIT
══════════════════════════════════════════ */
.author-portrait {
  position: relative;
  display: inline-block;
}

.author-portrait__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.author-portrait__frame {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--sage);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity var(--t-base), inset var(--t-base);
}

.author-portrait:hover .author-portrait__frame {
  inset: -12px;
  opacity: 0.8;
}

/* ══════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: var(--sp-4) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sage-light) 10%, var(--sage-light) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-5);
}

.timeline-item:nth-child(odd) .timeline-content { order: -1; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { order: 1; }

.timeline-node {
  width: 16px;
  height: 16px;
  background: var(--sage);
  border: 3px solid var(--cream);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 3px var(--sage-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px var(--sage-light), var(--glow-sage);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.timeline-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--charcoal-mid);
  line-height: 1.6;
  max-width: none;
}

/* ══════════════════════════════════════════
   SCROLL INDICATOR
══════════════════════════════════════════ */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,243,240,0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-base);
}

.scroll-indicator:hover { color: var(--sage-light); }

.scroll-arrow {
  width: 24px;
  height: 36px;
  border: 1.5px solid rgba(245,243,240,0.4);
  border-radius: var(--radius-full);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-arrow::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(245,243,240,0.8);
  border-radius: var(--radius-full);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   PLATFORM REVIEW BADGES
══════════════════════════════════════════ */
.platform-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--t-base);
}

.platform-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.platform-badge__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.platform-badge__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
}

.platform-badge__rating {
  font-size: var(--text-xs);
  color: var(--charcoal-light);
}

/* ══════════════════════════════════════════
   CONTACT INFO BLOCKS
══════════════════════════════════════════ */
.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--t-base);
}

.contact-method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.contact-method__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  transition: transform var(--t-base);
}

.contact-method:hover .contact-method__icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--sage) 0%, var(--navy) 100%);
}

.contact-method__icon svg {
  width: 28px;
  height: 28px;
  color: var(--cream);
}

.contact-method__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.contact-method__value {
  font-size: var(--text-base);
  color: var(--charcoal);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   LOADING OVERLAY
══════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--cream);
  opacity: 0;
  animation: loaderFade 0.8s ease forwards 0.2s;
}

.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  animation: loaderBar 1s ease forwards;
}
