/* =========================================================
   Pet Travel Indo — scrapbook landing page
   Heavy postcard / washi-tape / stamp aesthetic
   ========================================================= */

:root {
  /* Palette — AU flag (navy / red / white / gold) */
  --cream: #e6edf6;        /* page bg — soft navy tint, breaks up the white */
  --cream-2: #d4dfee;      /* deeper for accent strips */
  --cream-3: #b9c8df;      /* mid blue tint */
  --pink: #e4002b;
  --pink-2: #ffcd00;       /* alt accent → gold (was light pink) */
  --pink-soft: #fff3a8;    /* soft fill → pale gold (was pale pink) */
  --maroon: #012169;
  --maroon-2: #1a3a8c;
  --ink: #0a1226;
  --ink-2: #2a3550;
  --mustard: #ffcd00;
  --postmark-blue: #012169;

  /* Type */
  --serif: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
  --sans: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
  --hand: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
  --mono: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
}

/* AU palette refinements (carried over from preview overlay) */
.postcard, .postcard-form, .testi { background: #f3f6fb; }
.hero-wall__photobg-slide { filter: saturate(1.05) brightness(1.04) contrast(1.10) hue-rotate(-6deg); }
.hero-wall__photobg::after {
  /* subtle Aussie eucalypt-green tint overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 100, 70, 0.10) 0%, rgba(0, 153, 92, 0.06) 50%, rgba(255, 205, 0, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}
.stats-board .board__title,
.stats-board .board__digits { color: #ffcd00; text-shadow: 0 0 4px rgba(255, 205, 0, 0.65), 0 0 14px rgba(255, 205, 0, 0.40); }
.stats-board .board__icon { border-color: #ffcd00; color: #ffcd00; }
.stats-board .board__meta { color: rgba(255, 205, 0, 0.85); }
.stats-board .board__live-dot { background: #e4002b; box-shadow: 0 0 10px rgba(228, 0, 43, 0.85); }

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== Cursor: normal arrow on top + small paw tag below (navy default / red on clickable) ===== */
html, body {
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='36'%20height='40'%20viewBox='0%200%2040%2044'%3E%3Cpath%20d='M3%203%20L3%2028%20L10%2021.5%20L14.5%2031%20L18.5%2029%20L14%2019.5%20L23%2019%20Z'%20fill='%23ffffff'%20stroke='%231a1410'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cg%20fill='%23012169'%3E%3Cellipse%20cx='28'%20cy='36'%20rx='5'%20ry='4'/%3E%3Ccircle%20cx='23'%20cy='30'%20r='2'/%3E%3Ccircle%20cx='28'%20cy='28'%20r='2.2'/%3E%3Ccircle%20cx='33'%20cy='30'%20r='2'/%3E%3C/g%3E%3C/svg%3E") 3 3, auto;
}
a, button, .btn, [role="button"], input[type="submit"], summary,
.faq-item__btn, .route-chip, .team-carousel__nav, label[for] {
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='36'%20height='40'%20viewBox='0%200%2040%2044'%3E%3Cpath%20d='M3%203%20L3%2028%20L10%2021.5%20L14.5%2031%20L18.5%2029%20L14%2019.5%20L23%2019%20Z'%20fill='%23ffffff'%20stroke='%231a1410'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cg%20fill='%23e4002b'%3E%3Cellipse%20cx='28'%20cy='36'%20rx='5'%20ry='4'/%3E%3Ccircle%20cx='23'%20cy='30'%20r='2'/%3E%3Ccircle%20cx='28'%20cy='28'%20r='2.2'/%3E%3Ccircle%20cx='33'%20cy='30'%20r='2'/%3E%3C/g%3E%3C/svg%3E") 3 3, pointer;
}
input, textarea { cursor: text; }
select { cursor: pointer; }

/* very subtle paper warmth, no mix-blend */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(228, 0, 43, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 205, 0, 0.04) 0%, transparent 55%);
}

/* Selection */
::selection { background: var(--pink); color: var(--cream); }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* =========================================================
   Layout primitives
   ========================================================= */

.shell {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* =========================================================
   Type
   ========================================================= */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
}

.eyebrow--pink { color: var(--pink); }
.eyebrow--cream { color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; line-height: 1.18; letter-spacing: 0; }

h1 { font-size: clamp(44px, 6.6vw, 84px); font-weight: 700; letter-spacing: -0.005em; }
h2 { font-size: clamp(24px, 2.8vw, 40px); font-weight: 700; letter-spacing: 0; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: 0; }

.italic { font-style: italic; }
.hand { font-family: var(--hand); font-weight: 500; }
.mono { font-family: var(--mono); }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 1px 2px rgba(26,20,16,0.10), 0 4px 14px rgba(1,33,105,0.18);
  transition: transform 200ms cubic-bezier(.2,.9,.25,1), box-shadow 200ms ease, background 200ms;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(26,20,16,0.10), 0 10px 28px rgba(1,33,105,0.28);
}
.btn:active { transform: translateY(0); }

.btn--maroon { background: var(--maroon); color: var(--cream); }
.btn--cream  { background: var(--cream);  color: var(--ink);   box-shadow: 0 1px 2px rgba(26,20,16,0.10), 0 4px 14px rgba(26,20,16,0.10); }
.btn--ghost  { background: transparent;  color: var(--ink);   box-shadow: none; border: 1px solid rgba(26,20,16,0.18); }
.btn--ghost:hover { background: rgba(26,20,16,0.04); transform: translateY(-1px); box-shadow: none; }
.btn--whatsapp { background: #25D366; color: white; box-shadow: 0 1px 2px rgba(0,0,0,0.10), 0 6px 18px rgba(37,211,102,0.35); }

.btn--lg { padding: 16px 26px; font-size: 15.5px; }

/* =========================================================
   Scrapbook primitives
   ========================================================= */

/* Polaroid photo frame */
.polaroid {
  background: #f3f6fb;
  padding: 12px 12px 48px;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(26,20,16,0.04),
    0 12px 30px rgba(26,20,16,0.10);
  position: relative;
  display: inline-block;
}
.polaroid__caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--hand);
  color: var(--maroon);
  font-size: 22px;
  line-height: 1;
}

/* Striped photo placeholder */
.photo {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--cream-3);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(1, 33, 105, 0.10) 0px,
      rgba(1, 33, 105, 0.10) 2px,
      transparent 2px,
      transparent 14px
    );
  position: relative;
  overflow: hidden;
}
.photo--pink { background-color: var(--pink-soft); }
.photo--maroon {
  background-color: #1a3a8c;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.10) 0px,
      rgba(255,255,255,0.10) 2px,
      transparent 2px,
      transparent 14px
    );
}
.photo--mustard { background-color: #fff0a3; }
.photo__label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(250, 241, 222, 0.9);
  padding: 4px 8px;
  border-radius: 2px;
}

/* Washi tape — gradient strip with frayed look */
.washi {
  position: absolute;
  height: 28px;
  width: 110px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.0) 0,
      rgba(255,255,255,0.25) 6px,
      rgba(255,255,255,0.0) 12px
    ),
    var(--pink);
  opacity: 0.85;
  box-shadow: 0 2px 6px rgba(26,20,16,0.10);
  /* slightly torn edges via mask */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
}
.washi--mustard { background:
  repeating-linear-gradient(90deg, rgba(255,255,255,0.0) 0, rgba(255,255,255,0.25) 6px, rgba(255,255,255,0.0) 12px),
  var(--mustard);
}
.washi--maroon { background:
  repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.25) 6px, rgba(255,255,255,0.10) 12px),
  var(--maroon);
}
.washi--cream { background:
  repeating-linear-gradient(90deg, rgba(122,31,58,0.10) 0, rgba(122,31,58,0.25) 6px, rgba(122,31,58,0.10) 12px),
  var(--cream-2);
}
.washi--stripe {
  background:
    repeating-linear-gradient(45deg, var(--pink) 0, var(--pink) 8px, var(--cream) 8px, var(--cream) 16px);
}

/* Postal stamp — serrated edges via radial-gradient dotted border */
.stamp {
  position: relative;
  background: var(--cream);
  padding: 10px;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(26,20,16,0.18));
  /* serrated edges */
  -webkit-mask:
    radial-gradient(circle at 6px 6px, transparent 5px, #000 5.5px) 0 0 / 12px 12px;
  mask:
    radial-gradient(circle at 6px 6px, transparent 5px, #000 5.5px) 0 0 / 12px 12px;
}
.stamp__inner {
  border: 2px dashed rgba(26,20,16,0.30);
  padding: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}

/* Postmark — circular dashed ink stamp */
.postmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  opacity: 0.78;
  transform: rotate(-12deg);
  background: transparent;
}
.postmark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px dashed var(--maroon);
  border-radius: 50%;
}
.postmark__inner { padding: 0 14px; line-height: 1.3; position: relative; z-index: 1; }
.postmark--blue { border-color: var(--postmark-blue); color: var(--postmark-blue); }
.postmark--blue::before { border-color: var(--postmark-blue); }

/* Postcard */
.postcard {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.10);
  box-shadow:
    0 4px 0 rgba(26,20,16,0.04),
    0 14px 40px rgba(26,20,16,0.16);
  position: relative;
  padding: 22px;
}
.postcard__divider {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(26,20,16,0.30) 0,
    rgba(26,20,16,0.30) 4px,
    transparent 4px,
    transparent 8px
  );
}

/* Photo corner accents */
.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  background: rgba(26,20,16,0.55);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.corner--tl { top: 0; left: 0; }
.corner--tr { top: 0; right: 0; clip-path: polygon(0 0, 100% 0, 100% 100%); }
.corner--bl { bottom: 0; left: 0; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.corner--br { bottom: 0; right: 0; clip-path: polygon(100% 0, 100% 100%, 0 100%); }

/* Sticker */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
}
.sticker--pink { background: var(--pink); color: var(--cream); }
.sticker--maroon { background: var(--maroon); color: var(--cream); }
.sticker--cream { background: var(--cream); color: var(--maroon); }

/* Verify badge for unsubstantiated claims */
.verify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: rgba(255, 205, 0, 0.20);
  border: 1px dashed var(--mustard);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a06b15;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}

/* Tilted helpers */
/* Modern: tilts dialed way down */
.t-l-1, .t-l-2 { transform: rotate(-1deg); }
.t-l-3, .t-l-4, .t-l-5 { transform: rotate(-1.5deg); }
.t-r-1, .t-r-2 { transform: rotate(1deg); }
.t-r-3, .t-r-4, .t-r-5 { transform: rotate(1.5deg); }

/* Modern testimonials override the generic .testi tilts inherited above */
.testi { transform: none !important; }
.testi:hover { transform: translateY(-3px) !important; }

/* Soften route card hover (was rotating) */
.route-card { transform: none !important; }
.route-card:hover { transform: translateY(-4px) !important; }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 241, 222, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--maroon);
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  box-shadow: 0 4px 14px rgba(1,33,105,0.30);
  overflow: hidden;
  flex-shrink: 0;
}
.brand__mark--img {
  object-fit: cover;
  padding: 0;
  background: transparent;
  box-shadow: 0 4px 14px rgba(1,33,105,0.25);
}
.brand__small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
  margin-top: -3px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav a:hover { color: var(--pink); }
.nav a.nav__cta {
  margin-left: 8px;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  background: #1455C7;
  color: var(--pink-2);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20,85,199,0.30);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 200ms, box-shadow 200ms;
}
.nav a.nav__cta:hover { color: var(--pink-2); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(20,85,199,0.40); }

@media (max-width: 820px) {
  .nav a:not(.nav__cta) { display: none; }
}
/* Compact header on narrow mobile — shrink logo + nav CTA */
@media (max-width: 480px) {
  .site-header__inner { padding: 12px 14px; gap: 8px; }
  .brand { gap: 8px; font-size: 16px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__small { font-size: 8px; letter-spacing: 0.14em; }
  .nav a.nav__cta {
    padding: 7px 12px !important;
    font-size: 11.5px !important;
    gap: 4px;
    margin-left: 0;
  }
  .nav a.nav__cta svg { width: 11px; height: 11px; }
}

/* =========================================================
   Hero — Globe orbit
   ========================================================= */

.hero {
  position: relative;
  padding: 64px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(228, 0, 43, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 205, 0, 0.10) 0%, transparent 55%);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy {
  position: relative;
  padding-top: 24px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero h1 {
  font-weight: 400;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 12px;
  background: var(--mustard);
  opacity: 0.55;
  z-index: -1;
  transform: skewX(-8deg);
}
.hero__lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
/* ---------- Aussie hero trust strip ---------- */
.hero__aus-trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  max-width: 540px;
}
.hero__aus-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__aus-trust-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.10);
  display: grid;
  place-items: center;
  color: var(--maroon);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(1,33,105,0.10);
}
.hero__aus-trust-num {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.1;
}
.hero__aus-trust-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 3px;
}

/* ---------- Australia map block ---------- */
.aus-map {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---------- DAFF rosette stamp ---------- */
.daff-stamp {
  filter: drop-shadow(0 6px 14px rgba(1,33,105,0.18));
}

.hero__signal {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__signal-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__signal-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1;
}
.hero__signal-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero__signal-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(26,20,16,0.15);
}

/* Globe orbit stage */
.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
}
.orbit__globe {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #f9a8c2 0%, var(--pink) 40%, var(--maroon-2) 100%);
  box-shadow:
    inset -30px -40px 80px rgba(26,20,16,0.28),
    inset 18px 22px 40px rgba(255,255,255,0.18),
    0 30px 60px rgba(1,33,105,0.30);
}
.orbit__globe::before,
.orbit__globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.orbit__globe::before {
  /* meridians */
  background:
    repeating-radial-gradient(
      ellipse at 50% 50%,
      transparent 0,
      transparent 18%,
      rgba(255,255,255,0.10) 18%,
      rgba(255,255,255,0.10) 18.5%
    );
  -webkit-mask: radial-gradient(circle, #000 60%, transparent 62%);
  mask: radial-gradient(circle, #000 60%, transparent 62%);
}
.orbit__globe::after {
  /* land masses, abstract blobs */
  background:
    radial-gradient(circle at 28% 38%, var(--cream) 0 5%, transparent 6%),
    radial-gradient(ellipse 14% 6% at 35% 42%, var(--cream) 60%, transparent 65%),
    radial-gradient(ellipse 8% 9% at 60% 32%, var(--cream-2) 60%, transparent 65%),
    radial-gradient(ellipse 18% 7% at 56% 60%, var(--cream-2) 60%, transparent 65%),
    radial-gradient(ellipse 6% 9% at 70% 70%, var(--cream) 60%, transparent 65%),
    radial-gradient(ellipse 5% 5% at 30% 75%, var(--cream-2) 60%, transparent 65%);
  -webkit-mask: radial-gradient(circle, #000 50%, transparent 51%);
  mask: radial-gradient(circle, #000 50%, transparent 51%);
  opacity: 0.85;
  mix-blend-mode: screen;
}

/* dashed orbit path */
.orbit__path {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(1,33,105,0.30);
  animation: spin 60s linear infinite;
}
.orbit__path--2 {
  inset: 8%;
  border-color: rgba(255,205,0,0.30);
  animation-duration: 80s;
  animation-direction: reverse;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* The plane orbiter — wraps a transformed plane and rotates */
.orbit__plane-wrap {
  position: absolute;
  inset: 0;
  animation: spin 22s linear infinite;
}
.orbit__plane {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 230px;
  /* counter-rotate the plane content */
}
.orbit__plane-counter {
  /* keep plane upright as it orbits — pet faces stay readable */
  animation: spin-rev 22s linear infinite;
  display: block;
}
@keyframes spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.plane {
  position: relative;
  width: 230px;
  height: 96px;
  filter: drop-shadow(0 14px 24px rgba(26,20,16,0.25));
}
.plane__body {
  position: absolute;
  top: 22px;
  left: 0;
  width: 188px;
  height: 56px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 50% 30% 30% 50% / 50%;
}
.plane__nose {
  position: absolute;
  top: 30px;
  left: 178px;
  width: 50px;
  height: 40px;
  background: var(--pink);
  border: 2.5px solid var(--ink);
  border-radius: 0 100% 100% 0 / 50%;
}
.plane__tail {
  position: absolute;
  top: 0;
  left: 14px;
  width: 32px;
  height: 36px;
  background: var(--pink);
  border: 2.5px solid var(--ink);
  border-radius: 4px 12px 0 0;
  transform: skewX(-22deg);
}
.plane__wing {
  position: absolute;
  top: 64px;
  left: 60px;
  width: 70px;
  height: 22px;
  background: var(--maroon);
  border: 2.5px solid var(--ink);
  border-radius: 0 0 50% 50%;
}
.plane__window {
  position: absolute;
  top: 32px;
  width: 36px;
  height: 36px;
  background: #1d2c4a;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
}
.plane__window--cat { left: 56px; }
.plane__window--dog { left: 110px; }

.pet-face {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--cream-3);
  background-image:
    repeating-linear-gradient(135deg, rgba(1,33,105,0.18) 0, rgba(1,33,105,0.18) 2px, transparent 2px, transparent 6px);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.pet-face--cat { background-color: var(--pink-soft); }
.pet-face--dog { background-color: #fff0a3; }

/* Decorative scrapbook bits floating around hero */
.hero__scraps { position: absolute; inset: 0; pointer-events: none; }
.scrap { position: absolute; pointer-events: auto; }

.boarding-pass {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  padding: 12px 14px;
  width: 230px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}
.boarding-pass__col { display: flex; flex-direction: column; gap: 4px; }
.boarding-pass__lab { color: var(--ink-2); font-size: 8px; }
.boarding-pass__val { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; text-transform: none; color: var(--maroon); font-weight: 600; line-height: 1; }
.boarding-pass__div {
  border-left: 2px dashed var(--ink);
  height: 100%;
}
.boarding-pass__bottom {
  grid-column: 1 / -1;
  border-top: 1px dashed var(--ink);
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
}

/* Hand-drawn arrow */
.arrow-doodle {
  font-family: var(--hand);
  font-weight: 700;
  color: var(--maroon);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 32px 0 80px; }
  .orbit { max-width: 420px; }
}

/* =========================================================
   Hero v2 — Magazine cover
   ========================================================= */

.hero-mag {
  position: relative;
  padding: 60px 0 100px;
}
.hero-mag__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero-mag__center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
}
.hero-mag__masthead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--maroon);
  letter-spacing: -0.025em;
}
.hero-mag__masthead em { color: var(--pink); font-style: italic; }
.hero-mag__issue {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 4px;
  margin-top: 8px;
}
.hero-mag__cover-line {
  font-family: var(--hand);
  font-size: 30px;
  color: var(--maroon);
  text-align: center;
  line-height: 1.1;
}
.hero-mag__pet {
  position: relative;
}
.hero-mag__pet .photo { aspect-ratio: 3 / 4; }
.hero-mag__caption {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--mustard);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.hero-mag__cover-blurbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  text-align: center;
}
.hero-mag__blurb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.hero-mag__blurb b { color: var(--pink); font-style: normal; font-weight: 600; }

@media (max-width: 900px) {
  .hero-mag__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Hero v3 — Postcard wall
   ========================================================= */

.hero-wall {
  position: relative;
  padding: 60px 0 120px;
  min-height: 720px;
  overflow: hidden;
}

/* Subtle city photo background — Melbourne → Indonesia crossfade */
.hero-wall__photobg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-wall__photobg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: sepia(0.45) saturate(0.95) hue-rotate(-8deg) brightness(0.95) contrast(1.05);
  animation: heroPhotoFade 21s infinite;
  will-change: opacity, transform;
}
.hero-wall__photobg-slide:nth-child(1) { animation-delay:  0s; }
.hero-wall__photobg-slide:nth-child(2) { animation-delay: 3.5s; }
.hero-wall__photobg-slide:nth-child(3) { animation-delay:  7s; }
.hero-wall__photobg-slide:nth-child(4) { animation-delay: 10.5s; }
.hero-wall__photobg-slide:nth-child(5) { animation-delay: 14s; }
.hero-wall__photobg-slide:nth-child(6) { animation-delay: 17.5s; }

@keyframes heroPhotoFade {
  0%   { opacity: 0;    transform: scale(1.05); }
  4%   { opacity: 0.55; }
  16%  { opacity: 0.55; transform: scale(1.00); }
  22%  { opacity: 0;    transform: scale(1.00); }
  100% { opacity: 0;    transform: scale(1.05); }
}

/* Vignette + cream tint to keep postcards as the focus (toned down to let photos stand out) */
.hero-wall__photobg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 50% 38%, rgba(230, 237, 246, 0.32) 0%, rgba(230, 237, 246, 0.05) 60%, rgba(230, 237, 246, 0.62) 100%),
    linear-gradient(180deg, rgba(230, 237, 246, 0.20) 0%, rgba(230, 237, 246, 0.05) 45%, rgba(230, 237, 246, 0.40) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-wall__photobg-slide {
    animation: none;
    opacity: 0;
  }
  .hero-wall__photobg-slide:nth-child(1) { opacity: 0.10; }
}
.hero-wall__copy {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.hero-wall__copy h1 { margin-bottom: 18px; }
.hero__h1--compact { font-size: clamp(40px, 5.5vw, 64px) !important; line-height: 1.05 !important; margin-bottom: 8px !important; }
.hero__sub-poetic {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-2);
  margin: 0 auto 14px;
  letter-spacing: -0.01em;
}
.hero__sub-poetic em {
  font-family: var(--serif);
  font-style: normal;
  color: var(--pink);
}
.hero__lead-fineprint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 auto 24px;
  max-width: 620px;
  opacity: 0.78;
}
.hero-wall__cards {
  position: relative;
  height: 480px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 3;
}

/* Passport stamp decoration */
.passport-stamp {
  position: absolute;
  z-index: 2;
  padding: 14px 22px;
  border: 2.5px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
  text-transform: uppercase;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.42;
  pointer-events: none;
  filter: blur(0.25px);
  user-select: none;
}
.passport-stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--maroon);
  pointer-events: none;
}
.passport-stamp__top {
  font-size: 9px;
  text-align: center;
  margin-bottom: 6px;
}
.passport-stamp__country {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}
.passport-stamp__bottom {
  font-size: 9px;
  text-align: center;
  margin-top: 6px;
}
.passport-stamp--au {
  top: 30px;
  left: 4%;
  transform: rotate(-14deg);
}
.passport-stamp--id {
  top: 50px;
  right: 4%;
  transform: rotate(9deg);
  border-color: var(--pink);
  color: var(--pink);
  opacity: 0.45;
}
.passport-stamp--id::before { border-color: var(--pink); }

@media (max-width: 900px) {
  .passport-stamp { padding: 6px 10px; opacity: 0.30; }
  .passport-stamp__country { font-size: 13px; }
  .passport-stamp__top, .passport-stamp__bottom { font-size: 6px; letter-spacing: 0.08em; margin-top: 3px; margin-bottom: 3px; }
  .passport-stamp--au { top: 6px; left: -6px; transform: rotate(-12deg); }
  .passport-stamp--id { top: 14px; right: -6px; transform: rotate(8deg); }
}
/* Hide passport stamp decorations on narrow mobile — they overlap hero CTA + header buttons */
@media (max-width: 720px) {
  .passport-stamp { display: none; }
}

/* Pet polaroid clipped to top-right of each hero postcard */
.pet-clip {
  position: absolute;
  top: -28px;
  right: -22px;
  width: 78px;
  height: 78px;
  background-size: cover;
  background-position: center;
  background-color: #f3f6fb;
  border: 5px solid #f3f6fb;
  border-bottom-width: 14px;
  box-shadow: 0 6px 14px rgba(26, 20, 16, 0.20), 0 1px 2px rgba(26, 20, 16, 0.12);
  z-index: 4;
  pointer-events: none;
}
.pet-clip::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 28px;
  height: 9px;
  background: var(--mustard);
  opacity: 0.85;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(26, 20, 16, 0.15);
}
@media (max-width: 720px) {
  .pet-clip { width: 60px; height: 60px; top: -22px; right: -16px; border-bottom-width: 11px; }
}

/* Real photo fill for testimonial cards (overrides .photo placeholder) */
.testi__photo--filled {
  aspect-ratio: 4 / 5;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-3);
  filter: saturate(0.95) contrast(1.02);
  box-shadow: inset 0 0 0 4px #f3f6fb, 0 1px 3px rgba(26, 20, 16, 0.15);
}
.hero-wall__cards .scrap { position: absolute; }

/* =========================================================
   Direction picker
   ========================================================= */

.section { padding: 72px 0 72px; position: relative; }
.section + .section { border-top: 1px solid rgba(26, 20, 16, 0.08); }
@media (max-width: 720px) {
  .section { padding: 48px 0 48px; }
}
.section--cream { background: var(--cream); }
.section--pink {
  background: var(--pink-soft);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.4) 0, rgba(255,255,255,0.4) 1px, transparent 1px, transparent 18px);
}
.section--maroon { background: var(--maroon); color: var(--cream); }
.section--maroon h2, .section--maroon .eyebrow { color: var(--cream); }

.section__head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.section__head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section__head h2 { max-width: 720px; margin: 0 auto; font-weight: 700; }
.section__head h2 em { font-style: italic; color: var(--pink); }
.section--maroon .section__head h2 em { color: var(--pink-2); }

.dir-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.dir-card {
  position: relative;
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.10);
  border-radius: 24px;
  padding: 32px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 14px 40px rgba(26,20,16,0.08);
  transition: transform 250ms cubic-bezier(.2,.9,.25,1), box-shadow 250ms, background 250ms;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
}
.dir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(26,20,16,0.06), 0 24px 60px rgba(26,20,16,0.14);
}
.dir-card[aria-pressed="true"] {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(1,33,105,0.20), 0 24px 60px rgba(1,33,105,0.30);
}
.dir-card[aria-pressed="true"] .dir-card__sub,
.dir-card[aria-pressed="true"] .dir-card__lead { color: var(--cream); }
.dir-card[aria-pressed="true"] .sticker { background: var(--maroon); color: var(--cream); }
.dir-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.dir-card__route {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dir-card__lead {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  margin: 8px 0 12px;
}
.dir-card__lead em { font-style: italic; color: var(--pink); }
.dir-card[aria-pressed="true"] .dir-card__lead em { color: var(--cream); text-decoration: underline wavy; }
.dir-card__sub {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.dir-card__meta {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  border-top: 1px dashed currentColor;
  padding-top: 14px;
  flex-wrap: wrap;
}
.dir-card__meta-item { display: flex; flex-direction: column; gap: 2px; }
.dir-card__meta-num { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1; }
.dir-card__meta-lab { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }

@media (max-width: 760px) {
  .dir-picker { grid-template-columns: 1fr; }
}

/* =========================================================
   Process timeline
   ========================================================= */

.process {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 22px;
}
.process__card {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 18px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 10px 30px rgba(26,20,16,0.06);
  transition: transform 250ms, box-shadow 250ms;
}
.process__card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(26,20,16,0.06), 0 18px 44px rgba(26,20,16,0.10); }
.process__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.10);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--maroon);
  box-shadow: 0 6px 16px rgba(26,20,16,0.10);
  position: absolute;
  top: -16px;
  left: 24px;
  z-index: 2;
}
.process__num--pink    { background: var(--pink);    color: var(--cream); }
.process__num--maroon  { background: var(--maroon);  color: var(--cream); }
.process__num--mustard { background: var(--mustard); color: var(--ink); }
.process__card h3 { font-size: 19px; margin: 0 0 6px; line-height: 1.15; }
.process__card p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.45; }
.process__card .duration {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-block;
  margin-bottom: 6px;
  margin-left: 0;
  margin-top: 18px;
}
.process__hand-note {
  font-family: var(--hand);
  font-size: 15px;
  color: var(--maroon);
  position: absolute;
  bottom: -18px;
  right: 10px;
  max-width: calc(100% - 20px);
  background: var(--mustard);
  padding: 3px 10px;
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
  pointer-events: none;
  line-height: 1.25;
  z-index: 3;
}

@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   Pricing
   ========================================================= */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 24px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 18px 50px rgba(26,20,16,0.10);
}
.price-card--pink {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  box-shadow: 0 4px 12px rgba(1,33,105,0.18), 0 24px 60px rgba(1,33,105,0.30);
}
.price-card__route {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.price-card__amount {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 6px;
}
.price-card__amount small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-card__from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.85;
}
.price-card__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed currentColor;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li::before {
  content: "✓";
  font-family: var(--serif);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card__bonus {
  position: absolute;
  top: -22px;
  right: -16px;
  z-index: 3;
}
.price-card__note {
  font-family: var(--hand);
  font-size: 19px;
  margin-top: 14px;
  opacity: 0.92;
}

@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; }
}

/* =========================================================
   Routes grid
   ========================================================= */

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.route-card {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 20px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 14px 40px rgba(26,20,16,0.08);
  transition: transform 250ms cubic-bezier(.2,.9,.25,1), box-shadow 250ms;
  cursor: pointer;
  overflow: hidden;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(26,20,16,0.06), 0 24px 60px rgba(26,20,16,0.14);
}
.route-card__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.route-card__stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.route-card__body {
  padding: 18px 20px 22px;
  position: relative;
}
.route-card__route {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.route-card__route .arrow {
  font-family: var(--hand);
  color: var(--pink);
  font-size: 28px;
  font-weight: 700;
}
.route-card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.route-card__price {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--maroon);
  font-weight: 600;
}
.route-card__hidden {
  display: none;
}
.route-card.is-filtered {
  display: none;
}

@media (max-width: 980px) { .routes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .routes { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonials — postcards from pets
   ========================================================= */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.testi {
  position: relative;
  background: #f3f6fb;
  border-radius: 20px;
  padding: 26px 26px 26px;
  box-shadow: 0 2px 4px rgba(26,20,16,0.04), 0 18px 50px rgba(26,20,16,0.10);
  border: 1px solid rgba(26,20,16,0.06);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  min-height: 320px;
  transition: transform 250ms, box-shadow 250ms;
}
.testi:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(26,20,16,0.06), 0 24px 60px rgba(26,20,16,0.14); }
.testi__photo-side { position: relative; }
.testi__photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
}
.testi__photo .stamp {
  position: absolute;
  top: -10px;
  right: -10px;
  transform: rotate(8deg);
}
.testi__msg-side {
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi__from {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.testi__to {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.testi__hand {
  font-family: var(--hand);
  font-size: 21px;
  color: var(--maroon);
  line-height: 1.25;
  flex: 1;
  letter-spacing: -0.005em;
}
.testi__signoff {
  font-family: var(--hand);
  font-size: 23px;
  color: var(--pink);
  margin-top: 12px;
}
.testi__route-pill {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-top: 10px;
  border: 1px solid var(--ink);
}
.testi .postmark {
  /* Decorative AU/ID postmark stamps removed per client (Vina) — too busy over photo/text */
  display: none;
}
/* Origin postmark at TOP-LEFT (AU departure airport) */
.testi .postmark--origin {
  right: auto;
  left: 8px;
  transform: rotate(-12deg);
  background: var(--cream);
  border-color: var(--maroon);
}
.testi .postmark--origin .postmark__inner {
  color: var(--maroon);
  border-color: var(--maroon);
}

@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi { grid-template-columns: 1fr; padding: 22px 18px; }
  /* Shrink postmarks on mobile so they don't dominate the photo */
  .testi .postmark { width: 62px; height: 62px; font-size: 6.5px; top: 6px; right: 6px; }
  .testi .postmark--origin { left: 6px; right: auto; }
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 1px 2px rgba(26,20,16,0.03);
  transition: box-shadow 250ms;
}
.faq-item:hover { box-shadow: 0 2px 8px rgba(26,20,16,0.08); }
.section--maroon .faq-item { background: var(--cream); color: var(--ink); }
.faq-item__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  transition: transform 200ms ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--maroon); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq-item.is-open .faq-item__body { max-height: 1100px; }
.faq-item__inner {
  padding: 0 26px 24px;
  border-top: 1px dashed rgba(26,20,16,0.30);
  padding-top: 18px;
  color: var(--ink-2);
  font-size: 16px;
}
.faq-item__inner p { margin: 0 0 12px; }
.faq-item__inner p:last-child { margin-bottom: 0; }
.faq-item__inner strong { color: var(--maroon); }
.faq-item__cta {
  margin-top: 16px !important;
  background: rgba(255, 205, 0, 0.12);
  border: 1px solid rgba(255, 205, 0, 0.45);
  border-left: 4px solid var(--mustard);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.55;
}
.faq-item__cta a {
  display: inline-block;
  margin-top: 8px;
  color: var(--maroon);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(1, 33, 105, 0.35);
  transition: border-color 0.18s ease;
}
.faq-item__cta a:hover { border-bottom-color: var(--maroon); }

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  text-align: center;
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 auto 26px;
  max-width: 760px;
}
.final-cta h2 em { font-style: italic; color: var(--pink); }
.final-cta__lead {
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--cream);
  opacity: 0.92;
}
.final-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__brand .brand { color: var(--cream); font-size: 22px; }
.footer__brand .brand__small { color: rgba(250,241,222,0.5); }
.footer__brand p { color: rgba(250,241,222,0.65); font-size: 14px; max-width: 320px; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--cream-3);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(250,241,222,0.78); font-size: 14px; }
.footer a:hover { color: var(--pink-2); }
.footer__bottom {
  border-top: 1px solid rgba(250,241,222,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,241,222,0.5);
}

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

/* =========================================================
   WhatsApp floating bubble
   ========================================================= */

.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-bubble__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 14px 40px rgba(37,211,102,0.40);
  transition: transform 250ms, box-shadow 250ms;
}
.whatsapp-bubble__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.20), 0 20px 50px rgba(37,211,102,0.55);
}
.whatsapp-bubble__btn svg { width: 32px; height: 32px; }
.whatsapp-bubble__msg {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: var(--hand);
  font-size: 18px;
  color: var(--maroon);
  box-shadow: 0 4px 14px rgba(26,20,16,0.14);
  white-space: nowrap;
}
/* Mobile: hide the floating tooltip (overlaps content); shrink bubble; pin bottom-right */
@media (max-width: 720px) {
  .whatsapp-bubble { bottom: 16px; right: 16px; gap: 6px; }
  .whatsapp-bubble__msg { display: none; }
  .whatsapp-bubble__btn { width: 64px; height: 64px; }
  .whatsapp-bubble__btn svg { width: 32px; height: 32px; }
}

/* =========================================================
   Animations on load
   ========================================================= */

@keyframes float-y {
  0%, 100% { transform: translateY(0) var(--rot, rotate(0deg)); }
  50% { transform: translateY(-6px) var(--rot, rotate(0deg)); }
}
.float { animation: float-y 4.2s ease-in-out infinite; }

/* =========================================================
   Stats strip
   ========================================================= */

.stats-strip {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
  padding: 36px 0;
  position: relative;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.stats-strip__item {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.stats-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -12px;
  width: 1px;
  border-left: 2px dashed rgba(1,33,105,0.30);
}
.stats-strip__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-strip__num em { color: var(--pink); font-style: italic; }
.stats-strip__lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 880px) { .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } .stats-strip__item:not(:last-child)::after { display: none; } }

/* =========================================================
   Stats strip — Departure board (full-bleed maroon LED panel)
   ========================================================= */
.stats-board {
  background: var(--cream);
  border: none;
  padding: 0;
}
.board__frame {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 205, 0, 0.45);
  border-bottom: 1px solid rgba(255, 205, 0, 0.45);
}
.board__frame::before {
  /* subtle scanline */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0, 0, 0, 0.10) 3px, rgba(0, 0, 0, 0.10) 4px);
  pointer-events: none;
  opacity: 0.6;
}
.board__frame::after {
  /* thin amber accent hairline at top */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 205, 0, 0.6) 20%, rgba(255, 205, 0, 0.6) 80%, transparent 100%);
  pointer-events: none;
}
.board__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 32px 26px;
  position: relative;
  z-index: 1;
}

.board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 205, 0, 0.18);
  flex-wrap: wrap;
}
.board__title-line {
  display: flex; align-items: center; gap: 12px;
}
.board__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 24px;
  border: 1.5px solid var(--mustard);
  border-radius: 3px;
  color: var(--mustard);
}
.board__title {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--mustard);
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}
.board__meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 205, 0, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.board__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(228, 0, 43, 0.85);
  animation: boardLiveDot 1.8s ease-in-out infinite;
}
@keyframes boardLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.stats-strip.stats-board .stats-strip__grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.stats-strip.stats-board .stats-strip__item:not(:last-child)::after { display: none; }

.board__cell {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 24px !important;
  text-align: left !important;
  position: relative;
  display: block;
  box-shadow: none !important;
  overflow: visible;
}
.board__cell:first-child { padding-left: 0 !important; }
.board__cell:last-child { padding-right: 0 !important; }
.board__cell:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16%; bottom: 16%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 205, 0, 0.30) 25%, rgba(255, 205, 0, 0.30) 75%, transparent);
}
.board__digits {
  font-family: var(--mono);
  font-size: clamp(40px, 4.4vw, 60px);
  color: var(--mustard);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: normal;
  text-shadow:
    0 0 3px rgba(255, 205, 0, 0.55),
    0 0 12px rgba(255, 205, 0, 0.35);
  margin-bottom: 8px;
  white-space: nowrap;
}
.board__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 241, 222, 0.50);
}

@media (max-width: 880px) {
  .board__inner { padding: 18px 20px 22px; }
  .stats-strip.stats-board .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .board__header { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 12px; margin-bottom: 14px; }
  .board__digits { font-size: 36px; margin-bottom: 6px; }
  .board__cell { padding: 12px 14px !important; }
  .board__cell:first-child, .board__cell:last-child { padding-left: 14px !important; padding-right: 14px !important; }
  .board__cell:nth-child(2n)::before { display: none; }
  .board__cell:nth-child(n+3) { border-top: 1px solid rgba(255, 205, 0, 0.18); padding-top: 14px !important; }
}
@media (max-width: 480px) {
  .stats-strip.stats-board .stats-strip__grid { grid-template-columns: 1fr; }
  .board__cell:not(:last-child)::before { display: none; }
  .board__cell:nth-child(n+2) { border-top: 1px solid rgba(255, 205, 0, 0.18); padding-top: 12px !important; }
}

/* =========================================================
   Quick Quote — postcard-shaped form
   ========================================================= */
.postcard-cta { padding: 80px 0 90px; position: relative; }
.postcard-cta .container { position: relative; }

/* ====================================================
   Plain quote form — legibility-first (older audience)
   ==================================================== */
.quote-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(1, 33, 105, 0.16);
  border-radius: 14px;
  padding: 36px 36px 32px;
  box-shadow: 0 14px 40px rgba(1, 33, 105, 0.12);
}
.quote-trust {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}
.quote-trust li {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #012169);
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-trust li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.quote-field { display: flex; flex-direction: column; }
.quote-field--full { grid-column: 1 / -1; }
.quote-field label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #1a1410);
  margin-bottom: 8px;
}
.quote-field__req {
  font-weight: 400;
  color: var(--ink-2, #6a5a52);
  font-size: 14px;
}
.quote-field input,
.quote-field select,
.quote-field textarea {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink, #1a1410);
  background: #fbfaf6;
  border: 2px solid rgba(1, 33, 105, 0.22);
  border-radius: 9px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-field textarea { resize: vertical; min-height: 96px; }
.quote-field input::placeholder,
.quote-field textarea::placeholder { color: #9a8e84; }
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--navy, #012169);
  box-shadow: 0 0 0 4px rgba(1, 33, 105, 0.14);
}
.quote-form__submit {
  margin-top: 26px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  padding: 18px 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
  transition: background 0.15s ease, transform 0.15s ease;
}
.quote-form__submit:hover { background: #1da851; transform: translateY(-2px); }
.quote-form__submit:active { transform: translateY(0); }
.quote-form__note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-2, #6a5a52);
  margin: 14px 0 0;
}
.quote-card__testi {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--ink-2, #6a5a52);
  margin: 24px auto 0;
  max-width: 520px;
}
@media (max-width: 680px) {
  .quote-card { padding: 26px 20px 24px; border-radius: 12px; }
  .quote-form__grid { grid-template-columns: 1fr; gap: 16px; }
  .quote-form__submit { font-size: 17px; padding: 16px 20px; }
}

/* Side trust microcopy (Preview B applied 2026-05-12) */
.cta-trust-col {
  position: absolute;
  top: 260px;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  pointer-events: none;
  z-index: 2;
}
.cta-trust-col--left  { left: 2%; }
.cta-trust-col--right { right: 2%; align-items: flex-end; text-align: right; }
.cta-trust-pill {
  font-family: var(--hand);
  font-size: 22px;
  line-height: 1.15;
  color: var(--maroon);
  transform: rotate(-2deg);
}
.cta-trust-pill:nth-child(2) { transform: rotate(1deg); margin-left: 14px; }
.cta-trust-pill:nth-child(3) { transform: rotate(-1deg); }
.cta-trust-pill em {
  color: var(--pink);
  font-family: var(--serif);
  font-style: normal;
}
.cta-testi-clip {
  background: #fff3a8;
  padding: 14px 18px 16px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.18);
  transform: rotate(3deg);
  max-width: 220px;
  position: relative;
  pointer-events: auto;
}
.cta-testi-clip::before {
  content: ""; position: absolute; top: -10px; left: 30%;
  width: 48px; height: 14px;
  background: var(--pink);
  transform: rotate(-4deg);
  opacity: 0.85;
}
.cta-testi-clip__msg {
  font-family: var(--hand);
  font-size: 19px;
  line-height: 1.25;
  color: var(--maroon);
  text-align: left;
}
.cta-testi-clip__sign {
  font-family: var(--hand);
  font-size: 16px;
  color: var(--pink);
  margin-top: 8px;
  text-align: left;
}
@media (max-width: 1100px) { .cta-trust-col { display: none; } }

.postcard-cta__alt {
  text-align: center;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: 14px;
}
.postcard-cta__alt a {
  text-decoration: underline;
  color: var(--maroon);
  font-weight: 600;
}

.postcard-form {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  background: #f3f6fb;
  border: 1px solid rgba(26, 20, 16, 0.10);
  border-radius: 6px;
  padding: 40px 44px 44px;
  box-shadow:
    0 2px 4px rgba(26, 20, 16, 0.04),
    0 26px 64px rgba(26, 20, 16, 0.16);
  transform: rotate(-0.4deg);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.postcard-form:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 4px 8px rgba(26, 20, 16, 0.06),
    0 32px 80px rgba(26, 20, 16, 0.20);
}

.postcard-form__washi {
  position: absolute;
  top: -14px;
  left: 14%;
  width: 130px;
  height: 28px;
  background: var(--pink-soft);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.45) 0 4px, transparent 4px 9px);
  border: 1px solid rgba(26, 20, 16, 0.10);
  transform: rotate(-3deg);
  opacity: 0.92;
  z-index: 2;
}
.postcard-form__corner {
  position: absolute;
  width: 38px; height: 38px;
  border: 2px solid rgba(26, 20, 16, 0.14);
  pointer-events: none;
}
.postcard-form__corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.postcard-form__corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.postcard-form__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
}
.postcard-form__msg-side {
  border-right: 2px dashed rgba(26, 20, 16, 0.18);
  padding-right: 28px;
}
.postcard-form__hand-label {
  display: block;
  font-family: var(--hand);
  font-size: 26px;
  color: var(--maroon);
  margin-bottom: 10px;
  font-weight: 600;
}
.postcard-form__hand-area {
  width: 100%;
  min-height: 130px;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink);
  background:
    repeating-linear-gradient(transparent 0, transparent 31px, rgba(26, 20, 16, 0.10) 31px, rgba(26, 20, 16, 0.10) 32px);
  background-attachment: local;
  border: none;
  resize: vertical;
  outline: none;
  line-height: 32px;
  padding: 0;
}
.postcard-form__hand-area::placeholder {
  color: rgba(26, 20, 16, 0.30);
  font-style: italic;
}
.postcard-form__signoff {
  margin-top: 14px;
  font-family: var(--hand);
  font-size: 26px;
  color: var(--pink);
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.postcard-form__signoff input {
  border: none;
  border-bottom: 1.5px dashed rgba(228, 0, 43, 0.45);
  background: transparent;
  font-family: var(--hand);
  font-size: 26px;
  color: var(--pink);
  font-weight: 600;
  outline: none;
  flex: 1;
  padding: 0 4px 4px;
  min-width: 0;
}
.postcard-form__signoff input::placeholder {
  color: rgba(228, 0, 43, 0.45);
}

.postcard-form__addr-side {
  position: relative;
  padding-left: 4px;
  min-height: 220px;
}
.postcard-form__stamp {
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 2;
}
.postcard-form__stamp-btn {
  background: var(--maroon);
  color: var(--cream);
  border: 4px solid var(--maroon);
  outline: 2px dashed var(--cream);
  outline-offset: -7px;
  padding: 14px 12px 12px;
  text-align: center;
  font-family: var(--mono);
  text-transform: uppercase;
  cursor: pointer;
  transform: rotate(8deg);
  box-shadow: 0 4px 12px rgba(26, 20, 16, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
  width: 116px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  border-radius: 2px;
}
.postcard-form__stamp-btn:hover {
  transform: rotate(8deg) translateY(-2px) scale(1.04);
  box-shadow: 0 10px 22px rgba(26, 20, 16, 0.30);
}
.postcard-form__stamp-btn:active {
  transform: rotate(8deg) translateY(0) scale(0.98);
}
.postcard-form__stamp-top, .postcard-form__stamp-bot {
  font-size: 7px;
  letter-spacing: 0.18em;
  font-weight: 700;
  opacity: 0.85;
  white-space: nowrap;
}
.postcard-form__stamp-mid {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mustard);
  line-height: 1;
  margin: 2px 0;
}

.postcard-form__fields {
  display: grid;
  gap: 14px;
  margin-top: 132px;
}
.postcard-form__field {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1.5px dashed rgba(26, 20, 16, 0.20);
  padding-bottom: 6px;
  cursor: text;
}
.postcard-form__field-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.postcard-form__field input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  padding: 0;
  min-width: 0;
}
.postcard-form__field input::placeholder {
  color: rgba(26, 20, 16, 0.30);
  font-weight: 400;
}
.postcard-form__field:focus-within {
  border-bottom-color: var(--pink);
  border-bottom-style: solid;
}
.postcard-form__postmark {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .postcard-cta { padding: 56px 0 64px; }
  .postcard-form { padding: 28px 22px 32px; transform: rotate(0); }
  .postcard-form:hover { transform: translateY(-2px); }
  .postcard-form__grid { grid-template-columns: 1fr; gap: 24px; }
  .postcard-form__msg-side {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px dashed rgba(26, 20, 16, 0.18);
    padding-bottom: 24px;
  }
  .postcard-form__addr-side { min-height: 0; padding-left: 0; }
  .postcard-form__stamp { position: static; align-self: center; margin: 4px auto 18px; display: flex; justify-content: center; }
  .postcard-form__fields { margin-top: 0; }
  .postcard-form__washi { left: 50%; transform: translateX(-50%) rotate(-3deg); }
  .postcard-form__corner { display: none; }
}

/* =========================================================
   Who we are — team intro section
   ========================================================= */
.who-we-are { padding: 96px 0; }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.who__photo-wrap {
  position: relative;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}
.who__photo-frame {
  position: relative;
  background: #f3f6fb;
  padding: 14px 14px 56px;
  border-radius: 4px;
  box-shadow:
    0 2px 4px rgba(26, 20, 16, 0.06),
    0 28px 60px rgba(26, 20, 16, 0.18);
  transform: rotate(-1.6deg);
  transition: transform 280ms ease;
  overflow: hidden;
}
.who__photo-frame:hover { transform: rotate(0deg) translateY(-2px); }
.who__photo-frame--branded {
  background: transparent;
  padding: 0;
  box-shadow: 0 30px 60px rgba(26, 20, 16, 0.18);
  border-radius: 0;
  overflow: visible;
}
.who__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-3);
  border-radius: 2px;
}
.who__photo-frame--branded .who__photo {
  aspect-ratio: 612 / 822;
  background: transparent;
}
.who__logo-medallion {
  position: absolute;
  top: -22px; right: -22px;
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(1, 33, 105, 0.30);
  background: var(--maroon);
  z-index: 3;
  transform: rotate(6deg);
}
@media (max-width: 720px) {
  .who__logo-medallion { width: 64px; height: 64px; top: -16px; right: -8px; }
}
.who__photo-fallback {
  display: none;
  position: absolute;
  inset: 14px 14px 56px;
  background: var(--cream-3);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(1, 33, 105, 0.10) 0px,
    rgba(1, 33, 105, 0.10) 2px,
    transparent 2px,
    transparent 14px
  );
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.who__photo-frame--missing .who__photo { display: none; }
.who__photo-frame:not(.who__photo-frame--missing) .who__photo-fallback { display: none; }
.who__washi {
  position: absolute;
  top: -12px;
  left: 24%;
  width: 130px;
  height: 30px;
  transform: rotate(-5deg);
  z-index: 2;
}
.who__photo-postmark {
  position: absolute;
  top: 14px;
  right: -18px;
  z-index: 2;
  transform: rotate(8deg);
}
.who__photo-caption {
  position: absolute;
  bottom: 18px;
  left: 24px;
  right: 24px;
  font-size: 22px;
  font-weight: 600;
  color: var(--maroon);
  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.who__copy { padding-right: 8px; }
.who__copy h2 { margin: 16px 0 20px; }
.who__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 540px;
}
.who__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  align-items: end;
  border-top: 1.5px dashed rgba(1, 33, 105, 0.20);
  border-bottom: 1.5px dashed rgba(1, 33, 105, 0.20);
  padding: 18px 0;
}
.who__trust li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.who__trust-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--pink);
}
.who__trust-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 880px) {
  .who-we-are { padding: 64px 0 72px; }
  .who__grid { grid-template-columns: 1fr; gap: 40px; }
  .who__copy { padding-right: 0; text-align: center; }
  .who__lead { margin-left: auto; margin-right: auto; }
  .who__trust { grid-template-columns: repeat(3, 1fr); justify-items: center; gap: 16px; }
  .who__trust li { align-items: center; text-align: center; }
}

/* =========================================================
   Team grid (stock portraits, swap to real later)
   ========================================================= */
.team-grid {
  margin: 72px auto 0;
  max-width: 1100px;
  text-align: center;
}
.team-grid__head {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--maroon);
  margin: 0 auto 36px;
  line-height: 1.15;
}
.team-grid__head em {
  color: var(--pink);
  font-family: var(--serif);
  font-style: normal;
}
.team-carousel {
  position: relative;
}
.team-grid__roster {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 18px 4px 26px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.team-grid__roster::-webkit-scrollbar { display: none; }
.team-grid__roster > .team-card {
  flex: 0 0 calc((100% - 28px * 3) / 4);
  scroll-snap-align: start;
}
.team-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  height: 62px;
  padding: 0 20px;
  border-radius: 999px;
  border: 2px solid var(--navy, #012169);
  background: var(--gold, #ffcd00);
  color: var(--navy, #012169);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(1, 33, 105, 0.22);
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}
.team-carousel__chev {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-top: -3px;
}
.team-carousel__paw {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  background-color: var(--navy, #012169);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M256%20224c-79.4%200-192%20122.8-192%20200.2%200%2030.5%2024.5%2055.8%2054.9%2055.8%2048.7%200%2081.6-32%20137.1-32%2054.9%200%2088.5%2032%20137.1%2032%2030.4%200%2054.9-25.3%2054.9-55.8C448%20346.8%20335.4%20224%20256%20224zm-147.4-48.2c-22.1%200-39.6%2024.5-39.6%2054.7s17.5%2054.7%2039.6%2054.7%2039.6-24.5%2039.6-54.7-17.5-54.7-39.6-54.7zm88.6-100.3c-26.6%200-48%2028.2-48%2063s21.5%2063%2048%2063%2048-28.2%2048-63-21.5-63-48-63zm117.6%200c-26.6%200-48%2028.2-48%2063s21.5%2063%2048%2063%2048-28.2%2048-63-21.5-63-48-63zm98.4%20100.3c-22.1%200-39.6%2024.5-39.6%2054.7s17.5%2054.7%2039.6%2054.7%2039.6-24.5%2039.6-54.7-17.5-54.7-39.6-54.7z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M256%20224c-79.4%200-192%20122.8-192%20200.2%200%2030.5%2024.5%2055.8%2054.9%2055.8%2048.7%200%2081.6-32%20137.1-32%2054.9%200%2088.5%2032%20137.1%2032%2030.4%200%2054.9-25.3%2054.9-55.8C448%20346.8%20335.4%20224%20256%20224zm-147.4-48.2c-22.1%200-39.6%2024.5-39.6%2054.7s17.5%2054.7%2039.6%2054.7%2039.6-24.5%2039.6-54.7-17.5-54.7-39.6-54.7zm88.6-100.3c-26.6%200-48%2028.2-48%2063s21.5%2063%2048%2063%2048-28.2%2048-63-21.5-63-48-63zm117.6%200c-26.6%200-48%2028.2-48%2063s21.5%2063%2048%2063%2048-28.2%2048-63-21.5-63-48-63zm98.4%20100.3c-22.1%200-39.6%2024.5-39.6%2054.7s17.5%2054.7%2039.6%2054.7%2039.6-24.5%2039.6-54.7-17.5-54.7-39.6-54.7z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.team-carousel__nav:hover {
  background: var(--navy, #012169);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 28px rgba(1, 33, 105, 0.3);
}
.team-carousel__nav:hover .team-carousel__paw { background-color: #fff; }
.team-carousel__nav--prev:hover .team-carousel__paw { animation: pawStepL 0.5s ease; }
.team-carousel__nav--next:hover .team-carousel__paw { animation: pawStepR 0.5s ease; }
@keyframes pawStepL {
  0%, 100% { transform: translateX(0) rotate(0); }
  50% { transform: translateX(-4px) rotate(-12deg); }
}
@keyframes pawStepR {
  0%, 100% { transform: translateX(0) rotate(0); }
  50% { transform: translateX(4px) rotate(12deg); }
}
.team-carousel__nav--prev { left: -18px; }
.team-carousel__nav--next { right: -18px; }
.team-carousel__nav:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .team-carousel__nav--prev:hover .team-carousel__paw,
  .team-carousel__nav--next:hover .team-carousel__paw { animation: none; }
}
.team-card {
  background: #f3f6fb;
  padding: 12px 12px 18px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(1, 33, 105, 0.05), 0 16px 36px rgba(1, 33, 105, 0.12);
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.team-card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: 0 4px 8px rgba(1, 33, 105, 0.08), 0 24px 50px rgba(1, 33, 105, 0.18);
}
.team-card__washi {
  position: absolute;
  top: -10px;
  left: 30%;
  width: 80px;
  height: 22px;
  transform: rotate(-4deg);
  z-index: 2;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background-size: cover;
  background-position: center top;
  background-color: var(--cream-3);
  border-radius: 2px;
  filter: saturate(0.95);
}
.team-card__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--maroon);
  margin-top: 14px;
  line-height: 1.2;
}
.team-card__role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}
.team-grid__note {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink-2);
  margin: 32px auto 0;
  max-width: 580px;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .team-grid { margin-top: 56px; }
  .team-grid__roster { gap: 20px; }
  .team-grid__roster > .team-card { flex: 0 0 calc((100% - 20px) / 2); }
  .team-carousel__nav--prev { left: 2px; }
  .team-carousel__nav--next { right: 2px; }
}
@media (max-width: 480px) {
  .team-grid__roster { gap: 16px; }
  .team-grid__roster > .team-card { flex: 0 0 78%; }
  .team-grid__note { font-size: 17px; }
  .team-card__name { font-size: 16px; }
  .team-card__role { font-size: 9px; }
  .team-carousel__nav { height: 50px; padding: 0 14px; gap: 4px; }
  .team-carousel__chev { font-size: 24px; }
  .team-carousel__paw { width: 20px; height: 20px; }
  .team-carousel__nav--prev { left: -6px; }
  .team-carousel__nav--next { right: -6px; }
}
@media (max-width: 480px) {
  .who__trust { grid-template-columns: 1fr 1fr; gap: 14px; }
  .who__trust li:last-child { grid-column: span 2; }
  .who__trust-num { font-size: 30px; }
}

/* =========================================================
   Partners / Authorities — grid of cream tiles
   ========================================================= */
.partners-strip { padding: 64px 0 76px; }
.partners-strip__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partners-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partners-strip__logo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f3f6fb;
  border: 1px solid rgba(26, 20, 16, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(26, 20, 16, 0.04), 0 12px 30px rgba(26, 20, 16, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  overflow: hidden;
}
.partners-strip__item:hover .partners-strip__logo-box {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(26, 20, 16, 0.06), 0 18px 40px rgba(26, 20, 16, 0.12);
  filter: none;
}
.partners-strip__logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.8) opacity(0.78);
  transition: filter 220ms ease;
}
.partners-strip__item:hover .partners-strip__logo-box img {
  filter: grayscale(0) opacity(1);
}
.partners-strip__fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
  line-height: 1.2;
}
.partners-strip__fallback small {
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.partners-strip__logo-box--missing img { display: none; }
.partners-strip__logo-box--missing .partners-strip__fallback { display: flex; }
.partners-strip__logo-box--dark { background: var(--maroon); border-color: var(--maroon); }
.partners-strip__logo-box--dark img { filter: grayscale(0) opacity(0.95); }
.partners-strip__item:hover .partners-strip__logo-box--dark img { filter: none; opacity: 1; }
.partners-strip__logo-box--dark .partners-strip__fallback { color: var(--mustard); }
.partners-strip__logo-box--dark .partners-strip__fallback small { color: rgba(255, 205, 0, 0.7); }
.partners-strip__caption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
}
.partners-strip__legal {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-2);
  opacity: 0.72;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .partners-strip { padding: 48px 0 56px; }
  .partners-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .partners-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .partners-strip__caption { font-size: 8px; letter-spacing: 0.14em; }
}

/* =========================================================
   Hero trust badges (above fold)
   ========================================================= */
.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  max-width: 720px;
}
.hero__trust-badge {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.55);
  padding: 5px 9px;
  border-radius: 3px;
  border: 1px solid rgba(1, 33, 105, 0.18);
  white-space: nowrap;
}
.hero__trust-badge strong { color: var(--maroon); font-weight: 700; }
.hero__trust-badge--accent {
  background: var(--mustard);
  border-color: var(--maroon);
  color: var(--ink);
}
.hero__trust-badge--accent strong { color: var(--maroon); }
@media (max-width: 720px) {
  .hero__trust-badge { font-size: 8.5px; padding: 4px 7px; letter-spacing: 0.08em; }
}

/* Form select styled to match dashed-underline fields */
.postcard-form__field select {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--maroon) 50%), linear-gradient(135deg, var(--maroon) 50%, transparent 50%);
  background-position: calc(100% - 8px) center, calc(100% - 4px) center;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  padding-right: 18px;
}

/* "What we DON'T do" — honest list */
.honest { padding: 80px 0 90px; }
.honest__list {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 880px;
  display: grid;
  gap: 14px;
}
.honest__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  background: #f3f6fb;
  border: 1px solid rgba(1, 33, 105, 0.10);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  padding: 16px 22px 16px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  align-items: start;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.honest__item:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.08);
}
.honest__no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
  line-height: 1;
  padding-top: 1px;
}
.honest__item strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--maroon);
  margin-bottom: 4px;
  line-height: 1.3;
}
.honest__footnote {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  max-width: 640px;
}
.honest__footnote a {
  color: var(--maroon);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* =========================================================
   Itemised pricing — line-by-line breakdown
   ========================================================= */
.pricing-itemised {
  max-width: 1000px;
  margin: 56px auto 0;
}
.pricing-itemised__head {
  text-align: center;
  margin-bottom: 26px;
}
.pricing-itemised__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--maroon);
  margin: 8px 0 10px;
  line-height: 1.15;
}
.pricing-itemised__head h3 em { color: var(--pink); font-style: italic; }
.pricing-itemised__head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.eyebrow--ink { color: var(--maroon); }

.pricing-itemised__table {
  background: #f3f6fb;
  border: 1px solid rgba(1, 33, 105, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(1, 33, 105, 0.05), 0 12px 36px rgba(1, 33, 105, 0.08);
}
.pricing-itemised__row {
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  gap: 20px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.5;
}
.pricing-itemised__row:last-child { border-bottom: none; }
.pricing-itemised__row--head {
  background: var(--maroon);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
}
.pricing-itemised__row--head > div { color: var(--mustard); font-weight: 700; }
.pricing-itemised__row--head > div:last-child { text-align: right; }
.pricing-itemised__label {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--maroon);
  font-size: 15px;
}
.pricing-itemised__detail {
  color: var(--ink-2);
}
.pricing-itemised__amount {
  text-align: right;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pricing-itemised__row--our {
  background: rgba(255, 205, 0, 0.10);
  border-top: 2px solid rgba(255, 205, 0, 0.40);
  border-bottom: 2px solid rgba(255, 205, 0, 0.40);
}
.pricing-itemised__row--our .pricing-itemised__label { color: var(--maroon); }
.pricing-itemised__row--total {
  background: var(--maroon);
  color: var(--cream);
  padding: 18px 22px;
}
.pricing-itemised__row--total .pricing-itemised__label,
.pricing-itemised__row--total .pricing-itemised__amount,
.pricing-itemised__row--total .pricing-itemised__detail { color: var(--mustard); font-size: 15px; }
.pricing-itemised__row--total .pricing-itemised__amount { font-size: 18px; }

.pricing-itemised__compare {
  margin-top: 36px;
  background: var(--maroon);
  color: var(--cream);
  border-radius: 8px;
  padding: 28px 32px 32px;
}
.pricing-itemised__compare h4 {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 22px;
}
.pricing-itemised__compare h4 em { color: var(--mustard); font-style: italic; }
.pricing-itemised__compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-itemised__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 205, 0, 0.35);
}
.pricing-itemised__col--ours h5 { color: var(--mustard); }
.pricing-itemised__col--theirs h5 { color: rgba(228, 0, 43, 0.85); }
.pricing-itemised__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-itemised__col li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 249, 252, 0.82);
  padding-left: 14px;
  position: relative;
}
.pricing-itemised__col--ours li::before { content: "✓"; position: absolute; left: 0; color: var(--mustard); font-weight: 700; }
.pricing-itemised__col--theirs li::before { content: "✕"; position: absolute; left: 0; color: rgba(228, 0, 43, 0.85); font-weight: 700; }

@media (max-width: 800px) {
  .pricing-itemised__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .pricing-itemised__row--head { display: none; }
  .pricing-itemised__label { font-size: 14px; }
  .pricing-itemised__detail { font-size: 12.5px; }
  .pricing-itemised__amount { text-align: left; font-size: 13px; padding-top: 4px; }
  .pricing-itemised__compare { padding: 22px 20px; }
  .pricing-itemised__compare-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Footer compliance + vet-network blocks */
.footer__compliance,
.footer__vet-network {
  font-size: 11px;
  color: rgba(250, 241, 222, 0.62);
  line-height: 1.55;
  margin: 8px 0 0;
  font-style: normal;
}
.footer__compliance strong,
.footer__vet-network strong { color: var(--cream); font-weight: 700; }
.footer__vet-network em { font-style: normal; color: var(--mustard); font-weight: 600; }
@media (max-width: 720px) {
  .footer__compliance, .footer__vet-network { font-size: 10px; }
}

/* =========================================================
   Trust & Coverage cards
   ========================================================= */
.coverage { padding: 96px 0; }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.coverage__card {
  background: #f3f6fb;
  border: 1px solid rgba(26, 20, 16, 0.08);
  border-radius: 12px;
  padding: 28px 30px 24px;
  position: relative;
  box-shadow: 0 1px 2px rgba(26, 20, 16, 0.04), 0 14px 34px rgba(26, 20, 16, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.coverage__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(26, 20, 16, 0.06), 0 22px 50px rgba(26, 20, 16, 0.12);
}
.coverage__icon {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 24px;
  opacity: 0.85;
}
.coverage__card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--maroon);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.coverage__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coverage__card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.coverage__card li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
}
.coverage__card li strong {
  color: var(--ink);
  font-weight: 700;
}
.coverage__link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1.5px solid var(--maroon);
  padding-bottom: 2px;
  display: inline-block;
}
.coverage__link:hover { color: var(--pink); border-bottom-color: var(--pink); }
.coverage__footnote {
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  opacity: 0.75;
  margin: 32px auto 0;
  max-width: 720px;
  font-style: italic;
}

@media (max-width: 880px) {
  .coverage { padding: 64px 0 72px; }
  .coverage__grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
  .coverage__card { padding: 24px 22px 20px; }
}

/* Footer dual-entity legal line */
.footer__legal-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  font-size: 11px;
  color: rgba(250, 241, 222, 0.72);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  padding-top: 14px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(250, 241, 222, 0.12);
}
.footer__legal-line strong {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0;
}
.footer__copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(250, 241, 222, 0.55);
}
@media (max-width: 720px) {
  .footer__legal-line { font-size: 10px; gap: 8px 20px; }
}

/* =========================================================
   Highlight accent font — Fredericka the Great
   Applied to <em> within all section / hero / CTA headlines.
   ========================================================= */
.hero h1 em,
.section__head h2 em,
.final-cta h2 em,
.docs-card__head h3 em,
.allroutes__col h3 em,
.breeds__panel h3 em,
.mickleham__copy h3 em,
.calc-form h3 em,
.poll h3 em,
.section--maroon .section__head h2 em,
.who__copy h2 em,
.postcard-cta h2 em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* =========================================================
   Why us — trust cards
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  position: relative;
  background: #f3f6fb;
  padding: 32px 28px 28px;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 10px 30px rgba(26,20,16,0.06);
  transition: transform 250ms, box-shadow 250ms;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(26,20,16,0.06), 0 20px 50px rgba(26,20,16,0.10); }
.why-card:nth-child(even) { background: var(--pink-soft); }
.why-card__num {
  font-family: var(--hand);
  font-size: 56px;
  color: var(--pink);
  line-height: 0.8;
  margin-bottom: 8px;
}
.why-card h3 { font-size: 22px; margin-bottom: 8px; }
.why-card p { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.5; }
.why-card__washi {
  position: absolute;
  top: -10px;
  right: 24px;
  width: 80px;
  height: 22px;
  transform: rotate(8deg);
}

@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Documents checklist
   ========================================================= */

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.docs-card {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  padding: 32px 32px;
  position: relative;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 18px 50px rgba(26,20,16,0.10);
}
.docs-card--ID { background: var(--cream); }
.docs-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.docs-card__head h3 { font-size: 26px; line-height: 1.05; }
.docs-card__head h3 em { font-style: italic; color: var(--pink); }
.docs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.docs-list li b { display: block; margin-bottom: 2px; color: var(--maroon); }
.docs-list li small { color: var(--ink-2); font-size: 13px; }
.docs-checkbox {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--maroon);
  font-weight: 700;
}
@media (max-width: 760px) { .docs-grid { grid-template-columns: 1fr; } }

/* =========================================================
   All routes — chip grid
   ========================================================= */

.allroutes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.allroutes__col h3 {
  font-size: 26px;
  margin-bottom: 4px;
}
.allroutes__col h3 em { font-style: italic; color: var(--pink); }
.allroutes__col > p { color: var(--ink-2); margin: 0 0 18px; font-size: 14px; }
.allroutes__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.allroutes__chip {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 2px 2px 0 rgba(26,20,16,0.18);
  transition: transform 120ms, background 120ms;
  white-space: nowrap;
}
.allroutes__chip:hover { transform: translate(-1px, -1px); background: var(--pink); color: var(--cream); }
.allroutes__chip .arrow { color: var(--pink); font-family: var(--hand); font-size: 16px; }
.allroutes__chip:hover .arrow { color: var(--cream); }

/* Single-direction variant (post AU-only pivot) — full width, no 50/50 split */
.allroutes--single { grid-template-columns: 1fr; max-width: 960px; }

@media (max-width: 960px) {
  .allroutes__chips { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .allroutes { grid-template-columns: 1fr; }
  .allroutes__chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  /* Keep 2-col on narrow mobile — much less vertical scroll than 1-col stack */
  .allroutes__chips { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .allroutes__chip { padding: 8px 8px; font-size: 10px; gap: 4px; }
}

/* =========================================================
   Breeds
   ========================================================= */

.breeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.breeds__panel {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 14px 40px rgba(26,20,16,0.08);
}
.breeds__panel--dogs { background: var(--pink-soft); }
.breeds__panel h3 { font-size: 28px; margin-bottom: 6px; }
.breeds__panel h3 em { font-style: italic; color: var(--pink); }
.breeds__panel > p { color: var(--ink-2); margin: 0 0 18px; font-size: 14px; }
.breeds__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.breeds__list span {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 500;
}
.breeds__panel--dogs .breeds__list span { background: #f3f6fb; }
.breeds__warn {
  border-top: 1px dashed var(--ink);
  padding-top: 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.breeds__warn b { color: var(--maroon); display: block; margin-bottom: 4px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 760px) { .breeds { grid-template-columns: 1fr; } }

/* =========================================================
   Mickleham deep-dive
   ========================================================= */

.mickleham {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.mickleham__photo-stack {
  position: relative;
  height: 480px;
}
.mickleham__photo-stack > * { position: absolute; }
.mickleham__copy h3 { font-size: 36px; margin-bottom: 14px; line-height: 1.05; }
.mickleham__copy h3 em { font-style: italic; color: var(--pink); }
.mickleham__copy p { color: var(--ink-2); margin: 0 0 14px; font-size: 16px; line-height: 1.55; }
.mickleham__copy strong { color: var(--maroon); }
.mickleham__bullets { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.mickleham__bullets li { display: flex; gap: 12px; font-size: 15px; line-height: 1.4; }
.mickleham__bullets li::before { content: "✓"; font-family: var(--serif); color: var(--pink); font-weight: 700; }
@media (max-width: 880px) {
  .mickleham { grid-template-columns: 1fr; }
  .mickleham__photo-stack { height: 380px; }
}

/* =========================================================
   Guides preview
   ========================================================= */

.guides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guide-card {
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,20,16,0.04), 0 10px 30px rgba(26,20,16,0.06);
  transition: transform 250ms cubic-bezier(.2,.9,.25,1), box-shadow 250ms;
  position: relative;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(26,20,16,0.06), 0 18px 44px rgba(26,20,16,0.12); }
.guide-card__photo { aspect-ratio: 4/3; position: relative; }
.guide-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--maroon);
  color: var(--cream);
  padding: 4px 8px;
  z-index: 2;
}
.guide-card__body { padding: 16px 18px 18px; }
.guide-card__body h3 { font-size: 17px; line-height: 1.2; margin-bottom: 6px; }
.guide-card__body p { color: var(--ink-2); margin: 0; font-size: 13px; line-height: 1.4; }
.guide-card__meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 10px;
}
@media (max-width: 980px) { .guides { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guides { grid-template-columns: 1fr; } }

/* =========================================================
   Compare bar (AU→ID vs ID→AU)
   ========================================================= */

.compare {
  max-width: 1080px;
  margin: 0 auto;
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  box-shadow: 0 2px 4px rgba(26,20,16,0.04), 0 24px 60px rgba(26,20,16,0.10);
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(26,20,16,0.15);
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.compare__cell {
  padding: 16px 22px;
  border-right: 1px solid rgba(26,20,16,0.15);
  font-size: 15px;
  line-height: 1.4;
}
.compare__cell:last-child { border-right: none; }
.compare__cell--label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  background: var(--cream-2);
}
.compare__row--head .compare__cell {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.compare__row--head .compare__cell--label { background: transparent; color: var(--cream-3); }
.compare__cell b { color: var(--maroon); display: block; font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 500; line-height: 1; margin-bottom: 4px; }
.compare__cell small { color: var(--ink-2); display: block; font-size: 12px; margin-top: 4px; }
@media (max-width: 720px) {
  .compare__row { grid-template-columns: 1fr; }
  .compare__cell { border-right: none; border-bottom: 1px dashed rgba(26,20,16,0.20); }
}

/* =========================================================
   Press strip
   ========================================================= */

.press-strip {
  background: var(--cream-2);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 22px 0;
}
.press-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
.press-strip__lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.press-strip__logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--maroon);
  opacity: 0.7;
  letter-spacing: -0.01em;
}

/* =========================================================
   Realistic airliner SVG (top-down silhouette)
   ========================================================= */

.miniplane {
  display: inline-block;
  flex-shrink: 0;
  color: var(--maroon);
  filter: drop-shadow(0 2px 3px rgba(26,20,16,0.20));
  vertical-align: middle;
}
.miniplane svg { display: block; width: 100%; height: 100%; }
.miniplane--pink    { color: var(--pink); }
.miniplane--maroon  { color: var(--maroon); }
.miniplane--mustard { color: var(--mustard); }
.miniplane--ink     { color: var(--ink); }
.miniplane--cream   { color: var(--cream); }

/* Flight-path divider between sections */
.flight-divider {
  position: relative;
  height: 80px;
  margin: -20px auto;
  max-width: 1240px;
  pointer-events: none;
  z-index: 3;
}
.flight-divider svg { width: 100%; height: 100%; display: block; overflow: visible; }
.flight-divider__plane {
  position: absolute;
  top: 50%;
  animation: fly-across 26s linear infinite;
}
@keyframes fly-across {
  0%   { left: -8%;  transform: translateY(-50%) rotate(2deg); }
  50%  { transform: translateY(-90%) rotate(-3deg); }
  100% { left: 108%; transform: translateY(-50%) rotate(2deg); }
}

/* Section-eyebrow with mini plane */
.head-with-plane {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.head-with-plane .dotpath {
  height: 1px;
  width: 50px;
  background: repeating-linear-gradient(90deg, var(--maroon) 0, var(--maroon) 4px, transparent 4px, transparent 8px);
  align-self: center;
}

/* Floating airplane scrap animation */
@keyframes plane-bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, -8deg)); }
  50%      { transform: translateY(-4px) rotate(var(--r, -8deg)); }
}
.plane-bob { animation: plane-bob 5s ease-in-out infinite; }

/* =========================================================
   Cost calculator
   ========================================================= */

.calc-section {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.calc-form {
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  padding: 32px 32px 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 24px 60px rgba(0,0,0,0.25);
}
.calc-form h3 { font-size: 22px; margin-bottom: 18px; }
.calc-form h3 em { font-style: italic; color: var(--pink); }
.calc-row { margin-bottom: 22px; }
.calc-row__lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
  margin-bottom: 10px;
}
.calc-options {
  display: grid;
  gap: 8px;
}
.calc-options--2 { grid-template-columns: 1fr 1fr; }
.calc-options--4 { grid-template-columns: repeat(4, 1fr); }
.calc-options button {
  background: #f3f6fb;
  border: 1.5px solid var(--ink);
  padding: 12px 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  transition: transform 100ms;
  position: relative;
}
.calc-options button:hover { background: var(--cream-2); }
.calc-options button.is-active {
  background: var(--pink);
  color: var(--cream);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.calc-options button small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}
.calc-toggles { display: flex; flex-direction: column; gap: 10px; }
.calc-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--ink);
  background: #f3f6fb;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.calc-toggle__check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: transparent;
}
.calc-toggle.is-on { background: var(--pink-soft); }
.calc-toggle.is-on .calc-toggle__check { color: var(--maroon); background: var(--mustard); }
.calc-toggle small { display: block; font-size: 12px; color: var(--ink-2); font-weight: 400; }

.calc-result {
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.20), 0 28px 70px rgba(0,0,0,0.30);
  position: relative;
  align-self: start;
}
.calc-result__lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.calc-result__amount {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--maroon);
  margin-bottom: 4px;
}
.calc-result__amount em { font-style: italic; color: var(--pink); }
.calc-result__amount small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  color: var(--ink-2);
  margin-top: 6px;
}
.calc-result__break {
  border-top: 1px dashed rgba(26,20,16,0.30);
  padding-top: 14px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-result__break-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-2);
}
.calc-result__break-row b { color: var(--ink); font-family: var(--mono); font-weight: 500; }
.calc-result__cta {
  margin-top: 22px;
  display: block;
  text-align: center;
}
@media (max-width: 880px) { .calc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Poll
   ========================================================= */

.poll-section { position: relative; }
.poll {
  max-width: 760px;
  margin: 0 auto;
  background: #f3f6fb;
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 22px;
  padding: 40px 44px 40px;
  box-shadow: 0 2px 4px rgba(26,20,16,0.04), 0 24px 60px rgba(26,20,16,0.12);
  position: relative;
}
.poll__washi {
  position: absolute;
  top: -14px; left: 40px;
  height: 28px; width: 140px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.0) 0, rgba(255,255,255,0.25) 6px, rgba(255,255,255,0.0) 12px),
    var(--mustard);
  transform: rotate(-3deg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
}
.poll h3 { font-size: 28px; margin-bottom: 6px; line-height: 1.1; }
.poll h3 em { font-style: italic; color: var(--pink); }
.poll__sub {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 22px;
}
.poll__list { display: flex; flex-direction: column; gap: 10px; }
.poll-item {
  position: relative;
  display: block;
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.10);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  overflow: hidden;
  transition: transform 200ms, border-color 200ms;
}
.poll-item:hover { transform: translateY(-1px); border-color: var(--pink); }
.poll-item__bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--pink-soft);
  z-index: 0;
  transition: width 600ms cubic-bezier(.2, .9, .25, 1);
}
.poll-item.is-mine .poll-item__bar { background: var(--pink); }
.poll-item.is-mine { color: var(--cream); }
.poll-item__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  z-index: 1;
}
.poll-item__pct {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.poll-item__plane {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 200ms;
}
.poll-item.is-mine .poll-item__plane { opacity: 1; }
.poll__total {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poll__reset {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--maroon); text-decoration: underline;
}

/* Hero header decorations: scattered planes */
.hero-wall .plane-deco {
  position: absolute;
  pointer-events: none;
}
.dotted-arc {
  position: absolute;
  border: 0;
  border-top: 2px dashed rgba(1,33,105,0.40);
  border-radius: 50%;
  pointer-events: none;
  height: 0;
}

/* ============================================================
 * AU PICKUP CITIES grid (8-tile highlighted) · 2026-05-12
 * ============================================================ */
.pickup-cities-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2, #f6efe2) 100%);
  position: relative;
  padding-top: 32px; /* trust-strip already gives ~40px above; avoid 112px dead gap */
}
.pickup-cities {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
}
.pickup-city {
  position: relative;
  background: #fefcf6;
  border: 1.5px solid rgba(26,20,16,0.10);
  border-radius: 8px;
  padding: 16px 18px 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,0.18), 0 1px 3px -1px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
  cursor: default;
}
.pickup-city:hover {
  transform: translateY(-3px) rotate(0deg) !important;
  box-shadow: 0 12px 28px -10px rgba(1,33,105,0.28), 0 3px 6px -2px rgba(0,0,0,0.10);
}
.pickup-city__icon {
  position: absolute;
  top: -15px;
  left: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fffdf7;
  border: 1.5px solid rgba(1, 33, 105, 0.20);
  border-radius: 50%;
  color: #012169;
  box-shadow: 0 3px 9px -3px rgba(1, 33, 105, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pickup-city__icon svg {
  width: 21px;
  height: 21px;
  display: block;
}
.pickup-city:hover .pickup-city__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 14px -4px rgba(1, 33, 105, 0.4);
}
.pickup-city__code {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 28px;
  font-weight: 600;
  color: var(--maroon, #012169);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  padding-right: 12px;
  border-right: 1px dashed rgba(26,20,16,0.20);
}
.pickup-city__name {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--serif, 'Young Serif', serif);
  font-size: 18px;
  color: var(--ink, #1a1410);
  line-height: 1.1;
  margin: 0 0 3px 0;
}
.pickup-city__state {
  grid-row: 2;
  grid-column: 2;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2, #6a5a52);
  margin: 0;
  line-height: 1.3;
}
.pickup-city__stamp { display: none; }
.pickup-cities__note {
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2, #6a5a52);
  max-width: 540px;
}
.pickup-cities__note a {
  color: var(--maroon, #012169);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 880px) {
  .pickup-cities { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pickup-city { padding: 14px 12px; column-gap: 10px; }
  .pickup-city__code { font-size: 22px; padding-right: 8px; }
  .pickup-city__name { font-size: 15px; }
  .pickup-city__state { font-size: 8px; letter-spacing: 0.10em; }
}
/* Stay 2-col even at narrowest — much less vertical scroll than 1-col stack */
@media (max-width: 380px) {
  .pickup-cities { gap: 8px; }
  .pickup-city { padding: 12px 10px; column-gap: 8px; }
  .pickup-city__code { font-size: 19px; padding-right: 6px; }
  .pickup-city__name { font-size: 13.5px; }
}

/* Testi grid CTA below 6 postcards */
.testi-grid__cta {
  margin: 40px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-2, #6a5a52);
}
.testi-grid__cta a {
  color: var(--maroon, #5a1428);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== Verified shipments — redacted AWB proof ===== */
.awb-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .awb-proof { grid-template-columns: 1fr 1fr; }
}
.awb-proof__doc {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(1, 33, 105, 0.16);
  border-radius: 10px;
  padding: 14px 14px 0;
  box-shadow: 0 10px 30px rgba(1, 33, 105, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
.awb-proof__doc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.18);
}
.awb-proof__doc img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 1px solid rgba(26, 20, 16, 0.08);
}
.awb-proof__cap {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy, #012169);
  padding: 12px 4px 16px;
}
.awb-proof__note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-2, #6a5a52);
  margin: 22px auto 0;
  max-width: 560px;
}
@media (max-width: 680px) {
  .awb-proof { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }
  .awb-proof__doc img { height: 300px; }
}

/* Active nav link */
.nav a.is-active {
  font-weight: 700;
  color: var(--maroon, #5a1428);
  border-bottom: 2px solid var(--pink, #e4002b);
  padding-bottom: 2px;
}

/* ============================================================
 * ROUTES SEO (plan-your-move halaman 2) · 2026-05-12
 * ============================================================ */
.routes-seo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.routes-seo__city {
  background: #fefcf6;
  border: 1.5px solid rgba(26,20,16,0.10);
  border-radius: 10px;
  padding: 22px 20px 20px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.18);
  position: relative;
}
.routes-seo__city-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(26,20,16,0.18);
}
.routes-seo__code {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 28px;
  font-weight: 600;
  color: var(--maroon, #5a1428);
  letter-spacing: 0.05em;
  background: var(--pink-soft, #fff0f0);
  padding: 6px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}
.routes-seo__city-head h3 {
  font-family: var(--serif, 'Young Serif', serif);
  font-size: 22px;
  margin: 0 0 2px;
  color: var(--ink, #1a1410);
}
.routes-seo__state {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2, #6a5a52);
}
.routes-seo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.route-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--cream-2, #f6efe2);
  color: var(--ink, #1a1410);
  border: 1px solid rgba(26,20,16,0.10);
  transition: all 0.15s ease;
  cursor: pointer;
}
.route-chip:hover {
  background: var(--pink, #e4002b);
  color: #fff;
  border-color: var(--pink, #e4002b);
  transform: translateY(-1px);
}
.route-chip--reverse {
  background: rgba(1, 33, 105, 0.06);
  border-color: rgba(1, 33, 105, 0.18);
  color: var(--navy, #012169);
}
.route-chip--reverse:hover {
  background: var(--navy, #012169);
  color: #fff;
  border-color: var(--navy, #012169);
}
/* WhatsApp affordance — only on real link chips (<a>), not the legend label */
a.route-chip::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-right: 7px;
  flex: 0 0 auto;
  background-color: #25D366;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12.04%202C6.58%202%202.13%206.45%202.13%2011.91c0%201.75.46%203.45%201.32%204.95L2%2022l5.25-1.38c1.45.79%203.08%201.21%204.79%201.21%205.46%200%209.91-4.45%209.91-9.91C21.95%206.45%2017.5%202%2012.04%202zm5.8%2014.13c-.24.68-1.42%201.31-1.95%201.36-.5.05-1.13.07-1.83-.11-.42-.13-.96-.31-1.65-.61-2.9-1.25-4.79-4.17-4.94-4.36-.14-.19-1.18-1.57-1.18-2.99%200-1.42.75-2.12%201.01-2.41.26-.29.57-.36.76-.36.19%200%20.38%200%20.55.01.18.01.41-.07.65.49.24.57.82%201.97.89%202.11.07.14.12.31.02.49-.09.19-.14.3-.28.46-.14.17-.29.37-.42.5-.14.14-.28.29-.12.57.16.28.72%201.18%201.54%201.91%201.06.95%201.96%201.24%202.24%201.38.28.14.44.12.6-.07.17-.19.69-.8.87-1.08.18-.28.36-.23.61-.14.25.09%201.61.76%201.89.9.28.14.46.21.53.33.07.12.07.68-.17%201.36z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12.04%202C6.58%202%202.13%206.45%202.13%2011.91c0%201.75.46%203.45%201.32%204.95L2%2022l5.25-1.38c1.45.79%203.08%201.21%204.79%201.21%205.46%200%209.91-4.45%209.91-9.91C21.95%206.45%2017.5%202%2012.04%202zm5.8%2014.13c-.24.68-1.42%201.31-1.95%201.36-.5.05-1.13.07-1.83-.11-.42-.13-.96-.31-1.65-.61-2.9-1.25-4.79-4.17-4.94-4.36-.14-.19-1.18-1.57-1.18-2.99%200-1.42.75-2.12%201.01-2.41.26-.29.57-.36.76-.36.19%200%20.38%200%20.55.01.18.01.41-.07.65.49.24.57.82%201.97.89%202.11.07.14.12.31.02.49-.09.19-.14.3-.28.46-.14.17-.29.37-.42.5-.14.14-.28.29-.12.57.16.28.72%201.18%201.54%201.91%201.06.95%201.96%201.24%202.24%201.38.28.14.44.12.6-.07.17-.19.69-.8.87-1.08.18-.28.36-.23.61-.14.25.09%201.61.76%201.89.9.28.14.46.21.53.33.07.12.07.68-.17%201.36z'/%3E%3C/svg%3E") center / contain no-repeat;
}
a.route-chip {
  border-color: rgba(37,211,102,0.35);
}
a.route-chip:hover {
  background: #25D366;
  border-color: #1da851;
  color: #fff;
}
a.route-chip:hover::before {
  background-color: #fff;
}
.route-chip--demo {
  cursor: default;
  pointer-events: none;
  margin: 0 4px;
}
.route-chip--demo::before { display: none; }
.routes-seo__legend {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2, #6a5a52);
}

@media (max-width: 880px) {
  .routes-seo { grid-template-columns: 1fr; gap: 16px; }
  .routes-seo__city { padding: 18px 16px 16px; }
}

/* ===== Routes section — Australian-flag background (Union Jack accent · 2026-05-18) ===== */
#all-routes.routes-au {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #0a3a8f 0%, #012169 45%, #001540 100%);
}
.routes-au__ujack {
  position: absolute; left: -46px; top: -46px; z-index: 1;
  width: min(360px, 30vw); height: auto; opacity: 0.14; pointer-events: none;
}
.routes-au__ujack--br {
  left: auto; right: -46px; top: auto; bottom: -46px;
  transform: scaleX(-1);
}
.routes-au__stars {
  position: absolute; right: 5%; top: 8%; z-index: 1;
  width: min(330px, 24vw); height: auto; opacity: 0.16; pointer-events: none;
}
.routes-au__stars--bl {
  right: auto; left: 4%; top: auto; bottom: 9%;
}
.routes-au__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(110deg, rgba(0,8,26,0.5) 0%, rgba(0,8,26,0.12) 45%, rgba(0,8,26,0.38) 100%);
}
#all-routes.routes-au .container { position: relative; z-index: 3; }
#all-routes.routes-au .section__head .eyebrow { color: #FFC93C; }
#all-routes.routes-au .section__head h2 { color: #fff; }
#all-routes.routes-au .section__head h2 em { color: #FFC93C; }
#all-routes.routes-au .section__head p { color: rgba(255,255,255,0.86); }
#all-routes.routes-au .section__head p strong { color: #fff; }
#all-routes.routes-au .routes-seo__legend { color: rgba(255,255,255,0.78); }
@media (max-width: 700px) {
  .routes-au__ujack { width: 180px; left: -30px; top: -30px; }
  .routes-au__stars { width: 140px; opacity: 0.13; }
  /* keep mobile tidy: only top pair, hide the lower selang-seling pair */
  .routes-au__stars--bl, .routes-au__ujack--br { display: none; }
}

/* ============================================================
 * HERO — single cinematic photo variant · 2026-05-12
 * Removes crossfade animation, makes the single photo dominant.
 * ============================================================ */
.hero-wall--single-photo .hero-wall__photobg-slide--active {
  animation: none !important;
  opacity: 1 !important;
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04) brightness(0.96) contrast(1.04);
}
/* Stronger veil on LEFT side — copy is positioned left over Sydney scenery */
.hero-wall--single-photo .hero-wall__photobg-veil--single {
  background: linear-gradient(
    100deg,
    rgba(58, 40, 24, 0.80) 0%,
    rgba(58, 40, 24, 0.60) 32%,
    rgba(58, 40, 24, 0.24) 62%,
    rgba(58, 40, 24, 0.08) 100%
  );
}
/* Hero copy → LEFT side */
.hero-wall--single-photo .hero-wall__copy {
  max-width: 540px;
  margin: 0 auto 0 0;
  text-align: left;
  padding: 88px 0 72px;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) {
  /* Mobile hero = STACKED: full landscape photo on top, copy on solid navy below.
     No overlay, no crop guessing, no iOS 100vh trap. */
  .hero-wall--single-photo {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    background: var(--navy, #012169);
  }
  .hero-wall--single-photo .hero-wall__photobg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;          /* matches the 1536×1024 source → whole scene visible, no crop */
    overflow: hidden;
  }
  .hero-wall--single-photo .hero-wall__photobg-slide--active {
    background-image: url('img/hero/au-id-hero.jpg?v=2026051605') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-wall--single-photo .hero-wall__photobg-veil--single { display: none; }
  .hero-wall--single-photo .hero-wall__copy {
    max-width: 100%;
    margin: 0;
    padding: 30px 22px 40px;
    text-align: left;
  }
  /* On solid navy now — drop the heavy over-photo text-shadow for crisp text */
  .hero-wall--single-photo .hero-wall__copy * { text-shadow: none !important; }
  .hero-wall--single-photo .hero__lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 100%;
  }
  .hero-wall--single-photo .hero__ctas { width: 100%; }
  .hero-wall--single-photo .hero__ctas .btn {
    flex: 1 1 auto;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/* Copy sits on the light readability veil — no text-shadow (crisp navy text) */
.hero-wall--single-photo .hero-wall__copy * {
  text-shadow: none;
}
.hero-wall--single-photo .hero__h1--compact {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.012em;
}
.hero-wall--single-photo .hero__h1--compact em {
  color: var(--pink-2, #ffcd00) !important;
  font-style: italic;
  font-weight: 800;
}
.hero-wall--single-photo .hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-wall--single-photo .hero__badge {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  padding: 6px 13px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  white-space: nowrap;
}
.hero-wall--single-photo .hero__fineprint {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
@media (max-width: 880px) {
  .hero-wall--single-photo .hero__badge { font-size: 10px; padding: 5px 11px; }
  .hero-wall--single-photo .hero__fineprint { color: rgba(255, 255, 255, 0.80); text-shadow: none; }
}
.hero-wall--single-photo .hero__sub-poetic {
  color: rgba(255, 230, 210, 0.98);
}
.hero-wall--single-photo .hero__lead,
.hero-wall--single-photo .hero__lead-fineprint {
  color: #ffffff;
  font-weight: 500;
}
.hero-wall--single-photo .hero__trust-badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink, #1a1410);
  text-shadow: none;
}

/* Hero CTAs — gradient pills, the creative focal point on the photo bg */
.hero-wall--single-photo .hero__ctas .btn {
  background: linear-gradient(135deg, #ffe24d 0%, #ffcd00 46%, #f5a210 100%);
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 19px 40px;
  font-size: 17.5px;
  transform-origin: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 22px rgba(255, 175, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.18);
  text-shadow: none;
}
.hero-wall--single-photo .hero__ctas .btn:hover {
  background: linear-gradient(135deg, #fff06b 0%, #ffd61f 46%, #ffb01f 100%);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 30px rgba(255, 175, 0, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.22);
}
/* Subtle attention: slow gold "breathing" halo on the PRIMARY CTA only */
@keyframes ctaGlow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 6px 22px rgba(255, 175, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.18); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 6px 30px rgba(255, 175, 0, 0.85), 0 0 0 7px rgba(255, 188, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.18); }
}
/* Playful "goyang" wiggle — quick shake then long rest, inviting not annoying */
@keyframes ctaWiggle {
  0%, 68%, 100% { transform: rotate(0deg); }
  72% { transform: rotate(-3deg); }
  78% { transform: rotate(2.6deg); }
  84% { transform: rotate(-1.8deg); }
  90% { transform: rotate(1deg); }
  95% { transform: rotate(-0.4deg); }
}
.hero-wall--single-photo .hero__ctas .btn:not(.btn--ghost) {
  animation: ctaGlow 2.8s ease-in-out infinite, ctaWiggle 3.2s ease-in-out infinite;
}
.hero-wall--single-photo .hero__ctas .btn--ghost {
  animation: ctaWiggle 3.2s ease-in-out infinite;
}
.hero-wall--single-photo .hero__ctas .btn:hover {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .hero-wall--single-photo .hero__ctas .btn { animation: none; }
}
.hero-wall--single-photo .hero__ctas .btn--ghost {
  background: linear-gradient(135deg, #2be36f 0%, #25D366 50%, #12a449 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 6px 22px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.18);
  text-shadow: none;
}
.hero-wall--single-photo .hero__ctas .btn--ghost:hover {
  background: linear-gradient(135deg, #38ee7c 0%, #20c45e 50%, #0f9442 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 30px rgba(37, 211, 102, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.22);
}

/* ============================================================
 * HERO — Cinematic side-gradient (handoff variant A · 2026-05-18)
 * Pixel-recreated from landing-page-decorate/variations.jsx
 * ============================================================ */
.hero-wall--single-photo .hero-wall__photobg-slide--active {
  filter: none !important;
  background-position: center 38% !important;
}
.hero-wall--single-photo .hero-wall__photobg-veil--single {
  background:
    linear-gradient(95deg,
      rgba(214,234,248,0.95) 0%,
      rgba(214,234,248,0.89) 28%,
      rgba(214,234,248,0.56) 50%,
      rgba(214,234,248,0.14) 68%,
      rgba(214,234,248,0) 80%),
    linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(214,234,248,0.32) 100%);
}
.hero-wall--single-photo .hero-wall__copy.hero-cine {
  max-width: 660px;
  margin: 0 auto 0 0;
  text-align: left;
  color: #0a1226;
  font-family: Inter, system-ui, sans-serif;
  padding: 58px 0 50px;
}
.hero-wall--single-photo .hero-cine__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hero-wall--single-photo .hero-cine__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
  color: #fff;
  background: #0E2A47;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1px 6px rgba(6,24,43,0.22);
  white-space: normal;
}
.hero-wall--single-photo .hero-cine__chip svg { flex-shrink: 0; }
.hero-wall--single-photo .hero-cine__chip strong { font-weight: 700; }
.hero-wall--single-photo .hero-cine__h1 {
  font-family: Manrope, "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  color: #0a1226;
  text-shadow: none;
}
.hero-wall--single-photo .hero-cine__h1 em {
  font-style: italic;
  color: #1455C7;
  font-weight: 800;
}
.hero-wall--single-photo .hero-cine__lead {
  margin: 14px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  color: rgba(10,18,38,0.80);
  max-width: 540px;
}
.hero-wall--single-photo .hero-cine__lead strong { color: #0a1226; font-weight: 700; }
.hero-wall--single-photo .hero-cine__stepper { display: flex; align-items: center; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.hero-wall--single-photo .hero-cine__step { display: inline-flex; align-items: center; gap: 8px; }
.hero-wall--single-photo .hero-cine__step-no {
  width: 24px; height: 24px; border-radius: 50%;
  background: #FFC93C; color: #06182B;
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: Inter, system-ui, sans-serif;
}
.hero-wall--single-photo .hero-cine__step-lbl { font-size: 14px; font-weight: 600; color: #0a1226; font-family: Inter, system-ui, sans-serif; }
.hero-wall--single-photo .hero-cine__step-bar { width: 28px; height: 2px; background: rgba(10,18,38,0.25); }
.hero-wall--single-photo .hero-cine__ctas { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.hero-wall--single-photo .hero-cine__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hero-wall--single-photo .hero-cine__btn--navy {
  background: #1455C7;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(20,85,199,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-wall--single-photo .hero-cine__btn--navy:hover {
  background: #1048A6;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(20,85,199,0.65), inset 0 1px 0 rgba(255,255,255,0.20);
}
.hero-wall--single-photo .hero-cine__btn--wa {
  background: #16A34A;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(22,163,74,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-wall--single-photo .hero-cine__btn--wa:hover {
  background: #0F7A37;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(22,163,74,0.65), inset 0 1px 0 rgba(255,255,255,0.20);
}
.hero-wall--single-photo .hero-cine__fineprint {
  margin: 16px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(10,18,38,0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 880px) {
  .hero-wall--single-photo .hero-wall__copy.hero-cine {
    max-width: 100%;
    padding: 30px 22px 40px;
    color: #fff;
  }
  /* Mobile = copy on solid navy → keep light text */
  .hero-wall--single-photo .hero-cine__h1,
  .hero-wall--single-photo .hero-cine__lead strong,
  .hero-wall--single-photo .hero-cine__step-lbl { color: #fff; }
  .hero-wall--single-photo .hero-cine__h1 em { color: #FFC93C; }
  .hero-wall--single-photo .hero-cine__lead { color: rgba(255,255,255,0.92); }
  .hero-wall--single-photo .hero-cine__fineprint { color: rgba(255,255,255,0.75); }
  .hero-wall--single-photo .hero-cine__step-bar { background: rgba(255,255,255,0.35); }
  .hero-wall--single-photo .hero-cine__chip {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    box-shadow: none;
  }
  .hero-wall--single-photo .hero-cine__h1 { font-size: clamp(34px, 10vw, 46px); }
  .hero-wall--single-photo .hero-cine__lead { font-size: 16px; max-width: 100%; }
  .hero-wall--single-photo .hero-cine__ctas { width: 100%; }
  .hero-wall--single-photo .hero-cine__btn { flex: 1 1 auto; }
  .hero-wall--single-photo .hero-cine__chip { font-size: 11.5px; padding: 6px 11px; }
}

/* ============================================================
 * HOW IT WORKS — 3-step overview (conversion 2026-05-18)
 * ============================================================ */
.howto3 {
  list-style: none;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
}
.howto3__banner {
  max-width: 780px;
  margin: 30px auto 6px;
}
.howto3__banner svg { width: 100%; height: auto; display: block; }
.howto3__step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffdf7;
  border: 1.5px solid rgba(20,85,199,0.14);
  border-radius: 12px;
  padding: 30px 24px 22px;
  text-align: left;
  box-shadow: 0 4px 16px -10px rgba(20,85,199,0.30);
}
.howto3__art {
  margin-top: auto;
  align-self: flex-end;
  width: 50px;
  height: 50px;
  opacity: 0.85;
  padding-top: 16px;
}
.howto3__art svg { width: 100%; height: 100%; display: block; }
.howto3__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1455C7;
  color: #fff;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px -4px rgba(20,85,199,0.55);
}
.howto3__title {
  font-family: var(--serif, 'Young Serif', serif);
  font-size: 20px;
  color: var(--ink, #0a1226);
  margin: 0 0 8px;
  line-height: 1.2;
}
.howto3__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2, #6a5a52);
  margin: 0;
}
.howto3__proof {
  max-width: 760px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.howto3__proof-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fffdf7;
  border: 1.5px solid rgba(20,85,199,0.14);
  box-shadow: 0 6px 20px -12px rgba(20,85,199,0.30);
}
.howto3__proof-item img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.howto3__proof-item figcaption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2, #6a5a52);
}
.howto3__proof-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2, #6a5a52);
  font-style: italic;
}
@media (max-width: 700px) {
  .howto3__proof { grid-template-columns: 1fr; max-width: 420px; }
  .howto3__proof-item img { height: 200px; }
}
.howto3__trust {
  list-style: none;
  margin: 30px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 44px;
  max-width: 920px;
}
.howto3__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink, #0a1226);
}
.howto3__trust svg { flex-shrink: 0; }
.howto3__cta {
  position: relative;
  margin: 40px auto 0;
  max-width: 620px;
  text-align: center;
  background: #fffdf7;
  border: 1.5px solid rgba(20,85,199,0.16);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 6px 22px -12px rgba(20,85,199,0.30);
}
.howto3__cta-paw {
  position: absolute;
  right: -14px;
  bottom: -24px;
  width: 76px;
  height: 76px;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(20,85,199,0.22));
}
.howto3__cta-paw svg { width: 100%; height: 100%; display: block; }
@media (max-width: 820px) {
  .howto3__cta-paw { width: 58px; height: 58px; right: -6px; bottom: -18px; }
  .howto3__banner { margin: 22px auto 4px; }
}
.howto3__cta-title {
  font-family: var(--serif, 'Young Serif', serif);
  font-size: 24px;
  color: var(--ink, #0a1226);
  margin: 0 0 8px;
}
.howto3__cta-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2, #6a5a52);
  margin: 0 0 22px;
}
.howto3__cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.howto3__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.howto3__btn--primary {
  background: #1455C7;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(20,85,199,0.55);
}
.howto3__btn--primary:hover {
  background: #1048A6;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(20,85,199,0.65);
}
.howto3__btn--wa {
  background: #16A34A;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(22,163,74,0.55);
}
.howto3__btn--wa:hover {
  background: #0F7A37;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(22,163,74,0.65);
}
@media (max-width: 820px) {
  .howto3 { grid-template-columns: 1fr; gap: 14px; max-width: 460px; }
  .howto3__step { padding: 24px 20px; }
  .howto3__trust { flex-direction: column; align-items: center; gap: 12px; }
  .howto3__cta-btns { width: 100%; }
  .howto3__btn { flex: 1 1 auto; }
}

/* ============================================================
 * POSTCARD WALL section (halaman 2) · 2026-05-12
 * Moved from index.html hero · standalone scrollable section.
 * ============================================================ */
.postcard-wall-section {
  background: linear-gradient(180deg, var(--cream, #fefcf6) 0%, var(--cream-2, #f6efe2) 100%);
  position: relative;
  overflow: hidden;
}
.postcard-wall {
  position: relative;
  max-width: 1080px;
  margin: 40px auto 0;
  min-height: 560px;
}
.postcard-wall .scrap {
  position: absolute;
}
@media (max-width: 900px) {
  .postcard-wall {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .postcard-wall .scrap {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 280px !important;
  }
}

/* ============================================================
 * WHY VIA JAKARTA — regulatory explainer · 2026-05-13
 * 3-step flow with arrows: AU origin → CGK/SUB entry → final ID address
 * ============================================================ */
.via-jakarta {
  background: linear-gradient(180deg, var(--cream, #e6edf6) 0%, var(--cream-2, #d4dfee) 100%);
  position: relative;
}
.via-jakarta__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 1100px;
  margin: 40px auto 0;
}
.via-jakarta__step {
  background: #fefcf6;
  border: 1.5px solid rgba(26,20,16,0.10);
  border-radius: 10px;
  padding: 22px 20px 20px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 18px -10px rgba(0,0,0,0.18), 0 1px 3px -1px rgba(0,0,0,0.08);
}
.via-jakarta__step--accent {
  background: #fff8e0;
  border-color: var(--maroon, #012169);
  border-width: 2px;
  box-shadow: 0 8px 28px -10px rgba(1,33,105,0.30), 0 2px 6px -2px rgba(0,0,0,0.10);
}
.via-jakarta__icon {
  color: var(--maroon, #012169);
  margin-bottom: 6px;
}
.via-jakarta__step-no {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--pink, #e4002b);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--mono, monospace);
  font-size: 12px;
  font-weight: 700;
}
.via-jakarta__step--accent .via-jakarta__step-no {
  background: var(--maroon, #012169);
  color: var(--pink-2, #ffcd00);
}
.via-jakarta__step h3 {
  font-family: var(--serif, 'Young Serif', serif);
  font-size: 19px;
  margin: 6px 0 8px;
  color: var(--ink, #1a1410);
  line-height: 1.15;
}
.via-jakarta__step h3 em {
  font-style: italic;
  color: var(--pink, #e4002b);
}
.via-jakarta__step p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2, #6a5a52);
  margin: 0;
}
.via-jakarta__note {
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--pink-soft, #fff3a8);
  border-left: 3px solid var(--maroon, #012169);
  font-family: var(--hand, 'Caveat', cursive);
  font-size: 15px;
  color: var(--maroon, #012169);
  line-height: 1.3;
}
.via-jakarta__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--maroon, #012169);
  opacity: 0.6;
}
.via-jakarta__arrow-label {
  font-family: var(--mono, monospace);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2, #6a5a52);
  white-space: nowrap;
}
.via-jakarta__footnote {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2, #6a5a52);
  max-width: 720px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .via-jakarta__flow {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
  /* Rotate only the SVG arrow icon, NOT the text label */
  .via-jakarta__arrow svg {
    transform: rotate(90deg);
  }
  .via-jakarta__arrow {
    padding: 4px 0;
    flex-direction: row;
    gap: 10px;
  }
  .via-jakarta__arrow-label {
    transform: none;
  }
}

/* Hide Final CTA decorative stamps on mobile (overlap headline + WA button) */
@media (max-width: 720px) {
  .final-cta__deco { display: none !important; }
}

/* ============================================================
 * TRUST BADGES STRIP (replaces Stats Departures · 2026-05-13)
 * 4 badges: Safety First · Handled with Love · Experienced · AU→ID
 * ============================================================ */
.trust-strip {
  background: var(--cream, #e6edf6);
  padding: 36px 0 40px;
}
.trust-strip__list {
  list-style: none;
  margin: 0 auto;
  padding: 18px 26px;
  background: #fefcf6;
  border-radius: 999px;
  box-shadow: 0 8px 32px -12px rgba(1, 33, 105, 0.18), 0 2px 6px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 20, 16, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 980px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 4px 12px;
  border-right: 1px solid rgba(26, 20, 16, 0.10);
}
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__icon {
  color: var(--maroon, #012169);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-strip__label {
  font-family: var(--sans, 'DM Sans', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #1a1410);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

@media (max-width: 880px) {
  .trust-strip { padding: 24px 0 28px; }
  .trust-strip__list {
    border-radius: 24px;
    padding: 16px 14px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 8px;
  }
  .trust-strip__item {
    padding: 4px 6px;
    border-right: 0;
    gap: 10px;
  }
  /* Vertical separator between columns; horizontal between rows */
  .trust-strip__item:nth-child(odd) { border-right: 1px solid rgba(26, 20, 16, 0.10); }
  .trust-strip__item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 20, 16, 0.10); padding-bottom: 12px; }
  .trust-strip__item:nth-child(n+3) { padding-top: 4px; }
  .trust-strip__label { font-size: 11.5px; }
  .trust-strip__icon svg { width: 24px; height: 24px; }
}

/* ============ HANDOVER VIDEO ============ */
.handover-video {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 10px 40px rgba(1, 33, 105, 0.18),
    0 2px 8px rgba(10, 18, 38, 0.08);
  aspect-ratio: 528 / 944;
  position: relative;
  border: 1px solid rgba(1, 33, 105, 0.12);
}
.handover-video__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.handover-video__unmute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(10, 18, 38, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.handover-video__unmute:hover { background: rgba(10, 18, 38, 0.82); transform: scale(1.05); }
.handover-video__unmute:focus-visible { outline: 2px solid var(--gold, #FFC93C); outline-offset: 2px; }
.handover-video__icon { width: 18px; height: 18px; pointer-events: none; }
.handover-video__icon--unmuted { display: none; }
.handover-video__unmute[aria-pressed="true"] .handover-video__icon--muted { display: none; }
.handover-video__unmute[aria-pressed="true"] .handover-video__icon--unmuted { display: inline-block; }

.handover-video__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.22);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 0 1px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 2;
  text-transform: lowercase;
}
@media (max-width: 540px) {
  .handover-video { max-width: 78vw; border-radius: 14px; }
  .handover-video__unmute { width: 34px; height: 34px; bottom: 10px; right: 10px; }
  .handover-video__icon { width: 16px; height: 16px; }
  .handover-video__watermark { font-size: 19px; letter-spacing: 0.06em; }
}

/* ============================================================
   VIDEO HERO (vhero) — real handover footage as first highlight
   Replaces the cinematic collage hero. Self-contained. 2026-06-04
   ============================================================ */
.vhero {
  position: relative;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(20,85,199,0.30) 0%, rgba(20,85,199,0) 55%),
    linear-gradient(168deg, #0E2A47 0%, #06182B 70%);
  overflow: hidden;
}
.vhero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 110%, rgba(255,201,60,0.10), transparent 70%);
  pointer-events: none;
}
.vhero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-areas:
    "head  media";
  align-items: center;
  column-gap: 52px;
  row-gap: 22px;
  padding: 56px 0 52px;
}
.vhero__head  { grid-area: head; align-self: center; }
.vhero__media { grid-area: media; align-self: center; justify-self: center; margin: 0; }

/* --- Copy --- */
.vhero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #FFC93C;
  margin-bottom: 16px;
}
.vhero__h1 {
  margin: 0;
  font-family: Manrope, "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.022em;
  color: #fff;
}
.vhero__lead {
  margin: 16px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.25vw, 17px); line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.vhero__lead strong { color: #fff; font-weight: 700; }

/* --- CTAs --- */
.vhero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.vhero__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 12px; border: none;
  font-family: Inter, system-ui, sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: -0.005em; text-decoration: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.vhero__btn--navy {
  background: #1455C7; color: #fff;
  box-shadow: 0 8px 22px -6px rgba(20,85,199,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.vhero__btn--navy:hover { background: #1048A6; transform: translateY(-2px); }
.vhero__btn--wa {
  background: #16A34A; color: #fff;
  box-shadow: 0 8px 22px -6px rgba(22,163,74,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.vhero__btn--wa:hover { background: #0F7A37; transform: translateY(-2px); }
.vhero__fineprint {
  margin: 16px 0 0;
  font-family: Inter, system-ui, sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.70);
  display: inline-flex; align-items: center; gap: 6px;
}

/* --- Video frame (portrait phone footage) --- */
.vhero__videoframe {
  position: relative;
  width: clamp(240px, 26vw, 330px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #06182B;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 60px -18px rgba(0,0,0,0.6), 0 0 0 6px rgba(255,255,255,0.04);
}
.vhero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.vhero__unmute {
  position: absolute; right: 12px; bottom: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(6,24,43,0.62); color: #fff;
  border: 1px solid rgba(255,255,255,0.28); cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.18s ease;
}
.vhero__unmute:hover { background: rgba(6,24,43,0.85); }
.vhero__unmute-ic { width: 20px; height: 20px; }
.vhero__unmute-ic--unmuted { display: none; }
.vhero__unmute[aria-pressed="true"] .vhero__unmute-ic--muted { display: none; }
.vhero__unmute[aria-pressed="true"] .vhero__unmute-ic--unmuted { display: inline; }
.vhero__videotag {
  position: absolute; left: 12px; top: 12px;
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(6,24,43,0.6); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-family: Inter, system-ui, sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.02em; backdrop-filter: blur(4px);
}
.vhero__videotag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #ff4d4d; margin-right: 7px; box-shadow: 0 0 0 0 rgba(255,77,77,0.7);
  animation: vheroRecPulse 1.8s infinite;
}
@keyframes vheroRecPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,77,77,0.6); }
  70% { box-shadow: 0 0 0 6px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.vhero__watermark {
  position: absolute; right: 10px; top: 12px;
  font-family: Inter, system-ui, sans-serif; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.03em;
  pointer-events: none;
}

/* --- Mobile: single column, video between headline and CTA --- */
@media (max-width: 880px) {
  .vhero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "media";
    column-gap: 0; row-gap: 18px;
    padding: 28px 22px 30px;
    text-align: left;
  }
  .vhero__head { align-self: auto; }
  .vhero__media { align-self: auto; justify-self: stretch; }
  .vhero__videoframe { width: min(280px, 74vw); margin: 4px auto 0; }
  .vhero__h1 { font-size: clamp(30px, 8.5vw, 42px); }
  .vhero__lead { font-size: 16px; max-width: 100%; }
  .vhero__ctas { width: 100%; }
  .vhero__btn { flex: 1 1 auto; }
}

/* ============================================================
   REAL OWNER TESTIMONIAL (vtesti) — Chiko / Ms Eka, below hero. 2026-06-04
   ============================================================ */
.vtesti { background: var(--cream); padding: 44px 0 8px; }
.vtesti__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(10,18,38,0.08);
  border-radius: 18px;
  padding: 30px 32px 28px;
  box-shadow: 0 18px 44px -22px rgba(6,24,43,0.35);
  text-align: center;
}
.vtesti__badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px;
  background: #0E2A47; color: #fff;
  font-family: Inter, system-ui, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 14px;
}
.vtesti__mark {
  display: block; font-family: Georgia, "Times New Roman", serif;
  font-size: 52px; line-height: 0.6; color: #FFC93C; height: 26px;
}
.vtesti__quote {
  margin: 0 auto; max-width: 600px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.6;
  color: #1c2740; font-style: normal;
}
.vtesti__by { margin-top: 16px; }
.vtesti__name {
  display: block; font-family: Manrope, Inter, sans-serif;
  font-weight: 800; font-size: 15px; color: #06182B;
}
.vtesti__role {
  display: block; font-family: Inter, system-ui, sans-serif;
  font-size: 13px; color: rgba(10,18,38,0.6); margin-top: 2px;
}
@media (max-width: 880px) {
  .vtesti { padding: 26px 0 4px; }
  .vtesti__card { padding: 24px 20px 22px; border-radius: 16px; }
}

/* vtesti — with photo (Chiko / Ms Eka) · 2026-06-04 */
.vtesti__card--photo {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: stretch;
  text-align: left;
  max-width: 850px;
  padding: 0;
  overflow: hidden;
}
.vtesti__photo { position: relative; min-height: 100%; background: #0E2A47; }
.vtesti__photo img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; object-position: 50% 26%; display: block;
}
.vtesti__wm {
  position: absolute; right: 10px; bottom: 9px;
  font-family: Inter, system-ui, sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55); pointer-events: none;
}
.vtesti__body { padding: 28px 30px 26px 2px; align-self: center; }
.vtesti__card--photo .vtesti__mark { text-align: left; }
.vtesti__card--photo .vtesti__quote { margin: 0; max-width: none; font-size: clamp(15px, 1.4vw, 17.5px); }
@media (max-width: 880px) {
  .vtesti__card--photo { grid-template-columns: 1fr; gap: 0; }
  .vtesti__photo { aspect-ratio: 4 / 3; min-height: 0; }
  .vtesti__photo img { min-height: 0; object-position: 50% 28%; }
  .vtesti__body { padding: 22px 20px 22px; }
}

/* herocta — CTA dipindah ke bawah testimoni Ms Eka · 2026-06-04 */
.herocta { background: var(--cream); padding: 4px 0 42px; }
.herocta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.herocta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.herocta__fineprint {
  margin: 16px 0 0; font-family: Inter, system-ui, sans-serif; font-size: 13px;
  color: rgba(10,18,38,0.62);
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
@media (max-width: 880px) {
  .herocta { padding: 2px 0 30px; }
  .herocta__inner { padding: 0 22px; }
  .herocta__btns { flex-direction: column; }
  .herocta__btns .vhero__btn { width: 100%; }
}

/* howto3 -> compact button/pill style (judul aja, no desc) · 2026-06-04 */
.howto3 {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 30px auto 0;
  grid-template-columns: none;
}
.howto3__step {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border-radius: 14px;
}
.howto3__no {
  width: 36px; height: 36px;
  font-size: 16px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.howto3__title { margin: 0; font-size: 18px; line-height: 1.25; }
@media (max-width: 880px) {
  .howto3 { max-width: 100%; }
  .howto3__step { padding: 14px 18px; }
  .howto3__title { font-size: 16.5px; }
  .howto3__no { width: 34px; height: 34px; font-size: 15px; }
}
