@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&amp;display=swap");


/* =====================================================================
           WHO WE ARE — Xplore Australia  ·  An identity manifesto
           Brand palette ONLY (used sparingly):
           --deep-red #B42014 · --mid-red #C82814 · --orange #DC5014
           --teal #00508C · --ocean #14648C
           ===================================================================== */
:root {
  --deep-red: #b42014;
  --mid-red: #c82814;
  --orange: #dc5014;
  --teal: #00508c;
  --ocean: #14648c;

  --ink: #0d1f2d;
  --ink-soft: #41576a;
  --paper: #fbfcfe;
  --paper-2: #f3f7fc;
  --line: rgba(0, 80, 140, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.who {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 90% -10%,
      rgba(220, 80, 20, 0.05),
      transparent 60%),
    radial-gradient(1000px 700px at -4% 108%,
      rgba(0, 80, 140, 0.06),
      transparent 60%),
    linear-gradient(180deg,
      #ffffff 0%,
      var(--paper) 50%,
      var(--paper-2) 100%);
  overflow: hidden;
  padding: 30px;
}

.who::before {
  /* seamless blend with section above */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, var(--paper-2), transparent);
  pointer-events: none;
  z-index: 1;
}

.who-inner {
  position: relative;
  z-index: 3;
  max-width: 1340px;
  margin: 0 auto;
}

/* tiny section marker */
.who-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
}

.who-marker .idx {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.who-marker .lbl {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.who-marker .ln {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------------- SPLIT GRID ---------------- */
.who-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: start;
}

/* ===== LEFT — MASSIVE STATEMENT ===== */
.who-statement {
  position: relative;
}

.who-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-size: clamp(44px, 7.4vw, 116px);
  line-height: 0.92;
  color: var(--ink);
  margin: 0;
}

.who-h2 .line {
  display: block;
  overflow: hidden;
}

.who-h2 .line>span {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.who-h2 .it {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(106deg,
      var(--teal) 0%,
      var(--ocean) 40%,
      var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.who-h2 .quiet {
  color: var(--ink-soft);
}

/* signature line under statement */
.who-sign {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.who-sign .swatch {
  display: flex;
  gap: 6px;
}

.who-sign .swatch i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.who-sign .swatch i:nth-child(1) {
  background: var(--teal);
}

.who-sign .swatch i:nth-child(2) {
  background: var(--ocean);
}

.who-sign .swatch i:nth-child(3) {
  background: var(--orange);
}

.who-sign .swatch i:nth-child(4) {
  background: var(--deep-red);
}

.who-sign .sig-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--ink);
  font-weight: 500;
}

/* ===== RIGHT — IMAGE + NARRATIVE ===== */
.who-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
}

/* magazine-cover image */
.who-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 5/5;
  background: #dfe7ef;
  box-shadow:
    0 40px 90px rgba(13, 31, 45, 0.2),
    0 12px 28px rgba(13, 31, 45, 0.1);
  opacity: 0;
}

.who-figure img {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  will-change: transform;
}

@media (max-width: 767px) {
  .who-figure img {
    inset: -10% -4%;
  }
}

.who-figure .reveal {
  position: absolute;
  inset: 0;
  background: var(--paper);
  z-index: 4;
  transform-origin: bottom;
}

.who-figure .grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.14),
      transparent 22%);
}

/* thin brand keyline at the foot of the image, like a magazine masthead */
.who-figure .mast {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 48px 20px 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(13, 31, 45, 0.82) 0%, rgba(13, 31, 45, 0.45) 55%, transparent 100%);
}

.who-figure .mast .m-l {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65), 0 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.35;
  max-width: 72%;
}

.who-figure .mast .m-r {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  padding-bottom: 1px;
}

/* narrative copy */
.who-narrative {
  opacity: 0;
  transform: translateY(20px);
}

.who-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.who-kicker .bar {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--deep-red));
  border-radius: 2px;
}

.who-narrative p {
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  line-height: 1.74;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 18px;
}

.who-narrative p:last-of-type {
  margin-bottom: 0;
}

.who-narrative .lead-emph {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 24ch;
}

.who-narrative .lead-emph b {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(106deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* closing distinction — the emotional turn */
.who-turn {
  margin-top: 105px;
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.who-turn .t-neg,
.who-turn .t-pos {
  opacity: 0;
  transform: translateY(18px);
}

.who-turn .t-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.who-turn .t-neg .t-tag {
  color: var(--ink-soft);
}

.who-turn .t-pos .t-tag {
  color: var(--orange);
}

.who-turn .t-line {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.06;
}

.who-turn .t-neg .t-line {
  color: rgba(13, 31, 45, 0.38);
}

.who-turn .t-neg .t-line s {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(180, 32, 20, 0.5);
}

.who-turn .t-pos .t-line {
  color: var(--ink);
}

.who-turn .t-pos .t-line em {
  font-style: italic;
  background: linear-gradient(106deg,
      var(--teal),
      var(--ocean) 45%,
      var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.who-turn .arrow {
  display: none;
}

.t-pos {
  margin-top: 20px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1040px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 7vw, 64px);
  }

  .who-aside {
    flex-direction: column;
  }

  .who-figure {
    aspect-ratio: 16/10;
    max-height: 520px;
  }

  .who-h2 {
    font-size: clamp(44px, 11vw, 92px);
  }
}

@media (max-width: 680px) {
  .who-turn {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    margin-top: 40px;
  }

  .who-figure {
    aspect-ratio: 4/3;
  }

  .who-narrative p {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .who-h2 .line>span {
    transform: none !important;
  }

  .who-marker,
  .who-sign,
  .who-figure,
  .who-narrative,
  .who-turn .t-neg,
  .who-turn .t-pos {
    opacity: 1 !important;
    transform: none !important;
  }

  .who-figure .reveal {
    display: none;
  }
}


/* =====================================================================
           SERVICES — command-center · Xplore Australia · single viewport
           Brand palette ONLY:
           --deep-red #B42014 · --mid-red #C82814 · --orange #DC5014
           --teal #00508C · --ocean #14648C
           ===================================================================== */
:root {
  --deep-red: #b42014;
  --mid-red: #c82814;
  --orange: #dc5014;
  --teal: #00508c;
  --ocean: #14648c;
  --ink: #0d1f2d;
  --ink-soft: #41576a;
  --paper: #fbfcfe;
  --paper-2: #eef3f9;
  --line: rgba(0, 80, 140, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-soft:
    0 12px 40px rgba(13, 31, 45, 0.1), 0 3px 10px rgba(13, 31, 45, 0.04);
  --shadow-lift:
    0 34px 80px rgba(13, 31, 45, 0.2),
    0 10px 26px rgba(13, 31, 45, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.svc {
  position: relative;
  min-height: 100vh;
  height: auto;
  max-height: 1140px;
  font-family: var(--font-body);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3.4vh, 46px) clamp(20px, 4vw, 64px);
  background:
    radial-gradient(1100px 560px at 82% -12%,
      rgba(220, 80, 20, 0.06),
      transparent 60%),
    radial-gradient(1000px 640px at 4% 112%,
      rgba(0, 80, 140, 0.07),
      transparent 60%),
    linear-gradient(180deg,
      #ffffff 0%,
      var(--paper) 48%,
      var(--paper-2) 100%);
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 80, 140, 0.04) 1px,
      transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 45% at 50% 16%,
      #000 30%,
      transparent 80%);
  mask-image: radial-gradient(ellipse 70% 45% at 50% 16%,
      #000 30%,
      transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.svc-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ---------------- HEADER ---------------- */
.svc-head {
  flex: 0 0 auto;
  text-align: center;
  margin-bottom: clamp(12px, 2vh, 22px);
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(10px, 1vw, 11.5px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 80, 140, 0.07);
  border: 1px solid rgba(0, 80, 140, 0.16);
  margin-bottom: clamp(8px, 1.3vh, 14px);
  opacity: 0;
  transform: translateY(10px);
}

.svc-eyebrow .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
}

.svc-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1;
  opacity: 0;
  transform: translateY(14px);
}

.svc-h2 .it {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(108deg,
      var(--teal),
      var(--ocean) 44%,
      var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-desc {
  margin: clamp(8px, 1.2vh, 12px) auto 0;
  max-width: 600px;
  font-size: clamp(12.5px, 1.3vw, 15.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(12px);
}

/* ---------------- PILL SELECTOR ---------------- */
.selector {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(7px, 0.9vw, 11px);
  margin-bottom: clamp(14px, 2.2vh, 26px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--ink-soft);
  padding: clamp(8px, 1.1vh, 11px) clamp(14px, 1.5vw, 20px);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 80, 140, 0.12);
  box-shadow: 0 2px 8px rgba(13, 31, 45, 0.04);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateY(10px);
  white-space: nowrap;
}

.pill .pic {
  width: clamp(16px, 1.8vw, 19px);
  height: clamp(16px, 1.8vw, 19px);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.pill .pic svg {
  width: 100%;
  height: 100%;
}

.pill:hover {
  border-color: rgba(220, 80, 20, 0.4);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 31, 45, 0.1);
}

.pill.active {
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0, 80, 140, 0.32);
  transform: translateY(-2px);
}

.pill.active .pic {
  color: #fff;
}

.pill:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ---------------- SHOWCASE CARD ---------------- */
.showcase {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
}

.showcase::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -12%;
  width: 50%;
  height: 75%;
  background: radial-gradient(circle,
      rgba(0, 80, 140, 0.12),
      transparent 70%);
  pointer-events: none;
}

.showcase::after {
  content: "";
  position: absolute;
  bottom: -28%;
  right: -10%;
  width: 48%;
  height: 70%;
  background: radial-gradient(circle,
      rgba(220, 80, 20, 0.11),
      transparent 70%);
  pointer-events: none;
}

/* LEFT — immersive image showcase */
.sc-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: clamp(14px, 1.6vw, 22px);
  background: linear-gradient(160deg,
      rgba(0, 80, 140, 0.05),
      rgba(220, 80, 20, 0.04));
  border-right: 1px solid rgba(0, 80, 140, 0.08);
}

.sc-illu {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 64px rgba(13, 31, 45, 0.26),
    0 10px 24px rgba(13, 31, 45, 0.12);
  background: #1a3346;
  isolation: isolate;
}

/* layered images for crossfade */
.sc-illu .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  will-change: transform, opacity;
  transition:
    opacity 0.7s ease,
    transform 6s ease;
}

@media (max-width: 767px) {
  .sc-illu .ph {
    inset: -27% 0%;
  }
}

.sc-illu .ph.show {
  opacity: 1;
  transform: scale(1);
}

.sc-illu:hover .ph.show {
  transform: scale(1.02);
}

/* gradient + brand tint overlays */
.sc-illu .grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(13, 31, 45, 0.04) 0%,
      rgba(13, 31, 45, 0.12) 46%,
      rgba(13, 31, 45, 0.66) 100%);
}

.sc-illu .btint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.34;
  background: linear-gradient(155deg,
      rgba(0, 80, 140, 0.65),
      transparent 52%,
      rgba(180, 32, 20, 0.55));
}

.sc-illu .sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.16),
      transparent 22%);
}

/* floating glass info card (top-left) */
.sc-illu .floatcard {
  position: absolute;
  z-index: 4;
  top: clamp(14px, 1.6vw, 20px);
  left: clamp(14px, 1.6vw, 20px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(13, 31, 45, 0.18);
  max-width: 78%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sc-illu .floatcard .fc-svc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.sc-illu .floatcard .fc-l1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.05;
  color: var(--ink);
}

.sc-illu .floatcard .fc-l2 {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* floating brand badge (bottom-right) */
.sc-illu .badge {
  position: absolute;
  z-index: 4;
  background: rgba(180, 32, 20, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(180, 32, 20, 0.3);
  bottom: clamp(14px, 1.6vw, 20px);
  right: clamp(14px, 1.6vw, 20px);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sc-illu .badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

/* swap animation for the floating card */
.sc-illu .floatcard.pop {
  animation: fcpop 0.5s ease;
}

@keyframes fcpop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* RIGHT — content */
.sc-body {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.2vh, 42px) clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sc-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}

.sc-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: clamp(10px, 1.6vh, 16px);
}

.sc-desc {
  font-size: clamp(13.5px, 1.4vw, 16.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: clamp(14px, 2.2vh, 24px);
}

.sc-flabel {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: clamp(9px, 1.4vh, 14px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-flabel .bar {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--deep-red));
  border-radius: 2px;
}

.sc-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1.3vh, 13px) clamp(14px, 1.8vw, 26px);
  margin-bottom: clamp(14px, 2.2vh, 24px);
}

.feat {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(12.5px, 1.3vw, 14.5px);
  font-weight: 500;
  color: var(--ink);
}

.feat .ck {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(150deg, var(--teal), var(--deep-red));
}

.feat .ck svg {
  width: 12px;
  height: 12px;
}

/* target markets */
.sc-markets {
  margin-bottom: clamp(14px, 2.2vh, 22px);
}

.sc-markets .m-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}

.sc-markets .m-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sc-markets .m-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(0, 80, 140, 0.06);
  border: 1px solid rgba(0, 80, 140, 0.13);
}

.sc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--deep-red), var(--orange));
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(180, 32, 20, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}

.sc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(180, 32, 20, 0.42);
}

.sc-cta svg {
  width: 16px;
  height: 16px;
}

.sc-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
}

.sc-meta .mdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
}

/* content swap */
.swap {
  animation: swap 0.42s ease;
}

@keyframes swap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .svc {
    height: auto;
    max-height: none;
    min-height: 0;
    padding-bottom: 54px;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .sc-visual {
    border-right: none;
    border-bottom: 1px solid rgba(0, 80, 140, 0.08);
    padding: 18px;
  }

  .sc-illu {
    width: 100%;
    height: clamp(220px, 38vh, 320px);

  }

}

@media (max-width: 520px) {
  .sc-feats {
    grid-template-columns: 1fr;
  }

  .sc-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .sc-cta {
    width: 100%;
    justify-content: center;
  }

  .pill .nm-full {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .svc-eyebrow,
  .svc-h2,
  .svc-desc,
  .pill {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================================
           DESTINATIONS WE COVER — Xplore Australia · single viewport
           Brand palette ONLY:
           --deep-red #B42014 · --mid-red #C82814 · --orange #DC5014
           --teal #00508C · --ocean #14648C
           ===================================================================== */
:root {
  --deep-red: #b42014;
  --mid-red: #c82814;
  --orange: #dc5014;
  --teal: #00508c;
  --ocean: #14648c;
  --ink: #0d1f2d;
  --ink-soft: #41576a;
  --paper: #fbfcfe;
  --paper-2: #eef3f9;
  --line: rgba(0, 80, 140, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-soft:
    0 12px 40px rgba(13, 31, 45, 0.1),
    0 3px 10px rgba(13, 31, 45, 0.04);
  --shadow-lift:
    0 38px 88px rgba(13, 31, 45, 0.24),
    0 12px 28px rgba(13, 31, 45, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dst {
  position: relative;
  height: auto;
  min-height: auto;
  max-height: none;
  font-family: var(--font-body);
  color: var(--ink);
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 3vh, 40px) clamp(20px, 4vw, 60px);
  background:
    radial-gradient(1100px 560px at 24% -12%,
      rgba(0, 80, 140, 0.07),
      transparent 60%),
    radial-gradient(900px 620px at 104% 112%,
      rgba(220, 80, 20, 0.06),
      transparent 60%),
    linear-gradient(180deg,
      #ffffff 0%,
      var(--paper) 50%,
      var(--paper-2) 100%);
}

.dst::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 80, 140, 0.04) 1px,
      transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 48% 60% at 28% 56%,
      #000 30%,
      transparent 78%);
  mask-image: radial-gradient(ellipse 48% 60% at 28% 56%,
      #000 30%,
      transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.dst-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* header */
.dst-head {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(12px, 2vh, 22px);
  flex-wrap: wrap;
}

.dst-headl {
  max-width: 680px;
}

.dst-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(10px, 1vw, 11.5px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 80, 140, 0.07);
  border: 1px solid rgba(0, 80, 140, 0.16);
  margin-bottom: clamp(8px, 1.2vh, 12px);
  opacity: 1;
  transform: none;
}

.dst-eyebrow .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--orange),
      var(--deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
}

.dst-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1;
  opacity: 0;
  transform: translateY(14px);
}

.dst-h2 .it {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(108deg,
      var(--teal),
      var(--ocean) 44%,
      var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dst-count {
  flex: 0 0 auto;
  text-align: right;
  opacity: 0;
  transform: translateY(12px);
}

.dst-count .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  background: linear-gradient(120deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.dst-count .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------------- SPLIT 55 / 45 ---------------- */
.split {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(16px, 2.4vw, 40px);
}

/* ===== LEFT — MAP ===== */
.map-wrap {
  position: relative;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 64% 16%,
      rgba(0, 80, 140, 0.06),
      transparent 56%),
    linear-gradient(160deg, #ffffff, #f1f6fc);
  border: 1px solid rgba(0, 80, 140, 0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.6vw, 24px);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 80, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg,
      rgba(0, 80, 140, 0.04) 1px,
      transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 76% at 52% 48%,
      #000 38%,
      transparent 84%);
  mask-image: radial-gradient(ellipse 80% 76% at 52% 48%,
      #000 38%,
      transparent 84%);
}

.aus {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  overflow: visible;
}

.aus-land {
  fill: url(#landFill);
  stroke: url(#landStroke);
  stroke-width: 2.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 26px 44px rgba(0, 80, 140, 0.18));
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}

.link {
  fill: none;
  stroke: url(#linkGrad);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0;
  stroke-dasharray: var(--l);
  stroke-dashoffset: var(--l);
}

.pin {
  cursor: pointer;
}

.pin .halo {
  fill: rgba(220, 80, 20, 0.2);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.pin .pulse {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

.pin.live .pulse {
  animation: pulse 2.8s ease-out infinite;
}

.pin.major.live .pulse {
  animation-duration: 2.3s;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.5;
  }

  70% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.pin .ring {
  fill: none;
  stroke: var(--deep-red);
  stroke-width: 2;
  opacity: 0;
}

.pin .core {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  filter: drop-shadow(0 4px 10px rgba(180, 32, 20, 0.4));
}

.pin.major .core {
  stroke: var(--deep-red);
}

/* label background pill */
.pin .lbl-bg {
  fill: #ffffff;
  opacity: 0;
  rx: 6;
  filter: drop-shadow(0 1px 3px rgba(13, 31, 45, 0.12));
}

.pin .lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 30px;
  fill: var(--ink);
  opacity: 0;
  paint-order: stroke;
  stroke: #ffffff;
  /* stroke-width: 1px;
                      stroke-linejoin: round; */
  letter-spacing: -0.01em;
  /* filter: drop-shadow(0 1px 4px rgba(13, 31, 45, 0.18)); */
}

.pin.major .lbl {
  font-size: 30px;
  font-weight: 700;
}

.pin:hover .lbl {
  fill: var(--deep-red);
}

.pin:hover .core {
  stroke: var(--deep-red);
  transform: scale(1.15);
}

.pin.active .core {
  fill: var(--orange);
  stroke: var(--deep-red);
  transform: scale(1.2);
}

.pin.active .ring {
  opacity: 0.9;
}

.pin.active .lbl {
  fill: var(--deep-red);
  stroke: #fff;
  stroke-width: 7px;
  font-weight: 800;
  filter: drop-shadow(0 2px 8px rgba(180, 32, 20, 0.28));
}

.pin.active .lbl-bg {
  fill: #fff;
  opacity: 1;
}

.pin:hover .lbl-bg {
  opacity: 0.9;
}

.map-cap {
  position: absolute;
  left: clamp(14px, 1.6vw, 24px);
  bottom: clamp(14px, 1.6vw, 22px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 8px 16px;
  box-shadow: var(--shadow-soft);
}

.map-cap .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--orange),
      var(--deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
}

/* ===== RIGHT — SHOWCASE ===== */
.show {
  position: relative;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #1a3346;
  display: flex;
  flex-direction: column;
}

.show-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.show-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.7s ease,
    transform 7s ease;
  will-change: transform, opacity;
}

.show-img img.show {
  opacity: 1;
  transform: scale(1);
}

.show .grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(13, 31, 45, 0.05) 0%,
      rgba(13, 31, 45, 0.2) 40%,
      rgba(13, 31, 45, 0.74) 78%,
      rgba(13, 31, 45, 0.88) 100%);
}

.show .btint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.32;
  background: linear-gradient(150deg,
      rgba(0, 80, 140, 0.55),
      transparent 52%,
      rgba(180, 32, 20, 0.5));
}

.show .sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.14),
      transparent 20%);
}

/* badge top */
.show-badge {
  position: absolute;
  top: clamp(16px, 2vh, 24px);
  left: clamp(16px, 1.5vw, 24px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(180, 32, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 24px rgba(180, 32, 20, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 15px;
  border-radius: 100px;
}

.show-badge .bd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* floating glass content — expanded now dock is removed */
.show-content {
  position: absolute;
  left: clamp(14px, 1.6vw, 28px);
  right: clamp(14px, 1.6vw, 28px);
  bottom: clamp(14px, 1.6vw, 28px);
  z-index: 3;
  padding: clamp(22px, 1.8vw, 38px) clamp(24px, 1.8vw, 42px);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(155deg,
      rgba(13, 31, 45, 0.46),
      rgba(13, 31, 45, 0.3));
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 30px 70px rgba(13, 31, 45, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd9c2;
  margin-bottom: 7px;
}

.show-name {
  color: #f35a24;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1;
  margin-bottom: clamp(7px, 1.2vh, 14px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.show-desc {
  font-size: clamp(13px, 1.35vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: clamp(12px, 1.8vh, 18px);
  max-width: 48ch;
}

.show-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 40px);
  margin-bottom: clamp(14px, 2vh, 20px);
  align-items: flex-start;
}

.show-block .b-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.show-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px clamp(14px, 1.4vw, 22px);
}

.show-list.single {
  grid-template-columns: 1fr 1fr;
}

.li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.li .ck {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.12));
}

.li .ck svg {
  width: 11px;
  height: 11px;
}

.show-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  background: #fff;
  color: var(--deep-red);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.show-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.show-cta svg {
  width: 15px;
  height: 15px;
}

/* dock removed — map pins are primary navigation */

.swap {
  animation: swap 0.5s ease;
}

@keyframes swap {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .dst {
    height: auto;
    max-height: none;
    min-height: 0;
    padding-bottom: 48px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .map-wrap {
    min-height: 52vh;
  }

  .show {
    min-height: 66vh;
  }

  .pin .lbl {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .dst-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dst-count {
    text-align: left;
  }

  .show-list {
    grid-template-columns: 1fr;
  }

  .show-cta {
    width: 100%;
    justify-content: center;
  }

  .pin .lbl {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .dst-eyebrow,
  .dst-h2,
  .dst-count {
    opacity: 1 !important;
    transform: none !important;
  }

  .aus-land,
  .link {
    stroke-dashoffset: 0 !important;
  }

  .pin .core {
    transform: scale(1) !important;
  }

  .pin .lbl {
    opacity: 1 !important;
  }

  .show-img img.show {
    opacity: 1 !important;
  }
}

/* =====================================================================
                       THE JOURNEY — Xplore Australia  ·  "How we do it"
                       Brand palette ONLY:
                       --deep-red #B42014 · --mid-red #C82814 · --orange #DC5014
                       --teal #00508C · --ocean #14648C
                       ===================================================================== */
:root {
  --deep-red: #B42014;
  --mid-red: #C82814;
  --orange: #DC5014;
  --teal: #00508C;
  --ocean: #14648C;

  --ink: #0d1f2d;
  --ink-soft: #41576a;
  --paper: #fbfcfe;
  --paper-2: #eef3f9;
  --line: rgba(0, 80, 140, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-soft: 0 14px 50px rgba(13, 31, 45, 0.10), 0 3px 10px rgba(13, 31, 45, 0.05);
  --shadow-lift: 0 40px 90px rgba(13, 31, 45, 0.22), 0 10px 26px rgba(13, 31, 45, 0.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important
  }
}


/* =====================================================================
                       STATISTICS — Xplore Australia
                       Brand palette ONLY:
                       --deep-red #B42014 · --mid-red #C82814 · --orange #DC5014
                       --teal #00508C · --ocean #14648C
                       ===================================================================== */
:root {
  --deep-red: #B42014;
  --mid-red: #C82814;
  --orange: #DC5014;
  --teal: #00508C;
  --ocean: #14648C;
  --ink: #0d1f2d;
  --ink-soft: #41576a;
  --ink-muted: #6b8499;
  --paper: #fbfcfe;
  --paper-2: #eef3f9;
  --border: rgba(0, 80, 140, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

/* ── SECTION SHELL ───────────────────────────────────────────────── */
.stats-section {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  padding: clamp(48px, 8vw, 120px) clamp(16px, 4.5vw, 64px);
  overflow: hidden;
}

/* very faint topographic-style dot grid, masked to centre */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 80, 140, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

/* warm ambient glows */
.stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(220, 80, 20, 0.055), transparent 60%),
    radial-gradient(800px 580px at -4% 110%, rgba(0, 80, 140, 0.065), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ── EDITORIAL HEADER ────────────────────────────────────────────── */
.stats-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4.5vw, 50px);
  width: 100%;
}

.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(10px, 1vw, 11.5px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(0, 80, 140, 0.07);
  border: 1px solid rgba(0, 80, 140, 0.16);
  margin-bottom: clamp(16px, 2.2vh, 22px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.stats-eyebrow.visible {
  opacity: 1;
  transform: translateY(0)
}

.stats-eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
  flex: 0 0 auto;
}

.stats-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.022em;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.02;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease .1s, transform .75s cubic-bezier(.2, .8, .2, 1) .1s;
}

.stats-heading.visible {
  opacity: 1;
  transform: translateY(0)
}

.stats-heading .it {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(108deg, var(--teal), var(--ocean) 44%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-sub {
  margin: clamp(14px, 1.8vh, 20px) auto 0;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease .22s, transform .7s cubic-bezier(.2, .8, .2, 1) .22s;
}

.stats-sub.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ── GRID ────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.2vw, 28px);
}

/* ── CARD ────────────────────────────────────────────────────────── */
.stat-card {
  position: relative;
  padding: clamp(28px, 3.4vw, 46px) clamp(24px, 2.8vw, 38px) clamp(24px, 3vw, 40px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow:
    0 2px 6px rgba(13, 31, 45, 0.04),
    0 8px 24px rgba(13, 31, 45, 0.06);
  overflow: hidden;
  cursor: default;
  /* stagger via inline style */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .72s ease var(--delay, .0s),
    transform .72s cubic-bezier(.2, .8, .2, 1) var(--delay, .0s),
    box-shadow .4s ease,
    border-color .4s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.stat-card:hover {
  box-shadow:
    0 4px 10px rgba(13, 31, 45, 0.05),
    0 18px 48px rgba(13, 31, 45, 0.11);
  border-color: rgba(0, 80, 140, 0.18);
  transform: translateY(-4px);
}

/* top accent bar */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 2.8vw, 38px);
  width: clamp(28px, 3.2vw, 40px);
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--teal), var(--ocean));
  opacity: 0;
  transition: opacity .5s ease, width .5s ease;
}

.stat-card:hover::before {
  opacity: 1;
  width: clamp(40px, 5vw, 60px)
}

/* ambient glow */
.stat-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: radial-gradient(circle at 30% 20%, rgba(0, 80, 140, 0.05), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}

.stat-card:hover::after {
  opacity: 1
}

/* icon */
.stat-icon {
  width: clamp(40px, 4.6vw, 52px);
  height: clamp(40px, 4.6vw, 52px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(0, 80, 140, 0.10), rgba(220, 80, 20, 0.08));
  color: var(#ffffff);
  margin-bottom: clamp(18px, 2.4vw, 26px);
  flex: 0 0 auto;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .35s ease, color .35s ease;
}

.stat-icon svg {
  width: 52%;
  height: 52%
}

.stat-card:hover .stat-icon {
  transform: scale(1.08);
  background: linear-gradient(150deg, var(--teal), var(--ocean));
  color: #fff;
}

/* number row */
.stat-num-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(2px, 0.4vw, 5px);
  margin-bottom: clamp(8px, 1.2vw, 12px);
  line-height: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: clamp(38px, 5.4vw, 68px);
  color: var(#fff);
  line-height: .95;
  /* prevent reflow during counting */
  min-width: 2ch;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter .4s ease;
}

.stat-card:hover .stat-num {
  filter: saturate(1.3);
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(#fff);
  padding-top: clamp(4px, 0.6vw, 8px);
  line-height: 1;
  transition: color .35s ease;
}

.stat-card:hover .stat-suffix {
  color: var(#fff)
}

/* label */
.stat-label {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(#fff);
  text-transform: none;
  line-height: 1.4;
  transition: color .35s ease;
}

.stat-card:hover .stat-label {
  color: #fff
}

/* divider */
.stat-divider {
  width: clamp(22px, 2.6vw, 32px);
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--line, rgba(0, 80, 140, 0.20)), transparent);
  margin: clamp(10px, 1.4vw, 14px) 0;
}

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────── */
@media (max-width:980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-header {
    max-width: 100%;
  }
}

@media (max-width:580px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: clamp(22px, 5vw, 32px) clamp(18px, 4.5vw, 28px);
  }

  .stat-num {
    font-size: clamp(36px, 9vw, 52px);
  }

  .stat-suffix {
    font-size: clamp(20px, 5.5vw, 30px);
  }
}

@media (max-width:400px) {
  .stats-section {
    padding-left: clamp(12px, 4vw, 16px);
    padding-right: clamp(12px, 4vw, 16px);
  }
}



/* ═══════════════════════════════════════════════════════════════════
                   PARTNER ENQUIRY — Xplore Australia
                   Fully namespaced (xa-partner-) · safe to embed · no conflicts
                   Brand palette ONLY:
                   #B42014 deep-red · #C82814 mid-red · #DC5014 orange
                   #00508C teal · #14648C ocean
                ═══════════════════════════════════════════════════════════════════ */
#xa-partner-section {
  --xa-deep-red: #B42014;
  --xa-mid-red: #C82814;
  --xa-orange: #DC5014;
  --xa-teal: #00508C;
  --xa-ocean: #14648C;
  --xa-ink: #0d1f2d;
  --xa-ink-soft: #41576a;
  --xa-ink-muted: #6b8499;
  --xa-paper: #fbfcfe;
  --xa-field: #f4f7fb;
  --xa-border: rgba(0, 80, 140, 0.12);
  --xa-font-display: 'Fraunces', Georgia, serif;
  --xa-font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  position: relative;
  box-sizing: border-box;
  font-family: var(--xa-font-body);
  color: var(--xa-ink);
  background: #ffffff;
  overflow: hidden;
  padding: clamp(20px, 0vw, 150px) clamp(21px, 6.5vw, 78px);
  -webkit-font-smoothing: antialiased;
}

#xa-partner-section *,
#xa-partner-section *::before,
#xa-partner-section *::after {
  box-sizing: border-box
}

#xa-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(840px 480px at 92% -10%, rgba(220, 80, 20, 0.05), transparent 60%),
    radial-gradient(760px 540px at -6% 110%, rgba(0, 80, 140, 0.055), transparent 60%);
}

.xa-partner-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* ══════════════════ LEFT — EDITORIAL ══════════════════ */
.xa-partner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(10px, 1vw, 11.5px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--xa-teal);
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(0, 80, 140, 0.07);
  border: 1px solid rgba(0, 80, 140, 0.16);
  margin-bottom: clamp(20px, 3vh, 30px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

.xa-partner-eyebrow.xa-vis {
  opacity: 1;
  transform: translateY(0)
}

.xa-partner-eyebrow .xa-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--xa-orange), var(--xa-deep-red));
  box-shadow: 0 0 0 4px rgba(220, 80, 20, 0.14);
}

.xa-partner-headline {
  font-family: var(--xa-font-display);
  font-weight: 600;
  letter-spacing: -.025em;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .99;
  color: var(--xa-ink);
  margin: 0 0 clamp(20px, 2.8vh, 30px);
}

.xa-hl {
  display: block;
  overflow: hidden
}

.xa-hl-inner {
  display: block;
  transform: translateY(110%);
  transition: transform .84s cubic-bezier(.16, 1, .3, 1)
}

.xa-hl-inner.xa-vis {
  transform: translateY(0)
}

.xa-hl-inner .xa-it {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(108deg, var(--xa-teal), var(--xa-ocean) 42%, var(--xa-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.xa-partner-copy {
  font-size: clamp(14.5px, 1.5vw, 17.5px);
  line-height: 1.7;
  color: var(--xa-ink-soft);
  max-width: 46ch;
  margin: 0 0 clamp(28px, 3.6vh, 40px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease .34s, transform .7s cubic-bezier(.2, .8, .2, 1) .34s;
}

.xa-partner-copy.xa-vis {
  opacity: 1;
  transform: translateY(0)
}

.xa-partner-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vh, 17px) clamp(16px, 2vw, 30px);
}

.xa-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .6s ease var(--xa-bd, 0s), transform .6s cubic-bezier(.2, .8, .2, 1) var(--xa-bd, 0s);
}

.xa-benefit.xa-vis {
  opacity: 1;
  transform: translateX(0)
}

.xa-benefit-check {
  width: clamp(26px, 2.8vw, 32px);
  height: clamp(26px, 2.8vw, 32px);
  border-radius: 9px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(150deg, var(--xa-teal), var(--xa-ocean));
  box-shadow: 0 4px 12px rgba(0, 80, 140, 0.20);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background .35s ease;
}

.xa-benefit-check svg {
  width: 54%;
  height: 54%
}

.xa-benefit:hover .xa-benefit-check {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(180, 32, 20, 0.26);
  background: linear-gradient(150deg, var(--xa-deep-red), var(--xa-orange));
}

.xa-benefit-label {
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 600;
  color: var(--xa-ink);
  letter-spacing: -.005em;
}

/* ══════════════════ RIGHT — FORM CARD ══════════════════ */
.xa-partner-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--xa-border);
  border-radius: 24px;
  padding: clamp(28px, 3.4vw, 46px);
  box-shadow:
    0 2px 8px rgba(13, 31, 45, 0.04),
    0 24px 64px rgba(13, 31, 45, 0.10);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease .15s, transform .8s cubic-bezier(.2, .8, .2, 1) .15s;
}

.xa-partner-card.xa-vis {
  opacity: 1;
  transform: translateY(0)
}

.xa-partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 3.4vw, 46px);
  width: 46px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--xa-deep-red), var(--xa-orange));
}

.xa-partner-card-head {
  margin-bottom: clamp(20px, 2.6vh, 28px)
}

.xa-partner-card-title {
  font-family: var(--xa-font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--xa-ink);
  line-height: 1.05;
  margin: 0 0 7px;
}

.xa-partner-card-note {
  font-size: clamp(12.5px, 1.2vw, 14px);
  color: var(--xa-ink-muted);
  line-height: 1.5;
  margin: 0;
}

.xa-partner-form {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.9vh, 19px)
}

.xa-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 18px)
}

.xa-field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.xa-field-full {
  grid-column: 1/-1
}

.xa-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--xa-ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
}

.xa-label .xa-req {
  color: var(--xa-orange);
  font-weight: 700
}

.xa-input,
.xa-textarea {
  font-family: var(--xa-font-body);
  font-size: clamp(13.5px, 1.3vw, 15px);
  font-weight: 500;
  color: var(--xa-ink);
  background: var(--xa-field);
  border: 1.5px solid transparent;
  border-radius: 13px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease;
  -webkit-appearance: none;
  appearance: none;
}

.xa-input::placeholder,
.xa-textarea::placeholder {
  color: var(--xa-ink-muted);
  font-weight: 400
}

.xa-input:hover,
.xa-textarea:hover {
  background: #eef3f9
}

.xa-input:focus,
.xa-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--xa-teal);
  box-shadow: 0 0 0 4px rgba(0, 80, 140, 0.10);
}

.xa-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55
}

.xa-field.xa-invalid .xa-input,
.xa-field.xa-invalid .xa-textarea {
  border-color: var(--xa-deep-red);
  box-shadow: 0 0 0 4px rgba(180, 32, 20, 0.10);
}

.xa-error {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--xa-deep-red);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height .25s ease, opacity .25s ease;
}

.xa-field.xa-invalid .xa-error {
  height: 30px;
  opacity: 1
}

.xa-partner-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: clamp(4px, 1vh, 8px);
  background: linear-gradient(135deg, var(--xa-deep-red) 0%, var(--xa-orange) 100%);
  color: #fff;
  font-family: var(--xa-font-body);
  font-size: clamp(14px, 1.35vw, 15.5px);
  font-weight: 600;
  letter-spacing: .01em;
  padding: 16px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(180, 32, 20, 0.28), 0 4px 12px rgba(180, 32, 20, 0.18);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease;
}

.xa-partner-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
}

.xa-partner-button:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 24px 54px rgba(180, 32, 20, 0.36), 0 6px 18px rgba(180, 32, 20, 0.22);
}

.xa-partner-button:active {
  transform: translateY(-1px) scale(1.006)
}

.xa-partner-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1)
}

.xa-partner-button:hover svg {
  transform: translateX(4px)
}

.xa-partner-privacy {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--xa-ink-muted);
  line-height: 1.5;
  text-align: center;
}

.xa-partner-privacy strong {
  color: var(--xa-ink-soft);
  font-weight: 600
}

.xa-partner-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 4vh, 40px) 10px;
}

.xa-partner-success.xa-show {
  display: flex;
  animation: xaFade .5s ease
}

@keyframes xaFade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.xa-success-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  background: linear-gradient(150deg, var(--xa-teal), var(--xa-ocean) 55%, var(--xa-deep-red));
  box-shadow: 0 16px 36px rgba(0, 80, 140, 0.28);
}

.xa-success-ring svg {
  width: 30px;
  height: 30px
}

.xa-success-title {
  font-family: var(--xa-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--xa-ink);
  margin-bottom: 8px;
}

.xa-success-text {
  font-size: 14px;
  color: var(--xa-ink-soft);
  line-height: 1.6;
  max-width: 32ch
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width:920px) {
  .xa-partner-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 7vw, 60px)
  }

  .xa-partner-copy {
    max-width: none
  }

  .xa-partner-headline {
    font-size: clamp(34px, 7.6vw, 58px)
  }
}

@media (max-width:560px) {
  .xa-partner-benefits {
    grid-template-columns: 1fr
  }

  .xa-field-row {
    grid-template-columns: 1fr
  }
}

@media (prefers-reduced-motion:reduce) {
  #xa-partner-section * {
    animation: none !important;
    transition: none !important
  }

  .xa-partner-eyebrow,
  .xa-hl-inner,
  .xa-partner-copy,
  .xa-benefit,
  .xa-partner-card {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&amp;family=Inter:wght@300;400;500;600&amp;display=swap');

/* ============ RESET / NAMESPACE ============ */
.xa-footer-root * {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.xa-footer-root {
  --xa-ink: #0D1F2D;
  --xa-ember: #B42014;
  --xa-flame: #C82814;
  --xa-amber: #DC5014;
  --xa-deep: #00508C;
  --xa-tide: #14648C;
  --xa-paper: #F3E9DC;
  --xa-muted: #9DB2C4;
  --xa-display: 'Fraunces', Georgia, serif;
  --xa-body: 'Inter', -apple-system, system-ui, sans-serif;
  position: relative;
  width: 100%;
  background: var(--xa-ink);
  color: var(--xa-paper);
  font-family: var(--xa-body);
  overflow: hidden;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}

/* ============ ATMOSPHERE / SKY ============ */
.xa-footer-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(220, 80, 20, 0.55) 0%, rgba(200, 40, 20, 0.30) 22%, rgba(0, 80, 140, 0.12) 48%, rgba(13, 31, 45, 0) 70%),
    linear-gradient(180deg, #0A1722 0%, #0D1F2D 40%, #10293A 70%, #14384B 100%);
}

.xa-footer-sun {
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 190, 120, 0.95) 0%, rgba(220, 80, 20, 0.65) 30%, rgba(180, 32, 20, 0.18) 60%, rgba(180, 32, 20, 0) 72%);
  filter: blur(2px);
  z-index: 0;
  animation: xa-footer-breathe 9s ease-in-out infinite;
}

@keyframes xa-footer-breathe {

  0%,
  100% {
    opacity: .85;
    transform: translateX(-50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.04)
  }
}

.xa-footer-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ HORIZON SILHOUETTE ============ */
.xa-footer-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.xa-footer-horizon svg {
  width: 100%;
  height: auto;
  display: block
}

.xa-footer-layer-far {
  opacity: .45
}

.xa-footer-layer-mid {
  opacity: .72
}

.xa-footer-reefglow {
  animation: xa-footer-shimmer 6s ease-in-out infinite;
}

@keyframes xa-footer-shimmer {

  0%,
  100% {
    opacity: .35
  }

  50% {
    opacity: .7
  }
}

/* ============ CONTENT WRAP ============ */
.xa-footer-wrap {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) clamp(22px, 5vw, 72px) 40px;
}

/* ============ STATEMENT ============ */
.xa-footer-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--xa-amber);
  font-weight: 500;
  margin-bottom: 34px;
}

.xa-footer-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--xa-amber);
  opacity: .7
}

.xa-footer-statement {
  font-family: var(--xa-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.022em;
  max-width: 16ch;
  color: var(--xa-paper);
}

.xa-footer-statement em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(98deg, var(--xa-amber), var(--xa-flame) 55%, #FFB36B);
  -webkit-background-clip: text;
  background-clip: text;
}

.xa-footer-sub {
  margin-top: 30px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: var(--xa-muted);
  font-weight: 300;
}

/* ============ REVEAL ============ */
.xa-footer-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s cubic-bezier(.16, .8, .24, 1), transform 1.1s cubic-bezier(.16, .8, .24, 1)
}

.xa-footer-reveal.xa-in {
  opacity: 1;
  transform: none
}

.xa-footer-d1 {
  transition-delay: .05s
}

.xa-footer-d2 {
  transition-delay: .18s
}

.xa-footer-d3 {
  transition-delay: .3s
}

.xa-footer-d4 {
  transition-delay: .42s
}

/* ============ PARTNER CTA ============ */
.xa-footer-cta {
  margin-top: 54px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  border: 1px solid rgba(220, 80, 20, .4);
  border-radius: 100px;
  background: rgba(180, 32, 20, .08);
  color: var(--xa-paper);
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .5s cubic-bezier(.16, .8, .24, 1);
  position: relative;
  overflow: hidden;
}

.xa-footer-cta span {
  position: relative;
  z-index: 2;
  transition: color .5s
}

.xa-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(98deg, var(--xa-ember), var(--xa-amber));
  transform: translateX(-101%);
  transition: transform .6s cubic-bezier(.16, .8, .24, 1);
}

.xa-footer-cta:hover::before {
  transform: translateX(0)
}

.xa-footer-cta:hover {
  border-color: transparent;
  transform: translateY(-2px)
}

.xa-footer-cta-arrow {
  position: relative;
  z-index: 2;
  transition: transform .5s
}

.xa-footer-cta:hover .xa-footer-cta-arrow {
  transform: translateX(5px)
}

/* ============ DIVIDER ============ */
.xa-footer-rule {
  height: 1px;
  margin: clamp(64px, 9vw, 120px) 0 56px;
  background: linear-gradient(90deg, transparent, rgba(157, 178, 196, .28) 18%, rgba(157, 178, 196, .28) 82%, transparent);
}

/* ============ NAV GRID ============ */
.xa-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 72px);
}

.xa-footer-brandcol .xa-footer-mark {
  font-family: var(--xa-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--xa-paper);
}

.xa-footer-brandcol .xa-footer-mark sup {
  font-size: .5em;
  color: var(--xa-amber);
  font-weight: 400;
  letter-spacing: .2em;
  top: -1.2em
}

.xa-footer-brandcol p {
  margin-top: 18px;
  max-width: 34ch;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--xa-muted);
  font-weight: 300;
}

.xa-footer-col h4 {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--xa-amber);
  font-weight: 600;
  margin-bottom: 22px;
}

.xa-footer-col ul {
  list-style: none
}

.xa-footer-col li {
  margin-bottom: 13px
}

.xa-footer-col a {
  text-decoration: none;
  color: #C9D6E0;
  font-size: .95rem;
  font-weight: 300;
  position: relative;
  transition: color .35s;
}

.xa-footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--xa-amber);
  transition: width .4s cubic-bezier(.16, .8, .24, 1);
}

.xa-footer-col a:hover {
  color: #fff
}

.xa-footer-col a:hover::after {
  width: 100%
}

/* contact col */
.xa-footer-contact p {
  font-size: .95rem;
  line-height: 1.7;
  color: #C9D6E0;
  font-weight: 300;
  margin-bottom: 14px
}

.xa-footer-contact a {
  color: #C9D6E0;
  text-decoration: none;
  border-bottom: 1px solid rgba(157, 178, 196, .25);
  transition: border-color .35s, color .35s
}

.xa-footer-contact a:hover {
  color: #fff;
  border-color: var(--xa-amber)
}

.xa-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px
}

.xa-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(157, 178, 196, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.16, .8, .24, 1);
}

.xa-footer-social a svg {
  width: 17px;
  height: 17px;
  fill: #C9D6E0;
  transition: fill .4s
}

.xa-footer-social a:hover {
  border-color: var(--xa-amber);
  background: rgba(220, 80, 20, .12);
  transform: translateY(-3px)
}

.xa-footer-social a:hover svg {
  fill: #fff
}

/* ============ CREDO LINE ============ */
.xa-footer-credo {
  margin-top: clamp(60px, 8vw, 100px);
  text-align: center;
}

.xa-footer-credo p {
  font-family: var(--xa-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--xa-paper);
}

.xa-footer-credo p strong {
  font-style: normal;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(98deg, var(--xa-amber), #FFB36B);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ============ LEGAL BAR ============ */
.xa-footer-legal {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(157, 178, 196, .16);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--xa-muted);
  font-weight: 300;
}

.xa-footer-legal nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.xa-footer-legal a {
  color: var(--xa-muted);
  text-decoration: none;
  transition: color .35s
}

.xa-footer-legal a:hover {
  color: #fff
}

/* ============ RESPONSIVE ============ */
@media(max-width:980px) {
  .xa-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 36px
  }

  .xa-footer-brandcol {
    grid-column: 1 / -1
  }
}

@media(max-width:560px) {
  .xa-footer-grid {
    grid-template-columns: 1fr
  }

  .xa-footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px
  }
}

@media(prefers-reduced-motion:reduce) {
  .xa-footer-reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .xa-footer-sun,
  .xa-footer-reefglow {
    animation: none
  }
}

/* =====================================================================
   DESTINATIONS — 3D Interactive Map Experience (from map.html)
   ===================================================================== */

/* CSS variables used by the 3D experience component */
:root {
  --xp-stage: #F7FAFB;
  --xp-surface: #F3F6F9;
  --xp-relief: #D9E3EC;
  --xp-muted: #5B6C7A;
  --xp-faint: #8DA0AE;
  --xp-blue: #00508C;
  --xp-blue-2: #14648C;
  --xp-flame: #C82814;
  --xp-ember: #B42014;
  --xp-hairline: rgba(16, 48, 80, .14);
  --xp-hairline-soft: rgba(16, 48, 80, .08);
  --xp-grad-brand: linear-gradient(120deg, #B42014 0%, #C82814 46%, #DC5014 100%);
  --xp-serif: Georgia, 'Times New Roman', Times, serif;
  --xp-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --xp-shadow-card: 0 24px 60px -28px rgba(16, 48, 80, .28);
}

/* simple eyebrow label used inside .xp-head */
.xp-head .eyebrow {
  font: 600 11px/1 var(--xp-sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--xp-blue);
}

/* 3D EXPERIENCE */
.xp {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  background: var(--xp-stage);
  border-top: 1px solid var(--xp-hairline-soft);
  border-bottom: 1px solid var(--xp-hairline-soft);
}

/* left: stage */
.xp-stage {
  position: relative;
  flex: 1 1 58%;
  min-width: 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.xp-canvas {
  position: absolute;
  inset: 0
}

.xp-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  outline: none
}

.xp-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(120% 90% at 50% 42%, transparent 62%, rgba(16, 48, 80, .06) 100%);
}

.xp-veil {
  position: absolute;
  inset: 0;
  background: var(--xp-stage);
  z-index: 9;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.3s ease;
}

.xp.is-revealed .xp-veil {
  opacity: 0
}

/* header over stage */
.xp-head {
  position: absolute;
  top: clamp(26px, 4.6vh, 52px);
  left: clamp(22px, 3.8vw, 56px);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease .15s, transform 1s ease .15s;
}

.xp.is-ui .xp-head {
  opacity: 1;
  transform: none
}

.xp-head h2 {
  margin-top: 16px;
  font: 400 clamp(28px, 3vw, 46px)/1.12 var(--xp-serif);
  color: var(--ink);
  letter-spacing: .005em;
}

.xp-head h2 em {
  font-style: italic;
  color: var(--xp-blue)
}

/* destination index */
.xp-index {
  position: absolute;
  /* left: clamp(22px, 3.8vw, 56px); */
  /* bottom: calc(clamp(24px, 5.5vh, 52px) + 54px); */
  z-index: 6;
  list-style: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease .3s, transform 1s ease .3s;
  margin: 0;
  padding: 0;
  bottom: 70px;
  left: 42px;
}

.xp.is-ui .xp-index {
  opacity: 1;
  transform: none
}

.xp-index button {
  display: flex;
  align-items: baseline;
  gap: 14px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
  font: 600 11px/1 var(--xp-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--xp-muted);
  transition: color .3s ease;
}

.xp-index .num {
  font: italic 400 12px/1 var(--xp-serif);
  letter-spacing: .06em;
  color: var(--xp-blue);
  opacity: .65;
  min-width: 22px;
  transition: color .3s, opacity .3s;
}

.xp-index .nm {
  position: relative;
  padding-bottom: 3px
}

.xp-index .nm::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--xp-grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.xp-index button:hover,
.xp-index button.is-hot {
  color: var(--xp-blue-2)
}

.xp-index button.is-active {
  color: var(--ink)
}

.xp-index button.is-active .num {
  color: #DC5014;
  opacity: 1
}

.xp-index button.is-active .nm::after,
.xp-index button:hover .nm::after {
  transform: scaleX(1)
}

/* overview button */
.btn-overview {
  position: absolute;
  left: 30px;
  bottom: 15px;
  z-index: 6;
  background: #fff;
  cursor: pointer;
  border: 1px solid var(--xp-hairline);
  color: var(--xp-blue);
  font: 600 10px/1 var(--xp-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease, border-color .3s, color .3s, box-shadow .3s;
}

.btn-overview.show {
  opacity: 1;
  pointer-events: auto;
  transform: none
}

.btn-overview:hover {
  border-color: var(--xp-blue-2);
  color: var(--xp-blue-2);
  box-shadow: 0 10px 24px -14px rgba(0, 80, 140, .45)
}

/* hint */
.xp-hint {
  position: absolute;
  right: clamp(22px, 3vw, 44px);
  bottom: clamp(24px, 5.5vh, 52px);
  z-index: 5;
  pointer-events: none;
  text-align: right;
  font: 600 10px/1.9 var(--xp-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--xp-faint);
  opacity: 0;
  transition: opacity 1.2s ease .6s;
}

.xp.is-ui .xp-hint {
  opacity: .9
}

/* floating labels */
.xp-labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden
}

.xp-labels .lbl {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  font: 600 10px/1 var(--xp-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 0 #fff, 0 0 14px rgba(255, 255, 255, .95), 0 0 4px rgba(255, 255, 255, .9);
  opacity: 0;
  transition: opacity .45s ease, color .3s ease;
  white-space: nowrap;
}

.xp-labels .lbl.on {
  opacity: .62
}

.xp-labels .lbl.on.is-hot {
  opacity: 1;
  color: var(--xp-blue-2)
}

.xp-labels .lbl.on.is-act {
  opacity: 1;
  color: #DC5014
}

.lbl.on.is-dim {
  opacity: .22
}

.lbl.off {
  opacity: 0
}

/* right: media + dossier */
.xp-side {
  position: relative;
  z-index: 3;
  flex: 0 0 42%;
  max-width: 620px;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--xp-hairline-soft);
  box-shadow: -24px 0 60px -48px rgba(16, 48, 80, .25);
}

.media {
  position: relative;
  flex: 3 1 0;
  min-height: 240px;
  overflow: hidden;
  background: #E8EEF4;
}

.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
}

.media img.show {
  opacity: 1
}

@keyframes kenburns {
  from {
    transform: scale(1.0)
  }

  to {
    transform: scale(1.04)
  }
}

.media img.show {
  animation: kenburns 14s ease-out forwards
}

.media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: var(--xp-grad-brand);
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.media-fallback.show {
  opacity: 1
}

.media-fallback span {
  font: italic 400 clamp(34px, 3.4vw, 52px)/1 var(--xp-serif);
  color: rgba(255, 255, 255, .92);
}

.media-scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 24, 36, .42), transparent);
}

.media-meta {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #fff;
}

.media-meta .m-num {
  font: italic 400 15px/1 var(--xp-serif);
  opacity: .85
}

.media-meta .m-region {
  font: 600 10px/1 var(--xp-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9
}

/* ─── PREMIUM DOSSIER PANEL ──────────────────────────────────────── */
.xp-side .panel {
  width: 100%;
  flex: 2 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.8vw, 26px) clamp(22px, 2.4vw, 36px);
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 1px solid var(--xp-hairline-soft);
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 48, 80, .12) transparent;
}

/* destination label */
.xp-side .panel-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 9.5px/1 var(--xp-sans);
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--xp-blue);
}

.xp-side .panel-kicker::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--xp-ember);
}

/* headline */
.xp-side .panel-name {
  margin-top: 10px;
  font: 400 clamp(20px, 1.75vw, 28px)/1.1 var(--xp-serif);
  color: var(--ink);
  letter-spacing: -.01em;
}

/* description */
.xp-side .panel-desc {
  margin-top: 8px;
  color: var(--xp-muted);
  font: 400 13px/1.65 var(--xp-sans);
  max-width: 44ch;
}

/* KEY EXPERIENCES header */
.panel-xp-bar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-xp-rule {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--xp-ember);
}

.panel-xp-tag {
  font: 700 8px/1 var(--xp-sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--xp-ember);
}

/* experience cards list */
.xp-side .panel-cards {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* individual premium card */
.xp-side .panel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--xp-surface);
  border: 1px solid var(--xp-hairline-soft);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: default;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.xp-side .panel-card:hover {
  background: #fff;
  border-color: rgba(16, 48, 80, .15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -10px rgba(16, 48, 80, .18);
}

/* icon box — dark gradient rounded square */
.xp-side .panel-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #1d3a56 0%, #0c1f32 100%);
  color: rgba(255, 255, 255, .9);
}

.xp-side .panel-card:nth-child(2) .panel-card-icon {
  background: linear-gradient(140deg, #c82814 0%, #7a1510 100%);
}

.xp-side .panel-card-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

/* card label */
.xp-side .panel-card-text {
  font: 400 13px/1.3 var(--xp-sans);
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

/* CTA */
.xp-side .panel-cta {
  margin-top: 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--xp-grad-brand);
  color: #fff;
  text-decoration: none;
  font: 700 11px/1 var(--xp-sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 15px 22px;
  border-radius: 2px;
  box-shadow: 0 14px 30px -16px rgba(200, 40, 20, .55);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.xp-side .panel-cta::after {
  content: "\2192";
  font-size: 13px;
  transform: translateY(-1px);
}

.xp-side .panel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -16px rgba(200, 40, 20, .6);
  filter: saturate(1.06);
}

/* ─── EXPLORE DESTINATION CTA ─────────────────────────────────────── */
.dst-explore-btn {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #B42014 0%, #C82814 50%, #DC5014 100%);
  color: #fff;
  text-decoration: none;
  font: 600 10.5px/1 var(--xp-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 22px -6px rgba(180, 32, 20, .42), 0 2px 6px rgba(0, 0, 0, .07);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dst-explore-btn span {
  font-size: 15px;
  display: inline-block;
  transition: transform .3s ease;
}

.dst-explore-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(180, 32, 20, .52), 0 4px 10px rgba(0, 0, 0, .1);
  filter: saturate(1.08) brightness(1.04);
}

.dst-explore-btn:hover span {
  transform: translateX(4px);
}

/* ─── STAGGER REVEAL ──────────────────────────────────────────────── */

@keyframes xp-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.xp-side .panel-card {
  animation: xp-card-in .45s ease both;
}

.xp-side .panel-card:nth-child(1) {
  animation-delay: .18s;
}

.xp-side .panel-card:nth-child(2) {
  animation-delay: .26s;
}

.xp-side .panel-card:nth-child(3) {
  animation-delay: .34s;
}

/* ─── CONTENT SWITCHING ───────────────────────────────────────────── */

.xp-side.switching .panel-kicker,
.xp-side.switching .panel-name,
.xp-side.switching .panel-desc,
.xp-side.switching .panel-xp-bar,
.xp-side.switching .panel-cta {
  opacity: 0;
  transform: translateY(7px);
}

.xp-side .panel-kicker,
.xp-side .panel-name,
.xp-side .panel-desc,
.xp-side .panel-xp-bar,
.xp-side .panel-cta {
  transition: opacity .32s ease, transform .32s ease;
}

.xp-side.switching .media-meta {
  opacity: 0;
}

.media-meta {
  transition: opacity .3s ease;
}

/* fallback (no WebGL) */
.fallback {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(26px, 5vw, 64px);
  background: var(--xp-stage);
}

.fallback h3 {
  font: 400 clamp(24px, 2.6vw, 38px)/1.25 var(--xp-serif);
  color: var(--ink);
  max-width: 24ch
}

.fallback p {
  color: var(--xp-muted);
  font: 400 14px/1.7 var(--xp-sans);
  max-width: 52ch
}

.xp.no3d .fallback {
  display: flex
}

.xp.no3d .xp-canvas,
.xp.no3d .xp-hint,
.xp.no3d .xp-veil,
.xp.no3d .xp-index,
.xp.no3d .btn-overview,
.xp.no3d .xp-labels,
.xp.no3d .xp-head {
  display: none
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */

/* laptop 1024–1365: side-by-side preserved, minor proportional tightening */
@media (min-width:1024px) and (max-width:1365px) {
  .xp-side {
    flex-basis: 40%;
    min-width: 360px
  }

  .xp-head h2 {
    font-size: clamp(26px, 2.6vw, 40px)
  }
}

/* tablet ≤1023px: vertical stack — map stage then info panel */
@media (max-width:1023px) {

  /* outer container: auto-height column stack */
  .xp {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0
  }

  /* map stage: fixed height so canvas is always visible */
  .xp-stage {
    position: relative;
    flex: 0 0 auto;
    height: 52vh;
    min-height: 380px;
    overflow: hidden
  }

  /* heading overlay — capped width so btn-overview can sit in the opposite corner */
  .xp-head {
    top: clamp(18px, 2.8vh, 32px);
    left: clamp(18px, 3vw, 36px);
    max-width: 56%
  }

  .xp-head .eyebrow {
    font-size: 10px
  }

  .xp-head h2 br {
    display: none
  }

  .xp-head h2 {
    margin-top: 12px;
    font-size: clamp(20px, 3vw, 32px)
  }

  /* destination index: horizontal wrap anchored to BOTTOM of stage */
  .xp-index {
    top: auto;
    bottom: 18px;
    left: clamp(18px, 3vw, 36px);
    display: flex;
    flex-wrap: wrap;
    gap: 2px 14px;
    max-width: calc(100% - 36px);
  }

  .xp-index button {
    padding: 4px 0;
    font-size: 10px;
    letter-spacing: .2em;
    gap: 10px
  }

  .xp-index .num {
    min-width: 18px
  }

  /* overview btn: top-RIGHT corner — directly opposite the heading */
  .btn-overview {
    top: clamp(18px, 2.8vh, 32px);
    right: clamp(18px, 3vw, 36px);
    bottom: auto;
    left: auto;
    font-size: 9.5px;
    padding: 10px 16px;
    transform: translateY(-8px);
  }

  .btn-overview.show {
    transform: none
  }

  /* hide hint, dim labels — only active/hover label stays visible */
  .xp-hint {
    display: none
  }

  .lbl.on {
    opacity: 0
  }

  .lbl.on.is-hot,
  .lbl.on.is-act {
    opacity: 1
  }

  /* info panel: full-width block directly below stage */
  .xp-side {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    border-left: 0;
    border-top: 1px solid var(--xp-hairline-soft);
    box-shadow: none;
  }

  /* destination image: explicit height prevents white-block collapse */
  .media {
    flex: 0 0 auto;
    height: 38vh;
    min-height: 240px;
    overflow: hidden
  }

  /* panel: auto height, scrollable */
  .xp-side .panel {
    flex: 0 0 auto;
    overflow-y: auto;
    padding: 20px 24px 26px;
    min-height: 0;
  }

  .xp-side .panel-card {
    padding: 11px 13px;
  }
}

/* mobile ≤767px: compact stage, vertical index at stage bottom-left, btn below head */
@media (max-width:767px) {

  /* shorter stage */
  .xp-stage {
    height: 46vh;
    min-height: 300px
  }

  /* smaller head — capped so there is room below for the btn-overview */
  .xp-head {
    top: 14px;
    left: 16px;
    max-width: 58%
  }

  .xp-head .eyebrow {
    font-size: 9px;
    letter-spacing: .26em
  }

  .xp-head h2 {
    font-size: clamp(17px, 4.5vw, 22px);
    margin-top: 8px
  }

  /* index: compact vertical list anchored to bottom-left */
  .xp-index {
    bottom: 14px;
    left: 16px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 52%;
  }

  .xp-index button {
    padding: 2px 0;
    font-size: 8.5px;
    letter-spacing: .13em;
    gap: 6px
  }

  .xp-index .num {
    font-size: 9px;
    min-width: 14px
  }

  .xp-index .nm::after {
    height: 1px
  }

  /* overview btn: right side, below head — avoids the wide h2 at the same vertical level */
  .btn-overview {
    top: 72px;
    right: 16px;
    left: auto;
    bottom: auto;
    font-size: 8px;
    letter-spacing: .22em;
    padding: 8px 12px;
    transform: translateY(-8px);
  }

  .btn-overview.show {
    transform: none;
    position: absolute;
    top: 5px;
    right: 5px;
  }

  /* smaller image */
  .media {
    height: 32vh;
    min-height: 200px
  }

  /* tighter panel */
  .xp-side .panel {
    padding: 14px 16px 20px;
  }

  .xp-side .panel-name {
    font-size: clamp(18px, 4.5vw, 22px);
    margin-top: 7px;
  }

  .xp-side .panel-desc {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
  }

  .panel-xp-bar {
    margin-top: 12px;
  }

  .xp-side .panel-cards {
    gap: 5px;
    margin-top: 8px;
  }

  .xp-side .panel-card {
    gap: 11px;
    padding: 9px 11px;
    border-radius: 8px;
  }

  .xp-side .panel-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .xp-side .panel-card-icon svg {
    width: 15px;
    height: 15px;
  }

  .xp-side .panel-card-text {
    font-size: 11.5px;
  }

  .xp-side .panel-cta {
    margin-top: 10px;
    padding: 11px 16px;
    font-size: 10px;
  }

  .dst-explore-btn {
    bottom: 60px;
    right: 16px;
    padding: 11px 20px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .media img.show {
    animation: none;
    transform: none;
  }

  .xp-side .panel-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =====================================================================
   HEADER — mobile off-canvas menu override
   Scoped strictly to header.style-3. Desktop untouched.
   ===================================================================== */

/* Hide Contact Us button on mobile/tablet — desktop keeps it */
@media (max-width: 1199px) {
  header.style-3 .nav-right .search-and-login {
    display: none !important;
  }
}

/* Full-width premium off-canvas drawer */
@media only screen and (max-width: 1199px) {

  /*
   * ROOT CAUSE FIX:
   * transform and backdrop-filter on an ancestor both create a new containing
   * block for position:fixed descendants. The header.style-3.two has both,
   * so .main-menu's position:fixed is relative to the header (95vw wide,
   * offset left:50%) rather than the viewport. This causes the white strip,
   * offset positioning, horizontal scroll, and collapsed apparent width.
   * Neutralising both at mobile restores viewport-relative fixed positioning.
   */
  header.style-3.two {
    transform: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    top: 0 !important;
    z-index: 999 !important;
  }

  /* .main-menu is now viewport-relative — expand to full screen */
  header.style-3 .main-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    border-right: none !important;
    box-shadow:
      0 24px 64px rgba(13, 31, 45, 0.18),
      0 4px 16px rgba(13, 31, 45, 0.08) !important;
    padding: 32px 28px 40px !important;
    z-index: 100000 !important;
    overflow-x: hidden !important;
  }

  /* Menu list — generous vertical breathing room */


  header.style-3 .main-menu .menu-list {
    padding-top: 32px !important;
    padding-bottom: 28px !important;

  }

  /* Nav links — large, editorial, easy to tap */
  header.style-3 .main-menu>ul>li>a {
    font-size: clamp(20px, 5.5vw, 28px) !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(13, 31, 45, 0.07) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background-color: transparent !important;
    letter-spacing: 0.01em;
    font-weight: 600;
    color: var(--title-color) !important;
  }

  /* Last nav item — remove separator */
  header.style-3 .main-menu>ul>li:last-child>a {
    border-bottom: none !important;
  }

  /* Mobile-logo bar inside the drawer */
  header.style-3 .mobile-logo-area {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(13, 31, 45, 0.08);
    margin-bottom: 4px;
  }

  /* Contact-in-drawer — spacing */
  header.style-3 .main-menu .contact-area {
    margin-bottom: 0;
    padding-top: 4px;
  }
}

/* Css by aryan */

@media (max-width: 767px) {
  .who-figure .mast .m-l {
    font-size: 14.5px;
  }

  .who-figure .mast .m-r {
    font-size: 8.5px;
  }
}

@media (min-width: 1024px) {
  .menu-list {
    padding-left: 160px !important;
  }
}


/* =====================================================================
   AUSTRALIA JOURNAL — Editorial Blog Slider
   ===================================================================== */

.aj {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 10% 0%, rgba(0, 80, 140, 0.04), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(220, 80, 20, 0.03), transparent 60%),
    linear-gradient(180deg, var(--paper-2) 0%, #ffffff 40%, var(--paper) 100%);
  overflow: hidden;
  padding: 60px 0 30px;
}

.aj-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── HEADER ─── */
.aj-head {
  text-align: center;
  margin-bottom: 64px;
}

.aj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.aj-eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

.aj-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.aj-h2 .it {
  font-style: italic;
  color: var(--teal);
}

.aj-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SLIDER WRAPPER ─── */
.aj-slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.aj-slider-wrap:active {
  cursor: grabbing;
}

.aj-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.aj-track.aj-dragging {
  transition: none;
}

/* ─── CARD ─── */
.aj-card {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(13, 31, 45, 0.04),
    0 12px 40px rgba(13, 31, 45, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.aj-card.aj-visible {
  opacity: 1;
  transform: translateY(0);
}

.aj-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 20px rgba(13, 31, 45, 0.08),
    0 24px 60px rgba(13, 31, 45, 0.12);
}

/* ─── CARD IMAGE ─── */
.aj-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.aj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aj-card:hover .aj-img-wrap img {
  transform: scale(1.08);
}

.aj-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 31, 45, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── CARD BODY ─── */
.aj-body {
  padding: 28px 28px 32px;
}

.aj-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}

.aj-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
  display: inline-block;
}

.aj-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.aj-card:hover .aj-title {
  color: var(--teal);
}

.aj-excerpt {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ─── ARROWS ─── */
.aj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(13, 31, 45, 0.08);
}

.aj-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.aj-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.aj-arrow:hover svg {
  color: #fff;
}

.aj-prev {
  left: -26px;
}

.aj-next {
  right: -26px;
}

/* ─── DOTS ─── */
.aj-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.aj-dots .aj-dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.aj-dots .aj-dot-btn.active {
  background: var(--teal);
  width: 32px;
  border-radius: 100px;
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  .aj {
    padding: 90px 0 80px;
  }

  .aj-inner {
    padding: 0 32px;
  }

  .aj-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }

  .aj-track {
    gap: 32px;
  }

  .aj-prev {
    left: -10px;
  }

  .aj-next {
    right: -10px;
  }

  .aj-head {
    margin-bottom: 48px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .aj {
    padding: 72px 0 64px;
  }

  .aj-inner {
    padding: 0 20px;
  }

  .aj-card {
    flex: 0 0 100%;
  }

  .aj-track {
    gap: 20px;
  }

  .aj-h2 {
    font-size: 28px;
  }

  .aj-sub {
    font-size: 15px;
  }

  .aj-body {
    padding: 22px 22px 26px;
  }

  .aj-title {
    font-size: 19px;
  }

  .aj-arrow {
    width: 42px;
    height: 42px;
  }

  .aj-arrow svg {
    width: 16px;
    height: 16px;
  }

  .aj-prev {
    left: 4px;
  }

  .aj-next {
    right: 4px;
  }

  .aj-head {
    margin-bottom: 36px;
  }

  .aj-dots {
    margin-top: 32px;
  }
}

/* =====================================================================
   HOMEPAGE BLOG — Card Link + View All CTA
   ===================================================================== */
a.aj-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.aj-cta-row {
  text-align: center;
  margin-top: 48px;
}

.aj-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  padding: 14px 36px;
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.aj-view-all:hover {
  background: var(--teal);
  color: #fff;
}

/* =====================================================================
   BLOG DETAIL PAGE
   ===================================================================== */

/* Skeleton */
.bd-skeleton {
  max-width: 860px;
  margin: 120px auto 80px;
  padding: 0 24px;
}

.bd-skeleton-hero { margin-bottom: 40px; }

.bd-skeleton-bar {
  background: linear-gradient(90deg, #f0f2f5 25%, #e8ebef 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
  height: 16px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.bd-skeleton-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #f0f2f5 25%, #e8ebef 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 16px;
  margin-bottom: 40px;
}

.bd-skeleton-body {
  max-width: 720px;
}

/* Error */
.bd-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 24px;
}

.bd-error-inner {
  text-align: center;
}

.bd-error-inner h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 24px 0 12px;
  color: var(--ink);
}

.bd-error-inner p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.bd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.bd-back-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* Container */
.bd-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb */
.bd-breadcrumb {
  padding: 100px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.bd-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.bd-breadcrumb a:hover {
  color: var(--teal);
}

.bd-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.bd-current {
  color: var(--ink);
  font-weight: 500;
}

/* Hero */
.bd-hero {
  padding: 36px 0 0;
}

.bd-hero-inner {
  max-width: 860px;
}

.bd-category-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bd-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}

.bd-standfirst {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 28px;
}

.bd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.bd-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  flex-shrink: 0;
}

.bd-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.bd-avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 22px;
}

.bd-author-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}

.bd-publish-info {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}

/* Share buttons */
.bd-share {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.bd-share-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Featured Image */
.bd-featured-wrap {
  padding: 40px 0;
}

.bd-featured-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 1080px;
  margin: 0 auto;
}

.bd-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article grid */
.bd-article-grid {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Prose styles */
.bd-prose {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}

.bd-prose h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 48px 0 16px;
  color: var(--ink);
}

.bd-prose h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 12px;
}

.bd-prose p {
  margin-bottom: 20px;
}

.bd-prose img {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}

.bd-prose ul, .bd-prose ol {
  margin: 16px 0 20px 24px;
}

.bd-prose li {
  margin-bottom: 8px;
}

.bd-prose blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-soft);
}

.bd-prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bd-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.bd-prose th, .bd-prose td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.bd-prose th {
  background: var(--paper-2);
  font-weight: 600;
}

.bd-prose pre {
  background: var(--ink);
  color: #e8ebef;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
}

.bd-prose hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* Tags */
.bd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.bd-tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--paper-2);
  color: var(--ink-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.bd-tag-pill:hover {
  background: var(--teal);
  color: #fff;
}

/* Author card */
.bd-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--paper-2);
  border-radius: 16px;
  margin-top: 40px;
}

.bd-author-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bd-author-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-author-card-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}

.bd-author-card-role {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

/* Related Posts */
.bd-related {
  background: var(--paper-2);
  padding: 72px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.bd-related-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.bd-related-eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

.bd-related-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--ink);
}

.bd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bd-related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(13,31,45,0.04), 0 8px 32px rgba(13,31,45,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bd-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(13,31,45,0.08), 0 20px 48px rgba(13,31,45,0.12);
}

.bd-related-card-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.bd-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bd-related-card:hover .bd-related-card-img img {
  transform: scale(1.06);
}

.bd-related-card-body {
  padding: 20px 22px 24px;
}

.bd-related-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.2s;
}

.bd-related-card:hover h3 {
  color: var(--teal);
}

/* Newsletter CTA */
.bd-newsletter {
  padding: 24px 0 80px;
}

.bd-newsletter-inner {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3548 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}

.bd-newsletter-inner h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.bd-newsletter-inner p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 28px;
}

.bd-newsletter-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bd-newsletter-btn:hover {
  background: var(--teal);
  color: #fff;
}

/* =====================================================================
   BLOG LISTING PAGE
   ===================================================================== */

.bl-hero {
  background: linear-gradient(180deg, #fff 0%, var(--paper-2) 100%);
  padding: 120px 0 48px;
  text-align: center;
}

.bl-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.bl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.bl-eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.bl-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.bl-hero-h1 .it {
  font-style: italic;
  color: var(--teal);
}

.bl-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Search */
.bl-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 28px;
}

.bl-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.bl-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.bl-search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,80,140,0.1);
}

.bl-search-input::placeholder {
  color: var(--ink-soft);
  opacity: 0.6;
}

/* Category pills */
.bl-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.bl-cat-pill {
  padding: 8px 20px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bl-cat-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.bl-cat-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* Featured section */
.bl-featured {
  padding: 16px 0 0;
}

.bl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bl-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(13,31,45,0.06), 0 16px 48px rgba(13,31,45,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bl-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13,31,45,0.1), 0 24px 64px rgba(13,31,45,0.14);
}

.bl-featured-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.bl-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bl-featured-card:hover .bl-featured-img img {
  transform: scale(1.05);
}

.bl-featured-body {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bl-featured-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.bl-featured-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.bl-featured-card:hover h2 {
  color: var(--teal);
}

.bl-featured-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.bl-read-more {
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  margin-top: auto;
}

/* Blog grid */
.bl-listing {
  padding: 56px 0;
}

.bl-listing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.bl-listing-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.bl-count {
  font-size: 14px;
  color: var(--ink-soft);
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bl-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(13,31,45,0.04), 0 8px 32px rgba(13,31,45,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(13,31,45,0.08), 0 20px 48px rgba(13,31,45,0.12);
}

.bl-card-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--paper-2);
}

.bl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bl-card:hover .bl-card-img img {
  transform: scale(1.06);
}

.bl-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bl-card-body {
  padding: 20px 24px 24px;
}

.bl-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.bl-card:hover .bl-card-title {
  color: var(--teal);
}

.bl-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Skeleton cards */
.bl-skeleton-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,31,45,0.04);
}

.bl-skeleton-card .bl-skeleton-img {
  aspect-ratio: 16/11;
  background: linear-gradient(90deg, #f0f2f5 25%, #e8ebef 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.bl-skeleton-card .bl-skeleton-body {
  padding: 20px 24px 24px;
}

/* Empty state */
.bl-empty {
  text-align: center;
  padding: 60px 24px;
}

.bl-empty-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--ink);
}

.bl-empty p {
  color: var(--ink-soft);
}

/* Pagination */
.bl-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.bl-page-btn {
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.bl-page-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.bl-page-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* =====================================================================
   RESPONSIVE — Blog Detail & Listing
   ===================================================================== */

@media (max-width: 1024px) {
  .bd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bl-featured-card {
    grid-template-columns: 1fr;
  }

  .bl-featured-body {
    padding: 28px 28px 32px;
  }
}

@media (max-width: 768px) {
  .bd-breadcrumb {
    padding-top: 80px;
    font-size: 12px;
  }

  .bd-title {
    font-size: 28px;
  }

  .bd-standfirst {
    font-size: 16px;
  }

  .bd-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bd-featured-img {
    border-radius: 12px;
  }

  .bd-prose {
    font-size: 16px;
  }

  .bd-prose h2 {
    font-size: 24px;
  }

  .bd-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bd-related-heading {
    font-size: 26px;
  }

  .bd-newsletter-inner {
    padding: 40px 24px;
  }

  .bd-newsletter-inner h3 {
    font-size: 24px;
  }

  .bl-hero {
    padding: 90px 0 32px;
  }

  .bl-hero-h1 {
    font-size: 28px;
  }

  .bl-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bl-listing {
    padding: 36px 0;
  }

  .bl-featured-body h2 {
    font-size: 22px;
  }

  .bl-categories {
    gap: 6px;
  }

  .bl-cat-pill {
    padding: 6px 14px;
    font-size: 12px;
  }

  .bd-share {
    gap: 6px;
  }

  .bd-share-btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  .bd-skeleton {
    margin-top: 80px;
  }

  .aj-cta-row {
    margin-top: 32px;
  }

  .aj-view-all {
    font-size: 14px;
    padding: 12px 28px;
  }

  .bl-page-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .bd-title {
    font-size: 24px;
  }

  .bd-featured-wrap {
    padding: 24px 0;
  }

  .bd-featured-img {
    border-radius: 10px;
  }

  .bd-author-card {
    flex-direction: column;
    text-align: center;
  }

  .bl-hero-sub {
    font-size: 15px;
  }

  .bl-search-input {
    font-size: 14px;
    padding: 12px 16px 12px 44px;
  }
}

/* =====================================================================
   HOW WE DELIVER (#journey) — ported from reference "How We Deliver"
   Self-contained: namespaced --xp-*/--hwd-* tokens + .hwd-* rules.
   3D orbit carousel is driven by xplore-excellence.js (scoped three).
   ===================================================================== */
:root {
  --xp-orange: #E67E22;
  --xp-orange-hover: #D96C12;
  --xp-orange-light: #F6A64B;
  --xp-teal: #2A8C8C;
  --xp-navy: #16212B;
  --xp-navy-dark: #0E1512;
  --xp-heading: #29241F;
  --xp-body: #6B6459;
  --xp-muted: #A39B8E;
  --xp-bg: #FCFBF8;
  --xp-bg-alt: #F8F7F4;
  --xp-surface: #FFFFFF;
  --xp-surface-cool: #F5F3EF;
  --xp-border: rgba(40, 30, 20, 0.08);
  --xp-shadow-lg: 0 20px 60px rgba(40, 32, 20, 0.09);
  --xp-glass-light: rgba(255, 255, 255, 0.75);
  --xp-glass-light-border: rgba(255, 255, 255, 0.55);
  --xp-blur: blur(20px);
  --xp-radius-xl: 28px;
  --xp-container: min(90vw, 2600px);
  --xp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
:root {
    --hwd-orange: var(--xp-orange);
    --hwd-orange-hover: var(--xp-orange-hover);
    --hwd-orange-light: var(--xp-orange-light);
    --hwd-navy: var(--xp-navy);
    --hwd-navy-dark: var(--xp-navy-dark);
    --hwd-teal: var(--xp-teal);
    --hwd-sky: #BFDFF2;
    --hwd-bg: var(--xp-bg);
    --hwd-bg-2: var(--xp-bg-alt);
    --hwd-surface: var(--xp-surface);
    --hwd-alt: var(--xp-surface-cool);
    --hwd-heading: var(--xp-heading);
    --hwd-para: var(--xp-body);
    --hwd-muted: var(--xp-muted);
    --hwd-border: var(--xp-border);
    --hwd-shadow: var(--xp-shadow-lg);
    --hwd-glass-bg: var(--xp-glass-light);
    --hwd-glass-border: 1px solid var(--xp-glass-light-border);
    --hwd-ease: var(--xp-ease);
}

/* ---------- Scroll shell (tall, scroll-driven) ---------- */
.hwd {
    position: relative;
    min-height: 650vh;
    /* scroll length that drives the story */
    padding-bottom: 0;
    background: var(--hwd-bg);
    color: var(--hwd-heading);
    -webkit-font-smoothing: antialiased;
}

/* Sticky stage pinned for the duration of the scroll */
.hwd-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Ambient background ---------- */
.hwd-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hwd-bg__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #FAF9F7 0%, #F6F3EE 50%, #F2F5F7 100%);
}

.hwd-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform, opacity;
}

.hwd-bg__glow--warm {
    width: 50vw;
    height: 50vw;
    top: -12vw;
    right: -6vw;
    opacity: .5;
    background: radial-gradient(circle at 50% 50%, rgba(246, 166, 75, .40), rgba(246, 166, 75, 0) 68%);
}

.hwd-bg__glow--cool {
    width: 48vw;
    height: 48vw;
    bottom: -16vw;
    left: -12vw;
    opacity: .55;
    background: radial-gradient(circle at 50% 50%, rgba(191, 223, 242, .50), rgba(191, 223, 242, 0) 68%);
}

.hwd-bg__grain {
    position: absolute;
    inset: 0;
    opacity: .35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ---------- Layout: 40 / 60 split ---------- */
.hwd-stage__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    max-width: var(--xp-container);
    margin-inline: auto;
    padding: clamp(1.5rem, 3.5vh, 2.75rem) clamp(1.25rem, 4vw, 4rem);
}

/* ===== LEFT PANEL ===== */
.hwd-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: clamp(1rem, 3vw, 3rem);
}

.hwd-panel {
    position: relative;
    width: 100%;
    padding: clamp(1.75rem, 2.8vw, 2.75rem);
    border-radius: var(--xp-radius-xl);
    background: var(--hwd-glass-bg);
    border: var(--hwd-glass-border);
    backdrop-filter: var(--xp-blur);
    -webkit-backdrop-filter: var(--xp-blur);
    box-shadow: var(--hwd-shadow);
}

.hwd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font: 600 15px/1 "Inter", sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hwd-teal);
    margin-bottom: 1.1rem;
}

.hwd-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hwd-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, .14);
}

.hwd-heading {
    font: 300 clamp(1.9rem, 3vw, 2.9rem)/1.08 "Fraunces", serif;
    letter-spacing: -.015em;
    color: var(--hwd-heading);
    margin: 0 0 1.1rem;
}

.hwd-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--hwd-orange);
}

.hwd-intro {
    font: 400 clamp(.95rem, 1.1vw, 1.04rem)/1.62 "Inter", sans-serif;
    color: var(--hwd-para);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

/* live step readout */
.hwd-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid var(--hwd-border);
    border-bottom: 1px solid var(--hwd-border);
    margin-bottom: 1.5rem;
    min-height: 8.5rem;
}

.hwd-step__num {
    font: 300 clamp(2.2rem, 3.4vw, 3rem)/1 "Fraunces", serif;
    color: var(--hwd-orange);
    font-variant-numeric: tabular-nums;
}

.hwd-step__title {
    font: 500 clamp(1.1rem, 1.5vw, 1.35rem)/1.2 "Fraunces", serif;
    color: var(--hwd-heading);
    margin: .2rem 0 .5rem;
}

.hwd-step__desc {
    font: 400 .92rem/1.6 "Inter", sans-serif;
    color: var(--hwd-para);
    margin: 0;
}

/* progress */
.hwd-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hwd-progress__bar {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: var(--hwd-alt);
    overflow: hidden;
}

.hwd-progress__fill {
    display: block;
    height: 100%;
    width: 16.66%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--hwd-orange-light), var(--hwd-orange));
    transition: width .2s linear;
}

.hwd-progress__count {
    font: 600 .9rem/1 "Inter", sans-serif;
    color: var(--hwd-heading);
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}

.hwd-progress__total {
    color: var(--hwd-muted);
}

/* CTA */
.hwd-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem .85rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font: 600 .95rem/1 "Inter", sans-serif;
    color: #fff;
    background: var(--hwd-orange);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(230, 126, 34, .30);
    transition: background .35s var(--hwd-ease), box-shadow .35s var(--hwd-ease), transform .3s var(--hwd-ease);
    will-change: transform;
}

.hwd-cta:hover {
    background: var(--hwd-orange-hover);
    box-shadow: 0 18px 40px rgba(217, 108, 18, .38);
}

.hwd-cta__arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.hwd-cta__arrow svg {
    width: 17px;
    height: 17px;
    transition: transform .4s var(--hwd-ease);
}

.hwd-cta:hover .hwd-cta__arrow svg {
    transform: translateX(4px);
}

/* ===== RIGHT PANEL (3D photo carousel) ===== */
.hwd-right {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--xp-radius-xl);
}

.hwd-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(120% 90% at 70% 20%, rgba(246, 166, 75, .18), rgba(246, 166, 75, 0) 55%),
        radial-gradient(120% 100% at 25% 85%, rgba(191, 223, 242, .30), rgba(191, 223, 242, 0) 60%),
        linear-gradient(155deg, #FFFFFF 0%, #F6F3EE 55%, #F2F5F7 100%);
}

.hwd-right::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 120px rgba(15, 30, 46, .10);
}

.hwd-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

/* vertical step rail */
.hwd-rail {
    z-index: 3;
    position: absolute;
    right: clamp(.5rem, 1.5vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hwd-rail__item {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font: 600 .68rem/1 "Inter", sans-serif;
    color: var(--hwd-muted);
    background: var(--hwd-glass-bg);
    border: var(--hwd-glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: color .4s var(--hwd-ease), background .4s var(--hwd-ease), transform .4s var(--hwd-ease), box-shadow .4s var(--hwd-ease);
}

.hwd-rail__item.is-active {
    color: #fff;
    background: var(--hwd-orange);
    transform: scale(1.12);
    box-shadow: 0 8px 22px rgba(230, 126, 34, .4);
}

/* scroll hint */
.hwd-hint {
    z-index: 3;
    position: absolute;
    left: 50%;
    bottom: clamp(1.25rem, 4vh, 2.5rem);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font: 500 .72rem/1 "Inter", sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hwd-muted);
    transition: opacity .5s var(--hwd-ease);
}

.hwd-hint svg {
    width: 20px;
    height: 20px;
    animation: hwd-bob 1.8s var(--hwd-ease) infinite;
}

.hwd-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes hwd-bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width:1180px) {
    .hwd-stage__inner {
        grid-template-columns: 42% 58%;
    }
}

/* Tablet & below — stack: panel over the 3D wheel.
   On mobile the JS switches the orbit to a horizontal wheel. */
@media (max-width:820px) {

    /* Scroll length: 650vh is authored for a wide desktop viewport driven by a
       mouse wheel. On a phone the same 650vh is ~6.5 screens of sticky dead zone
       (measured: 10 full flicks) before #stats can appear, which reads as
       "the page stopped scrolling / the rest is gone". Shorten the story runway
       on small screens only — the 6 steps still scrub, just at a mobile pace. */
    .hwd {
        min-height: 320vh;
    }

    /* 100vh on mobile = LARGE viewport (URL bar hidden), so a 100vh sticky stage
       is taller than the visible area whenever the URL bar is showing and its
       bottom is clipped by .hwd-stage's overflow:hidden. svh = the guaranteed
       visible height. Base 100vh above stays as the fallback for old browsers. */
    .hwd-stage {
        height: 100svh;
    }

    .hwd-stage__inner {
        grid-template-columns: 1fr;
        /* minmax(0,1fr) lets the canvas row actually shrink instead of forcing
           the grid past the stage height and getting clipped on short phones. */
        grid-template-rows: auto minmax(0, 1fr);
        align-items: start;
        padding: clamp(1.5rem, 5vh, 3rem) clamp(1.25rem, 4vw, 4rem) clamp(1.5rem, 3vh, 2rem);
        gap: 1rem;
    }

    .hwd-left {
        height: auto;
        padding-right: 0;
    }

    .hwd-panel {
        padding: 1.4rem;
    }

    .hwd-intro {
        display: none;
    }

    /* keep the panel compact above the wheel */
    .hwd-step {
        min-height: 7rem;
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    /* was min-height:42vh — on short phones panel(auto) + 42vh + padding exceeded
       the 100vh stage, so the canvas bottom was cut off by overflow:hidden.
       The minmax(0,1fr) row above already gives it every spare pixel. */
    .hwd-right {
        min-height: 0;
    }

    .hwd-rail {
        right: .5rem;
        gap: .7rem;
    }

    .hwd-rail__item {
        width: 28px;
        height: 28px;
        font-size: .6rem;
    }
}

/* Phone */
@media (max-width:480px) {
    .hwd-heading {
        font-size: 1.7rem;
    }

    .hwd-panel {
        padding: 1.2rem;
    }

    .hwd-step__num {
        font-size: 2rem;
    }

    .hwd-cta {
        width: 100%;
        justify-content: space-between;
    }

    .hwd-rail {
        display: none;
    }
}

/* Short phones (iPhone SE / 360x640-class): the text panel alone nearly fills a
   ~570-670px stage, leaving the 3D canvas almost no room. Compact the panel so
   both the copy and the carousel stay usable inside the stage.
   Declared after the 480px block so it wins on short phones. */
@media (max-width:820px) and (max-height:700px) {
    .hwd-stage__inner {
        padding: 1rem 1.25rem;
        gap: .5rem;
    }

    .hwd-panel {
        padding: 1rem;
    }

    .hwd-heading {
        font-size: 1.35rem;
        margin-bottom: .5rem;
    }

    /* keep a floor so the panel doesn't jump as step copy changes length,
       just a smaller one than the 7rem used on taller phones */
    .hwd-step {
        min-height: 5.25rem;
        padding: .5rem 0;
        margin-bottom: .5rem;
    }

    .hwd-step__num {
        font-size: 1.75rem;
    }

    .hwd-step__desc {
        font-size: .8rem;
    }
}

/* Landscape phones (844x390, 932x430 = iPhone 12-15 / Pro Max rotated).
   These are WIDER than the 820px mobile breakpoint, so they inherit the desktop
   40/60 layout inside a ~390px-tall viewport — the panel then overflowed the
   100vh stage and its bottom was cut off by .hwd-stage's overflow:hidden
   (measured: 315px clipped at 844x390, 227px at 932x430).
   Keyed on HEIGHT, not width, so no real laptop/desktop (>=600px tall) matches
   and the approved desktop layout is untouched. */
@media (max-height:500px) and (orientation:landscape) {
    .hwd-stage {
        height: 100svh;
    }

    .hwd-stage__inner {
        padding: .7rem clamp(1rem, 3vw, 2rem);
        align-items: center;
    }

    .hwd-left {
        padding-right: 1rem;
    }

    .hwd-panel {
        padding: .9rem 1.1rem;
    }

    .hwd-eyebrow {
        margin-bottom: .5rem;
    }

    .hwd-heading {
        font-size: 1.25rem;
        margin: 0 0 .45rem;
    }

    /* the long intro paragraph cannot fit a 390px-tall stage; the mobile
       breakpoint already hides it for the same reason */
    .hwd-intro {
        display: none;
    }

    .hwd-step {
        min-height: 4.5rem;
        padding: .5rem 0 .6rem;
        margin-bottom: .6rem;
        gap: .6rem;
    }

    .hwd-step__num {
        font-size: 1.5rem;
    }

    .hwd-step__desc {
        font-size: .75rem;
        line-height: 1.45;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce) {
    .hwd-hint svg {
        animation: none;
    }
}


