/* ================================================================
   TRAVERSE — Design System v4
   Montserrat display + Barlow body. Fixed, polished, event-grade.
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --black:      #090909;
  --white:      #ffffff;
  --off-white:  #f4f4f2;
  --grey-100:   #ededea;
  --grey-200:   #d6d4ce;
  --grey-500:   #888882;
  --grey-700:   #3c3c38;
  --accent:     #5b7fa6;
  --accent-rgb: 91,127,166;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --sp-1:  0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4:  1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8:  2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  --wrap:    1380px;
  --wrap-sm: 800px;
  --pad:     clamp(1.5rem, 4vw, 3.5rem);

  --border:      1px solid var(--grey-200);
  --border-dark: 1px solid rgba(255,255,255,0.08);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.22s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .trv-nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .trv-nav { top: 46px; } }

/* ── Type scale ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5vw,  4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw,  2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw,  1.6rem); }
h4 { font-size: clamp(1rem,   1.5vw, 1.2rem); }
p  { line-height: 1.75; font-weight: 300; }

.trv-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Wrap ── */
.trv-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.trv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 72px;
  background: rgba(9,9,9,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-dark);
}

.trv-nav__inner {
  height: 100%;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Logo left — always flush to pad */
.trv-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.trv-nav__logo {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.trv-nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  padding-right: 0.32em; /* optical balance for tracking */
}

.trv-nav__tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  padding: 0.22rem 0.55rem;
  line-height: 1;
  white-space: nowrap;
}

/* Right side */
.trv-nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.trv-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}

.trv-nav__menu a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur);
}
.trv-nav__menu a:hover { color: var(--white); }

/* ── Buttons ── */
.trv-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.trv-btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.trv-btn--primary:hover { background: #4a6e93; border-color: #4a6e93; }

.trv-btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.trv-btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.trv-btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--grey-700);
}
.trv-btn--outline-dark:hover { background: var(--black); color: var(--white); }

.trv-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.trv-btn--ghost:hover { background: var(--white); color: var(--black); }

.trv-btn svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.trv-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.trv-hero {
  background: var(--black);
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Very subtle grid texture */
.trv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* Soft gradient right pull */
.trv-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(var(--accent-rgb),0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.trv-hero__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: var(--sp-16);
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--sp-20) var(--pad) var(--sp-16);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Left col */
.trv-hero__left { display: flex; flex-direction: column; }

.trv-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-8);
}

.trv-hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.trv-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.trv-hero__year {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
  display: block;
  margin-bottom: var(--sp-12);
}

.trv-hero__dates {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--accent);
  margin-bottom: var(--sp-12);
}

.trv-hero__date { display: flex; flex-direction: column; gap: 2px; }

.trv-hero__date-label {
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.trv-hero__date-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.trv-hero__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Right col — destination card */
.trv-hero__right {
  position: relative;
  z-index: 1;
}

.trv-hero__dest-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: var(--sp-10);
  position: relative;
}

/* Accent corner top-left */
.trv-hero__dest-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 48px; height: 3px;
  background: var(--accent);
}

/* Accent corner left vertical */
.trv-hero__dest-card::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 3px; height: 48px;
  background: var(--accent);
}

.trv-hero__dest-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-4);
}

.trv-hero__dest-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
  display: block;
  margin-bottom: var(--sp-6);
}

.trv-hero__dest-year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-8);
}

/* German flag strip */
.trv-dest-flag {
  display: flex;
  height: 3px;
  gap: 2px;
  width: 56px;
}
.trv-dest-flag span { flex: 1; }
.trv-dest-flag .f1 { background: #222; }
.trv-dest-flag .f2 { background: #CC0000; }
.trv-dest-flag .f3 { background: #FFCE00; }

/* Background watermark */
.trv-hero__watermark {
  position: absolute;
  bottom: -0.12em;
  right: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 26rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* Scroll hint */
.trv-hero__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  max-width: var(--wrap);
  margin-inline: auto;
  width: 100%;
  padding: var(--sp-5) var(--pad);
  position: relative;
  z-index: 1;
}
.trv-hero__foot::before {
  content: '';
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
.trv-stats {
  background: #0d0d0d;
  border-top:    var(--border-dark);
  border-bottom: var(--border-dark);
}

.trv-stats__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trv-stat {
  padding: var(--sp-8) var(--sp-6);
  border-right: var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.trv-stat:first-child { padding-left: 0; }
.trv-stat:last-child  { border-right: none; padding-right: 0; }

.trv-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.trv-stat__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   ABOUT SPLIT
═══════════════════════════════════════ */
.trv-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trv-about__media {
  background: var(--black);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.trv-about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

.trv-about__placeholder {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.04);
  text-align: center;
  line-height: 0.9;
  user-select: none;
  padding: var(--sp-8);
}

.trv-about__content {
  padding: var(--sp-20) var(--sp-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.trv-about__eyebrow {
  display: block;
  margin-bottom: var(--sp-4);
}

.trv-about__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: var(--sp-6);
}

.trv-about__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--grey-700);
  font-weight: 300;
  line-height: 1.8;
  max-width: 460px;
}
.trv-about__body p + p { margin-top: var(--sp-4); }

/* ═══════════════════════════════════════
   WHY ATTEND
═══════════════════════════════════════ */
.trv-why {
  background: var(--off-white);
  padding: var(--sp-24) 0;
}

.trv-why__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.trv-why__eyebrow { display: block; margin-bottom: var(--sp-3); }

.trv-why__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.trv-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.trv-why-card {
  background: var(--white);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border: var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.trv-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Accent bar slides in on hover */
.trv-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width 0.32s var(--ease);
}
.trv-why-card:hover::after { width: 100%; }

.trv-why-card__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--grey-100);
  line-height: 1;
}

.trv-why-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--black);
}

.trv-why-card__body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--grey-500);
  font-weight: 300;
  flex: 1;
}

/* ═══════════════════════════════════════
   DATES / TIMELINE
═══════════════════════════════════════ */
.trv-dates {
  background: var(--black);
  padding: var(--sp-24) 0;
}

.trv-dates__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.trv-dates__eyebrow { display: block; margin-bottom: var(--sp-3); }

.trv-dates__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.trv-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trv-timeline-item {
  padding: var(--sp-10) var(--sp-8);
  border: var(--border-dark);
  border-right: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
}
.trv-timeline-item:last-child { border-right: var(--border-dark); }

.trv-timeline-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}

.trv-timeline-item__phase {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.trv-timeline-item__dates {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 0.95;
}

.trv-timeline-item__month {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}

.trv-timeline-item__desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.trv-cta {
  background: var(--black);
  padding: var(--sp-24) 0;
  border-top: var(--border-dark);
  position: relative;
  overflow: hidden;
}

.trv-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 50%);
}

.trv-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-16);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.trv-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: var(--sp-4);
}

.trv-cta__body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}

.trv-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex-shrink: 0;
  min-width: 200px;
}

/* Ghost text */
.trv-cta__ghost {
  position: absolute;
  right: -0.04em; bottom: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.trv-footer {
  isolation: isolate;
  background: #050505;
  border-top: var(--border-dark);
  padding: var(--sp-16) 0 var(--sp-8);
}

.trv-footer__inner {
  max-width: none;
  margin-inline: 0;
  padding-inline: 5rem;
}

.trv-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-10);
  border-bottom: var(--border-dark);
  margin-bottom: var(--sp-6);
}

.trv-footer__logo img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.trv-footer__logo img + img {
  height: 80px;
  width: auto;
  margin-top: 1.5rem;
  filter: none;
  opacity: 1;
}

.trv-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: var(--sp-4);
}

.trv-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.65;
}

.trv-footer__col-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: var(--sp-4);
}

.trv-footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.trv-footer__links a {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  transition: color var(--dur);
}
.trv-footer__links a:hover { color: rgba(255,255,255,0.75); }

.trv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.trv-footer__copy {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════ */
.trv-page-hero {
  background: var(--black);
  padding: calc(72px + var(--sp-20)) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}

.trv-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.trv-page-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.trv-page-hero__accent { width: 40px; height: 2px; background: var(--accent); margin-bottom: var(--sp-8); }

.trv-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 0.98;
  margin-bottom: var(--sp-6);
}

.trv-page-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

/* Breadcrumb */
.trv-breadcrumb {
  display: flex; align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}
.trv-breadcrumb a, .trv-breadcrumb span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: color var(--dur);
}
.trv-breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.trv-breadcrumb__sep   { color: rgba(255,255,255,0.1); }

/* Inner page content */
.trv-page-content { padding: var(--sp-20) 0; background: var(--white); }
.trv-page-content .trv-wrap > * + * { margin-top: var(--sp-8); }
.trv-page-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--sp-4); }
.trv-page-content h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: var(--sp-3); }
.trv-page-content p  { font-size: 1rem; color: var(--grey-700); font-weight: 300; line-height: 1.8; margin-bottom: var(--sp-4); }
.trv-page-content ul,
.trv-page-content ol { padding-left: var(--sp-6); color: var(--grey-700); font-weight: 300; line-height: 1.75; margin-bottom: var(--sp-4); }
.trv-page-content li + li { margin-top: var(--sp-2); }
.trv-page-content a { color: var(--accent); text-decoration: underline; }

/* Speaker cards */
.trv-people { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--sp-2); }
.trv-person { background: var(--grey-100); padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.trv-person__photo { aspect-ratio: 1; overflow: hidden; background: var(--grey-200); }
.trv-person__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter var(--dur); }
.trv-person:hover .trv-person__photo img { filter: grayscale(0); }
.trv-person__name  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.trv-person__role  { font-family: var(--font-body); font-size: 0.78rem; color: var(--grey-500); font-weight: 300; }
.trv-person__co    { font-family: var(--font-body); font-size: 0.65rem; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* Gutenberg */
.alignwide { max-width: 1300px; margin-inline: auto; }
.alignfull  { width: 100%; max-width: none; }

/* Scroll reveal */
.trv-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.trv-reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .trv-hero__body { grid-template-columns: 1fr 360px; }
}

@media (max-width: 900px) {
  .trv-hero__body { grid-template-columns: 1fr; gap: var(--sp-12); padding-block: var(--sp-12); }
  .trv-hero__title { font-size: clamp(3rem, 14vw, 6rem); }
  .trv-about { grid-template-columns: 1fr; }
  .trv-about__media { min-height: 300px; }
  .trv-about__content { padding: var(--sp-12) var(--pad); }
  .trv-why__grid { grid-template-columns: 1fr 1fr; }
  .trv-timeline { grid-template-columns: 1fr; }
  .trv-timeline-item { border-right: var(--border-dark); border-bottom: none; }
  .trv-timeline-item:last-child { border-bottom: var(--border-dark); }
  .trv-cta__inner { grid-template-columns: 1fr; }
  .trv-cta__actions { flex-direction: row; flex-wrap: wrap; }
  .trv-footer__top { grid-template-columns: 1fr 1fr; }
  .trv-stats__grid { grid-template-columns: 1fr 1fr; padding-inline: var(--pad); }
  .trv-stat:first-child { padding-left: var(--sp-6); }
  .trv-stat:nth-child(2) { border-right: none; }
  .trv-nav__menu { display: none; }
  .trv-hero__watermark { display: none; }
}

@media (max-width: 600px) {
  .trv-why__grid { grid-template-columns: 1fr; }
  .trv-stats__grid { grid-template-columns: 1fr; }
  .trv-stat { border-right: none; border-bottom: var(--border-dark); padding-left: 0; }
  .trv-hero__ctas { flex-direction: column; align-items: flex-start; }
  .trv-footer__top { grid-template-columns: 1fr; }
  .trv-footer__bottom { flex-direction: column; text-align: center; }
}

/* Nav inner responsive padding — matches body content */
@media (max-width: 1024px) {
  .trv-nav__inner { padding-inline: 2rem; }
}
