/* =============================================
   ROOT TOKENS
   ============================================= */
:root {
  --bg: #0c1018;
  --surface: rgba(255, 255, 255, 0.09);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --surface-light: rgba(255, 252, 247, 0.68);
  --stroke: rgba(255, 255, 255, 0.18);
  --stroke-strong: rgba(255, 255, 255, 0.32);
  --text: #f6f1ea;
  --text-muted: rgba(246, 241, 234, 0.78);
  --text-dark: #1b1a1a;
  --text-dark-muted: rgba(27, 26, 26, 0.7);
  --gold: #d8aa46;
  --gold-soft: #e4c370;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 40px rgba(8, 10, 18, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page-pad: clamp(18px, 3vw, 36px);
  --max: 1440px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 170, 70, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(128, 157, 214, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0f17 0%, #111622 48%, #0d1018 100%);
  color: var(--text);
  overflow-x: hidden;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: auto auto 10% -10%;
  width: 34vw; height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 70, 0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -2;
}
body::after {
  inset: 5% -8% auto auto;
  width: 28vw; height: 28vw;
  background: radial-gradient(circle, rgba(157, 182, 240, 0.14), transparent 70%);
}
.page-noise {
  position: fixed; inset: 0;
  pointer-events: none; opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.8) 0.55px, transparent 0.55px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light; z-index: -1;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
p { margin: 0; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }

/* HEADER */
.site-header {
  position: sticky; top: 14px; z-index: 20;
  width: min(calc(100% - 28px), 1320px);
  margin: 14px auto 0;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(155deg, rgba(244,198,108,1) 0%, rgba(195,126,29,1) 100%);
  clip-path: polygon(44% 0, 62% 0, 50% 38%, 100% 100%, 72% 100%, 46% 56%, 30% 100%, 0 100%, 38% 36%);
  box-shadow: 0 12px 24px rgba(216,170,70,0.35);
}
.brand__copy strong { display: block; letter-spacing: 0.12em; font-size: 0.86rem; }
.brand__copy em { display: block; font-style: normal; color: var(--text-muted); font-size: 0.72rem; }
.main-nav { justify-self: center; display: inline-flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.main-nav a { padding: 9px 14px; border-radius: 999px; color: var(--text-muted); font-size: 0.93rem; white-space: nowrap; }
.nav-actions { display: inline-flex; gap: 8px; align-items: center; }
.icon-button {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border-radius: 50%; color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* TRANSITIONS */
.main-nav a, .icon-button, .segmented button, .soft-chip, .ghost-button,
.primary-button, .bar-group, .orbit-chip {
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease,
    color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}
.main-nav a:hover, .main-nav a:focus-visible, .segmented button:hover,
.segmented button:focus-visible, .soft-chip:hover, .ghost-button:hover,
.primary-button:hover, .icon-button:hover, .bar-group:hover {
  transform: translateY(-2px);
}

/* MAIN */
main {
  width: min(calc(100% - 32px), var(--max));
  margin: 24px auto 0;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  padding-bottom: 70px;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px) scale(0.99); }
.reveal.is-visible {
  opacity: 1; transform: translateY(0) scale(1);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-delay-1.is-visible { transition-delay: 110ms; }
.reveal-delay-2.is-visible { transition-delay: 220ms; }

/* CLUSTER */
.cluster { display: grid; gap: 14px; }

/* EYEBROW / MINI-LABEL */
.eyebrow, .mini-label {
  display: inline-flex; width: fit-content; align-items: center;
  gap: 8px; padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,246,226,0.92);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.mini-label { font-size: 0.72rem; letter-spacing: 0.08em; }
.mini-label--dark {
  color: rgba(30, 22, 8, 0.72);
  background: rgba(30, 22, 8, 0.09);
  border-color: rgba(30, 22, 8, 0.14);
}

/* SHARED HEADINGS & BODY */
.hero__copy h1, .section-heading h2, .outbound__heading h2,
.confidence__copy h2, .melbourne__content h2, .resume__copy h2 {
  font-family: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  letter-spacing: -0.035em; line-height: 0.95;
}
.hero__copy p, .section-heading p, .outbound__heading p,
.confidence__copy p, .melbourne__content p, .resume__copy p {
  max-width: 60ch; color: var(--text-muted); font-size: 1.02rem; line-height: 1.7;
}

/* GLASS */
.glass {
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.glass--nav { background: linear-gradient(180deg, rgba(18,23,34,0.74), rgba(18,23,34,0.54)); }
.glass--panel { padding: 16px 20px; border-radius: 28px; }
.glass--floating { padding: 16px 18px; border-radius: 20px; }
.glass--micro {
  background: linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.08));
  border-radius: 999px; padding: 10px 14px; box-shadow: var(--shadow-soft);
}
.glass--light {
  background: linear-gradient(180deg, rgba(255,251,246,0.84), rgba(255,248,241,0.7));
  color: var(--text-dark);
  border: 1px solid rgba(86,66,24,0.12);
  box-shadow: 0 22px 40px rgba(10,10,16,0.12);
}
.glass--summary { padding: 20px 22px; }
.glass--ticket { display: grid; gap: 10px; }

/* SCENE / STAGE */
.hero, .stage-card, .scene, .resume__media, .outbound__media,
.confidence__visual, .melbourne__primary { position: relative; isolation: isolate; }
.scene, .stage-card { overflow: hidden; border-radius: clamp(28px, 3.5vw, 42px); }
.scene__media, .stage-card__image, .melbourne__secondary-image {
  position: absolute; inset: 0;
  background-image: var(--bg); background-size: cover; background-position: center;
  transform: scale(calc(1.02 + var(--depth, 0)));
  transition: transform 600ms ease;
}
.scene__veil, .stage-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
}
.scene__veil {
  background:
    linear-gradient(180deg, rgba(10,14,22,0.06) 0%, rgba(10,14,22,0.10) 40%, rgba(10,14,22,0.36) 100%),
    linear-gradient(90deg, rgba(10,14,22,0.38) 0%, rgba(10,14,22,0.08) 55%, rgba(10,14,22,0.04) 100%),
    radial-gradient(circle at 18% 22%, rgba(255,219,147,0.14), transparent 28%);
}
.stage-card::after {
  background:
    linear-gradient(180deg, rgba(8,12,20,0.04), rgba(8,12,20,0.24)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 25%);
}
.hero__copy, .hero__booking, .hero__aside, .stage-card__legend, .stage-card__topbar,
.outbound__heading, .confidence__copy, .melbourne__content, .resume__overlay {
  position: relative; z-index: 2;
}

/* HERO */
.hero {
  min-height: 720px;
  padding: clamp(20px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr min(320px, 26%);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "copy  aside"
    ".     aside"
    "booking booking";
  align-items: start;
  gap: 0 22px;
}
.hero__copy {
  grid-area: copy;
  max-width: 560px;
  margin-top: clamp(28px, 3.5vw, 52px);
  display: grid;
  gap: 11px;
}
.hero__copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 13ch;
  line-height: 1.02;
}
.hero__copy h1 span { color: var(--gold-soft); font-style: italic; }
.hero__copy p { font-size: 0.95rem; max-width: 50ch; line-height: 1.65; }
.hero__booking {
  grid-area: booking;
  align-self: end;
  margin-top: 20px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.09));
}
/* Remove orphaned aside rule */

/* BOOKING WIDGET */
.segmented {
  display: inline-flex; gap: 6px; padding: 6px; border-radius: 999px;
  background: rgba(8,12,20,0.22); border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 12px;
}
.segmented button { color: var(--text-muted); padding: 7px 14px; border-radius: 999px; font-size: 0.9rem; }
.segmented .active {
  color: #231809;
  background: linear-gradient(180deg, rgba(234,197,112,1), rgba(214,160,47,1));
  box-shadow: 0 8px 18px rgba(216,170,70,0.30);
}
.field-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 1fr auto;
  gap: 8px; align-items: center;
}
.field {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px 11px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  min-height: 0;
}
.field span {
  color: rgba(246,241,234,0.58); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; line-height: 1.2;
}
.field strong {
  font-size: 0.97rem; font-weight: 600; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.field small {
  color: rgba(246,241,234,0.58); font-size: 0.8rem; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.primary-button--search {
  padding: 0 24px;
  min-height: 52px;
  font-size: 0.97rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* BUTTONS */
.primary-button, .ghost-button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 0 20px;
  border-radius: 999px; white-space: nowrap;
}
.primary-button {
  color: #251a06;
  background: linear-gradient(180deg, #efcb7d 0%, #d7a33c 100%);
  box-shadow: 0 14px 28px rgba(216,170,70,0.24);
  font-weight: 600;
}
.primary-button--compact, .ghost-button { min-height: 42px; }
.ghost-button {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.ghost-button--light {
  color: var(--text-dark);
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(39,28,6,0.1);
}
.ghost-button--outline {
  color: var(--text);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
}

/* Scroll anchor offset for sticky header */
section[id], .melbourne, .resume {
  scroll-margin-top: 80px;
}

/* CHIPS */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.soft-chip {
  display: inline-flex; align-items: center;
  min-height: 32px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text); font-size: 0.84rem;
}
.soft-chip--active {
  color: #271a06;
  background: linear-gradient(180deg, rgba(244,209,131,1), rgba(219,171,67,1));
  border-color: rgba(255,255,255,0.4);
}
.soft-chip--dark {
  color: var(--text-dark);
  background: rgba(255,255,255,0.75);
  border-color: rgba(42,32,9,0.1);
}

/* SECTION HEADING */
.section-heading { max-width: 760px; margin-bottom: 26px; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }

/* SPLIT STAGE */
.split-stage { display: grid; gap: 24px; }
.stage-card { min-height: 640px; }
.stage-card--wide { min-height: 760px; }
.stage-card--hero { min-height: 700px; }
.stage-card__topbar {
  position: absolute; inset: 22px 22px auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.bar-group {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(14, 18, 30, 0.82);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.bar-group span {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(246,241,234,0.62);
  flex-shrink: 0;
}
.bar-group strong { font-size: 0.97rem; font-weight: 600; color: var(--text); }
.stage-card__legend {
  position: absolute; right: 28px; bottom: 30px;
  width: min(360px, calc(100% - 56px));
}
.stage-card__legend ul, .summary-card ul {
  margin: 12px 0 0; padding-left: 18px;
  display: grid; gap: 8px;
  color: var(--text-muted); line-height: 1.5;
}
.stage-card__legend li { color: var(--text); }

/* OUTBOUND */
.outbound {
  display: grid;
  grid-template-columns: 1.02fr 1.02fr;
  align-items: stretch;
  gap: 24px;
}
.outbound__media { min-height: 720px; }
.outbound__heading { position: absolute; left: 26px; bottom: 24px; max-width: 520px; }
.outbound__heading h2 { font-size: clamp(3.4rem, 7vw, 5.3rem); }

.results-panel {
  padding: 28px; border-radius: 34px;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(45,55,82,0.92), rgba(27,34,54,0.96));
  display: flex; flex-direction: column;
}
.results-panel__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.results-panel__head h3 { font-size: 1.45rem; line-height: 1.2; }
.results-panel__head p { margin-top: 5px; color: var(--text-muted); font-size: 0.9rem; }
.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  flex: 1;
}
.result-cards .ticket-card:nth-child(1) { grid-column: 1; }
.result-cards .ticket-card:nth-child(2) { grid-column: 2; }
.result-cards .summary-card { grid-column: 1 / -1; }
.ticket-card, .summary-card, .why-card { border-radius: 26px; }
.ticket-card { padding: 20px; }
.summary-card { padding: 20px 22px; }
.why-card { padding: 22px 24px; }
.ticket-card__route {
  color: #8c6619; font-weight: 700;
  letter-spacing: 0.08em; font-size: 0.8rem; text-transform: uppercase;
}
.ticket-card__time { font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 700; line-height: 1.1; }
.ticket-card__meta, .ticket-card__fare, .summary-card p, .why-card p {
  color: var(--text-dark-muted); line-height: 1.6;
}
.ticket-card__fare { font-weight: 700; color: var(--text-dark); }
.ticket-card--muted { opacity: 0.94; }
.summary-card h4, .why-card h4, .resume__overlay h3 { margin-top: 8px; font-size: 1.45rem; line-height: 1.2; }
.glass--summary .primary-button { width: 100%; margin-top: 4px; }

/* CONFIDENCE */
.confidence {
  display: grid;
  grid-template-columns: 1.1fr 0.92fr;
  align-items: center;
  gap: 24px;
}
.confidence__visual { min-height: 720px; background: #080a10; }
.confidence__copy { display: grid; gap: 18px; }
.confidence__copy h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 11ch; }
.confidence__orbits { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.orbit-chip {
  position: absolute; padding: 10px 14px; border-radius: 999px;
  color: var(--text);
  background: rgba(25,18,8,0.5);
  border: 1px solid rgba(255,211,130,0.22);
  white-space: nowrap; font-size: 0.88rem;
}
.orbit-chip:nth-child(1) { left: 7%;  top: 24%; }
.orbit-chip:nth-child(2) { right: 12%; top: 22%; }
.orbit-chip:nth-child(3) { left: 15%;  bottom: 28%; }
.orbit-chip:nth-child(4) { right: 9%;  bottom: 26%; }
.orbit-chip:nth-child(5) { left: 27%;  bottom: 12%; }
.orbit-chip:nth-child(6) { right: 28%; bottom: 10%; }
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.bullet-grid span {
  padding: 13px 16px; border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.93rem; line-height: 1.4;
}

/* MELBOURNE */
.melbourne {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  align-items: stretch;
  gap: 16px;
}
.melbourne__primary { min-height: 600px; }
.melbourne__primary::after {
  background:
    linear-gradient(180deg, rgba(9,12,18,0.05) 0%, rgba(9,12,18,0.12) 45%, rgba(9,12,18,0.58) 100%),
    linear-gradient(90deg, rgba(10,12,18,0.42) 0%, rgba(10,12,18,0.08) 55%, transparent 100%);
}
.melbourne__content {
  position: absolute;
  left: 32px; right: 48px; bottom: 32px;
  display: grid; gap: 14px;
}
.melbourne__content h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.0;
}
.action-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Secondary: image fills full card, info card anchored bottom */
.melbourne__secondary {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 3.5vw, 42px);
  min-height: 0; /* stretch to match primary */
  padding: 0;
}
.melbourne__secondary::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(9,12,18,0.55) 70%, rgba(9,12,18,0.82) 100%);
}
.melbourne__secondary-image {
  position: absolute; inset: 0;
  border-radius: 0;
  overflow: hidden;
}
.melbourne__secondary-card {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
  color: var(--text);
  background: linear-gradient(160deg, rgba(16,22,36,0.86), rgba(10,14,24,0.80));
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: clamp(20px, 2.5vw, 28px);
  padding: 22px 24px 22px;
  display: grid; gap: 8px;
}
.melbourne__secondary-card h4 {
  font-family: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.melbourne__secondary-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin-bottom: 4px; }
.melbourne__secondary-card .mini-label {
  background: rgba(255,255,255,0.10);
  color: rgba(255,248,228,0.88);
  border-color: rgba(255,255,255,0.16);
}
.melbourne__secondary-card .ghost-button {
  margin-top: 4px; width: fit-content;
}

/* RESUME */
.resume {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  align-items: start;
  gap: 24px;
}
.resume__media {
  min-height: 700px;
  border-radius: clamp(28px, 3.5vw, 42px);
  overflow: hidden;
}
.resume__media::after {
  background:
    linear-gradient(180deg, rgba(8,12,20,0.05), rgba(8,12,20,0.18)),
    linear-gradient(90deg, rgba(8,12,20,0.08), rgba(8,12,20,0.24) 55%, rgba(8,12,20,0.10));
}
.resume__overlay {
  position: absolute; left: 28px; top: 28px;
  width: min(540px, calc(100% - 56px));
  display: grid; gap: 12px;
}
.resume__overlay p { color: var(--text-dark-muted); }
.resume__overlay h3 { color: var(--text-dark); }
.resume__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 0;
  height: 700px; /* match left panel */
}
.resume__copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  max-width: 14ch;
  line-height: 1.05;
  flex-shrink: 0;
}
.resume__copy > p { max-width: 38ch; flex-shrink: 0; }
.why-grid {
  display: grid;
  gap: 14px;
  flex: 1;
  align-content: end;
}

/* FOOTER */
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 28px;
  padding: 18px 0 8px;
  display: flex; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  color: rgba(246,241,234,0.66); font-size: 0.88rem;
}

/* PARALLAX */
[data-parallax] { --depth: 0; }
[data-parallax]:hover .scene__media,
[data-parallax]:hover .stage-card__image,
[data-parallax]:hover .melbourne__secondary-image {
  transform: scale(1.05) translate3d(calc(var(--px, 0) * 1px), calc(var(--py, 0) * 1px), 0);
}

/* RESPONSIVE 1200px */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "copy" "booking";
    min-height: auto;
  }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .primary-button--search { grid-column: 1 / -1; }
  .outbound, .confidence, .melbourne, .resume { grid-template-columns: 1fr; }
  .result-cards { grid-template-columns: 1fr; }
  .results-panel { align-self: auto; }
}

/* RESPONSIVE 880px */
@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .main-nav { grid-column: 1 / -1; justify-self: start; }
  .hero__copy h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .stage-card, .stage-card--wide, .stage-card--hero, .outbound__media,
  .confidence__visual, .resume__media, .melbourne__secondary { min-height: 560px; }
  .stage-card__topbar { inset: 18px 18px auto; }
  .stage-card__legend, .outbound__heading, .melbourne__content {
    position: absolute; left: 18px; right: 18px; width: auto; bottom: 18px;
  }
  .resume__overlay { position: absolute; left: 18px; right: 18px; top: 18px; width: auto; }
  .results-panel__head { align-items: flex-start; flex-direction: column; }
  .bullet-grid { grid-template-columns: 1fr; }
}

/* RESPONSIVE 760px */
@media (max-width: 760px) {
  .hero { min-height: auto; }
  .field-grid { grid-template-columns: 1fr; }
  .resume__copy h2 { max-width: none; }
}

/* RESPONSIVE 560px */
@media (max-width: 560px) {
  .site-header { top: 10px; width: calc(100% - 20px); margin-top: 10px; grid-template-columns: 1fr auto; }
  main, .site-footer { width: calc(100% - 20px); }
  .hero, .results-panel, .glass--panel, .glass--floating { padding: 16px; }
  .soft-chip, .ghost-button, .primary-button { font-size: 0.9rem; }
  .hero__copy p, .section-heading p, .outbound__heading p,
  .confidence__copy p, .melbourne__content p, .resume__copy p { font-size: 0.95rem; }
  .confidence__copy h2 { max-width: none; }
}
