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

:root {
  /* Palette */
  --cream: #faf1de;
  --cream-2: #f4e3c1;
  --cream-3: #ecd6a8;
  --pink: #ec4d80;
  --pink-2: #f78fae;
  --pink-soft: #fbd9e3;
  --maroon: #5a1428;
  --maroon-2: #7a1f3a;
  --ink: #1a1410;
  --ink-2: #3a2a26;
  --mustard: #d99526;
  --postmark-blue: #2a4d7a;

  /* Type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* {
  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;
}

/* 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(236, 77, 128, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(217, 149, 38, 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: 600; margin: 0; line-height: 1.05; letter-spacing: -0.01em; }

h1 { font-size: clamp(46px, 7vw, 92px); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.01em; }

.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(90,20,40,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(90,20,40,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: #fefcf6;
  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(90, 20, 40, 0.10) 0px,
      rgba(90, 20, 40, 0.10) 2px,
      transparent 2px,
      transparent 14px
    );
  position: relative;
  overflow: hidden;
}
.photo--pink { background-color: var(--pink-soft); }
.photo--maroon {
  background-color: #8a3a55;
  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: #e8c281; }
.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: #fefcf6;
  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(217, 149, 38, 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(90, 20, 40, 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: 36px;
  height: 36px;
  border-radius: 12px;
  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(90,20,40,0.30);
}
.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__cta {
  margin-left: 8px;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  background: var(--maroon);
  color: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(90,20,40,0.25);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 200ms, box-shadow 200ms;
}
.nav__cta:hover { color: var(--cream); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(90,20,40,0.35); }

@media (max-width: 820px) {
  .nav a:not(.nav__cta) { display: none; }
}

/* =========================================================
   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(236, 77, 128, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(217, 149, 38, 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(90,20,40,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(90,20,40,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(90,20,40,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(90,20,40,0.30);
  animation: spin 60s linear infinite;
}
.orbit__path--2 {
  inset: 8%;
  border-color: rgba(217,149,38,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(90,20,40,0.18) 0, rgba(90,20,40,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: #e8c281; }

/* 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;
}
.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-wall__cards {
  position: relative;
  height: 480px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-wall__cards .scrap { position: absolute; }

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

.section { padding: 120px 0; position: relative; }
.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: 500; }
.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: #fefcf6;
  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(90,20,40,0.20), 0 24px 60px rgba(90,20,40,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: #fefcf6;
  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: 17px;
  color: var(--maroon);
  position: absolute;
  bottom: -18px;
  right: 10px;
  background: var(--mustard);
  padding: 2px 10px;
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1.2;
}

@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: #fefcf6;
  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(90,20,40,0.18), 0 24px 60px rgba(90,20,40,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: #fefcf6;
  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: #fefcf6;
  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 {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 88px;
  height: 88px;
  font-size: 8px;
  z-index: 2;
}

@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; } }

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

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fefcf6;
  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: 800px; }
.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); }

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

.final-cta {
  text-align: center;
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  margin: 0 auto 26px;
  max-width: 880px;
}
.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: #fefcf6;
  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;
}

/* =========================================================
   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(90,20,40,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; } }

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  position: relative;
  background: #fefcf6;
  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: #fefcf6;
  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: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.allroutes__chip {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 2px 2px 0 rgba(26,20,16,0.18);
  transition: transform 120ms;
}
.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); }
@media (max-width: 760px) { .allroutes { grid-template-columns: 1fr; } }

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

.breeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.breeds__panel {
  background: #fefcf6;
  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: #fefcf6; }
.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: #fefcf6;
  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: #fefcf6;
  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: #fefcf6;
  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: #fefcf6;
  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: #fefcf6;
  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(90,20,40,0.40);
  border-radius: 50%;
  pointer-events: none;
  height: 0;
}
