/* =====================================================================
   JET Australia — Homepage  (Regenerative / Earthy edition)
   Scoped under .jet-home so other pages stay untouched.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens — multiple earth tones, equal weight ---------- */
/* Defined on body:has(.jet-home) (NOT on .jet-home) so they cascade
   into the navbar and footer too — both sit OUTSIDE the .jet-home wrapper
   in the layout. Vars defined on .jet-home alone don't reach them. */
body:has(.jet-home) {
  --bone:        #FBF6E8;     /* lightest cream — card surfaces */
  --cream:       #F4ECD7;     /* primary page bg */
  --cream-2:     #ECE2C2;     /* slightly deeper cream */
  --sage-light:  #DCE2C2;     /* light sage tint */
  --sage:        #B8C49E;     /* warm sage section */
  --sage-deep:   #6E8159;     /* deeper sage */
  --moss:        #2F5D3F;     /* primary moss green */
  --moss-deep:   #1A3624;     /* deepest moss — research band */
  --ochre:       #D49A4D;     /* warm honey */
  --ochre-soft:  #ECC68A;     /* light honey */
  --terracotta:  #C4654E;     /* clay */
  --terra-deep:  #8C3F2D;     /* deeper clay */
  --soil:        #7B5230;     /* warm umber */
  --soil-deep:   #432912;     /* deepest brown — text on ochre */
  --ink:         #2A2118;     /* warm dark brown — primary type */
  --ink-soft:    #4A3E30;     /* body type */
  --mid:         #8C7A66;     /* muted muted */
  --line:        rgba(42,33,24,0.12);

  --serif: 'Spectral', 'Iowan Old Style', 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --r-sm:    8px;
  --r-md:    16px;
  --r-lg:    28px;
  --r-xl:    40px;
  --r-pill:  999px;

  --shadow-sm: 0 2px 6px rgba(42,33,24,0.06);
  --shadow-md: 0 8px 24px rgba(42,33,24,0.08);
  --shadow-lg: 0 18px 48px rgba(42,33,24,0.12);

  --gutter:  clamp(20px, 5vw, 64px);
  --max-w:   1200px;
}

.jet-home {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.jet-home p { color: var(--ink-soft); margin: 0; font-family: var(--sans); }
.jet-home a { color: inherit; text-decoration: none; }
.jet-home img, .jet-home svg { display: block; max-width: 100%; }
.jet-home h1, .jet-home h2, .jet-home h3, .jet-home h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.jet-home em { font-style: italic; }

/* =====================================================================
   Navbar override — only when .jet-home wrapper present
   ===================================================================== */
body:has(.jet-home) { background: var(--cream); }
/* note — no backdrop-filter on .navbar: it would create a containing block
   for the fixed-position mobile drawer (.nav-menu) and visually clip it
   to the navbar height. Use a near-opaque solid tint instead. */
body:has(.jet-home) .navbar {
  background: rgba(244, 236, 215, 0.96);
  border-bottom: 1px solid rgba(42,33,24,0.08);
}
body:has(.jet-home) .navbar.scrolled {
  background: var(--cream);
  border-bottom: 1px solid rgba(42,33,24,0.12);
  box-shadow: 0 1px 0 rgba(42,33,24,0.04);
}
body:has(.jet-home) .navbar__inner { height: 72px; max-width: 1320px; padding: 0 var(--gutter); }
body:has(.jet-home) .nav-logo-img { height: 34px; border-radius: 0; filter: grayscale(0.25) contrast(1.05); }
body:has(.jet-home) .nav-logo-text { color: var(--ink); }
body:has(.jet-home) .nav-link {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 0;
  margin: 0 18px;
  border-radius: 0;
  border-bottom: 1.5px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
body:has(.jet-home) .nav-link:hover,
body:has(.jet-home) .nav-link.active {
  background: transparent;
  color: var(--moss);
  border-bottom-color: var(--moss);
}
body:has(.jet-home) .navbar.scrolled .nav-link:hover,
body:has(.jet-home) .navbar.scrolled .nav-link.active {
  color: var(--moss);
  background: transparent;
}
body:has(.jet-home) .nav-cta {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  background: var(--moss);
  color: var(--cream);
  border: 1.5px solid var(--moss);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  margin-left: 18px;
}
body:has(.jet-home) .navbar.scrolled .nav-cta { background: var(--moss); color: var(--cream); border-color: var(--moss); }
body:has(.jet-home) .nav-cta:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: var(--cream); }
body:has(.jet-home) .nav-hamburger span { background: var(--ink); }

/* =====================================================================
   Helpers
   ===================================================================== */
.jet-home .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.jet-home .wrap--wide { max-width: 1320px; }
.jet-home section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }

.jet-home .eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.jet-home .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--moss);
  border-radius: 2px;
}

.jet-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 14px 28px 15px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--moss);
  background: var(--moss);
  color: var(--cream);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.jet-home .btn:hover {
  background: var(--moss-deep);
  border-color: var(--moss-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.jet-home .btn .arr { display: inline-block; transition: transform .2s ease; }
.jet-home .btn:hover .arr { transform: translateX(3px); }

.jet-home .btn--ghost { background: transparent; color: var(--moss); }
.jet-home .btn--ghost:hover { background: var(--moss); color: var(--cream); border-color: var(--moss); }
.jet-home .btn--cream { background: var(--cream); color: var(--moss-deep); border-color: var(--cream); }
.jet-home .btn--cream:hover { background: var(--bone); color: var(--moss-deep); border-color: var(--bone); }
.jet-home .btn--outline-cream { background: transparent; color: var(--cream); border-color: var(--cream); }
.jet-home .btn--outline-cream:hover { background: var(--cream); color: var(--moss-deep); border-color: var(--cream); }

/* =====================================================================
   1 — HERO
   ===================================================================== */
.jet-home .hero {
  background: var(--cream);
  padding: clamp(120px, 16vh, 168px) 0 clamp(72px, 9vw, 128px);
  overflow: hidden;
  position: relative;
}
.jet-home .hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.jet-home .hero__copy {}
.jet-home .hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--moss-deep);
  margin: 0 0 28px 0;
}
.jet-home .hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
}
.jet-home .hero__sub {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px 0;
  max-width: 38ch;
}
.jet-home .hero__sub strong { color: var(--ink); font-weight: 600; }
.jet-home .hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.jet-home .hero__cred {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.jet-home .hero__cred > div {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 92px;
}
.jet-home .hero__cred .num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
  letter-spacing: -0.01em;
}
.jet-home .hero__cred .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* hero illustration */
.jet-home .hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jet-home .hero__visual::before {
  content: "";
  position: absolute;
  inset: -8% -2% -4% -2%;
  background: radial-gradient(closest-side, rgba(184, 196, 158, 0.45), rgba(184, 196, 158, 0) 72%);
  filter: blur(8px);
  z-index: 0;
}
.jet-home .hero__visual svg {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  z-index: 1;
}

@media (max-width: 880px) {
  .jet-home .hero__inner { grid-template-columns: 1fr; }
  .jet-home .hero__visual { order: -1; max-width: 320px; margin: 0 auto; }
  .jet-home .hero__cred { margin-top: 40px; }
}

/* ---- Hero — split layout (text left, system sketch right on desktop; stacked on mobile)
   Three grid items: .hero__center (left col), .hero__system (right col),
   .hero__cred (full-width row underneath spanning both cols). ---- */
.jet-home .hero--centered {
  display: grid;
  grid-template-columns: 6fr 5fr;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: clamp(36px, 4vw, 56px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(96px, 12vh, 120px) var(--gutter) clamp(56px, 7vw, 96px);
  min-height: 0;
}

/* Left column */
.jet-home .hero--centered .hero__center {
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-column: 1;
  grid-row: 1;
}
.jet-home .hero--centered h1 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.026em;
  color: var(--moss-deep);
  margin: 16px 0 22px;
  max-width: 13ch;
  text-wrap: balance;
}
.jet-home .hero--centered h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
}
.jet-home .hero--centered .hero__sub {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 42ch;
  text-wrap: pretty;
}
.jet-home .hero--centered .hero__sub strong { color: var(--ink); font-weight: 600; }
.jet-home .hero--centered .hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}

/* Right column — the system illustration with a soft sage glow behind it */
.jet-home .hero__system {
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  grid-column: 2;
  grid-row: 1;
}
.jet-home .hero__system::before {
  content: "";
  position: absolute;
  inset: -6% -3% -8% -3%;
  background: radial-gradient(closest-side, rgba(184, 196, 158, 0.38), rgba(184, 196, 158, 0) 72%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.jet-home .hero__system svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(42,33,24,0.07));
}

/* Full-width credentials strip — spans both columns */
.jet-home .hero--centered .hero__cred {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 56px);
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  max-width: none;
}
.jet-home .hero--centered .hero__cred > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 110px;
  text-align: left;
  flex: 1 1 auto;
}

/* Hero animation timings */
.jet-home .hero--centered .hero__center > * { animation: rise 1s both ease-out; }
.jet-home .hero--centered .eyebrow      { animation-delay: 0.05s; }
.jet-home .hero--centered h1            { animation-delay: 0.15s; }
.jet-home .hero--centered .hero__sub    { animation-delay: 0.32s; }
.jet-home .hero--centered .hero__actions{ animation-delay: 0.48s; }
.jet-home .hero--centered .hero__cred   { animation: rise 1s 0.7s both ease-out; }
.jet-home .hero__system                 { animation: rise 1.1s 0.2s both ease-out; }

/* Tablet / mobile: stack — text on top, sketch below, then credentials */
@media (max-width: 880px) {
  .jet-home .hero--centered {
    grid-template-columns: 1fr;
    row-gap: clamp(40px, 6vw, 56px);
    padding: clamp(96px, 12vh, 128px) var(--gutter) clamp(48px, 7vw, 80px);
    align-items: stretch;
  }
  .jet-home .hero--centered .hero__center { grid-column: 1; grid-row: 1; }
  .jet-home .hero--centered .hero__system { grid-column: 1; grid-row: 2; }
  .jet-home .hero--centered .hero__cred   { grid-column: 1; grid-row: 3; }
  .jet-home .hero--centered h1 { max-width: none; }
  .jet-home .hero--centered .hero__sub { max-width: 56ch; }
}

@media (max-width: 600px) {
  .jet-home .hero--centered .hero__cred {
    gap: 16px 24px;
    justify-content: flex-start;
  }
  .jet-home .hero--centered .hero__cred > div { min-width: 78px; flex: 0 1 auto; }
}

/* =====================================================================
   2 — PROMISE STRIP — sage section
   ===================================================================== */
.jet-home .promise {
  background: var(--sage);
  color: var(--moss-deep);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.jet-home .promise::before,
.jet-home .promise::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244,236,215,0.25), rgba(244,236,215,0) 70%);
  pointer-events: none;
}
.jet-home .promise::before { top: -100px; left: -120px; }
.jet-home .promise::after { bottom: -140px; right: -100px; width: 360px; height: 360px; }
.jet-home .promise__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.jet-home .promise h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  margin: 0 0 18px 0;
}
.jet-home .promise h2 em {
  font-style: italic;
  color: var(--terra-deep);
}
.jet-home .promise p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: rgba(26, 54, 36, 0.78);
  max-width: 56ch;
  margin: 0 auto;
}

/* =====================================================================
   3 — CYCLE — illustrated 4-step
   ===================================================================== */
.jet-home .cycle { background: var(--cream); }
.jet-home .cycle__head {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
  text-align: center;
}
.jet-home .cycle__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  margin: 14px 0 18px;
  color: var(--ink);
}
.jet-home .cycle__head h2 em { color: var(--moss); }
.jet-home .cycle__head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
.jet-home .cycle__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.jet-home .cycle__step { text-align: center; }
.jet-home .cycle__step .illust {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bone);
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(42,33,24,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.jet-home .cycle__step:hover .illust { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.jet-home .cycle__step .illust svg { width: 100%; height: 100%; }
.jet-home .cycle__step .order {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 10px;
}
.jet-home .cycle__step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.jet-home .cycle__step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .jet-home .cycle__steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 540px) {
  .jet-home .cycle__steps { grid-template-columns: 1fr; max-width: 360px; }
}

/* =====================================================================
   4 — OUTPUTS — ochre section
   ===================================================================== */
.jet-home .outputs {
  background: var(--ochre);
  color: var(--soil-deep);
  position: relative;
  overflow: hidden;
}
.jet-home .outputs::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  top: -200px; right: -160px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(196,101,78,0.4), rgba(196,101,78,0) 70%);
  pointer-events: none;
}
.jet-home .outputs__head {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  position: relative; z-index: 1;
}
.jet-home .outputs__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  color: var(--soil-deep);
  margin: 0;
}
.jet-home .outputs__head h2 em { color: var(--moss-deep); }
.jet-home .outputs__head .eyebrow { color: var(--moss-deep); }
.jet-home .outputs__head .eyebrow::before { background: var(--moss-deep); }
.jet-home .outputs__head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(67, 41, 18, 0.85);
}
@media (max-width: 880px) {
  .jet-home .outputs__head { grid-template-columns: 1fr; gap: 18px; }
}

.jet-home .outputs__cards {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.jet-home .o-card {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 32px 30px 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.jet-home .o-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.jet-home .o-card__icon {
  width: 76px; height: 76px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.jet-home .o-card__icon svg { width: 42px; height: 42px; }
.jet-home .o-card .tag {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}
.jet-home .o-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.1;
}
.jet-home .o-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.jet-home .o-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.jet-home .o-card__stats > div { display: flex; flex-direction: column; gap: 2px; }
.jet-home .o-card__stats .v {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.jet-home .o-card__stats .k {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
}
@media (max-width: 880px) {
  .jet-home .outputs__cards { grid-template-columns: 1fr; max-width: 480px; }
}

/* =====================================================================
   5 — MICROBES — friendly cream section
   ===================================================================== */
.jet-home .microbes { background: var(--cream); }
.jet-home .microbes__head {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 var(--gutter);
  text-align: center;
}
.jet-home .microbes__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin: 14px 0 18px;
}
.jet-home .microbes__head h2 em { color: var(--moss); }
.jet-home .microbes__head p {
  max-width: 60ch; margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
}
.jet-home .microbes__grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.jet-home .m-card {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 36px 28px 36px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.jet-home .m-card:hover {
  border-color: var(--moss);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.jet-home .m-card__art {
  width: 132px; height: 132px;
  margin: 0 auto 22px;
  background: var(--sage-light);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.jet-home .m-card__art svg { width: 100%; height: 100%; padding: 22px; }
.jet-home .m-card .role {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 8px;
}
.jet-home .m-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.jet-home .m-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .jet-home .microbes__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* =====================================================================
   6 — RESEARCH (Deakin) — deep moss band
   ===================================================================== */
.jet-home .research {
  background: var(--moss-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.jet-home .research::before {
  content: "";
  position: absolute;
  top: -120px; left: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(212,154,77,0.18), rgba(212,154,77,0) 72%);
  pointer-events: none;
}
.jet-home .research__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative; z-index: 1;
}
.jet-home .research .eyebrow { color: var(--ochre-soft); }
.jet-home .research .eyebrow::before { background: var(--ochre-soft); }
.jet-home .research h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 14px 0 24px;
}
.jet-home .research h2 em {
  font-style: italic;
  color: var(--ochre-soft);
}
.jet-home .research__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 236, 215, 0.84);
  margin-bottom: 18px;
}
.jet-home .research__copy .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 24px;
}
.jet-home .research__cta { margin-top: 12px; }
.jet-home .research__panel {
  background: var(--moss);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1.5px solid rgba(212, 154, 77, 0.28);
}
.jet-home .research__panel h4 {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre-soft);
  margin-bottom: 8px;
}
.jet-home .research__panel .heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.jet-home .research__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(244,236,215,0.2);
  padding-top: 22px;
}
.jet-home .research__stats > div { display: flex; flex-direction: column; gap: 4px; }
.jet-home .research__stats .v {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ochre-soft);
  line-height: 1;
  letter-spacing: -0.01em;
}
.jet-home .research__stats .v em { color: var(--ochre-soft); }
.jet-home .research__stats .k {
  font-size: 0.75rem;
  color: rgba(244, 236, 215, 0.7);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .jet-home .research__inner { grid-template-columns: 1fr; }
}

/* =====================================================================
   7 — TALK (closing CTA) — terracotta tinted cream
   ===================================================================== */
.jet-home .talk {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.jet-home .talk::before {
  content: "";
  position: absolute;
  bottom: -160px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(196,101,78,0.16), rgba(196,101,78,0) 70%);
  pointer-events: none;
}
.jet-home .talk__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative; z-index: 1;
}
.jet-home .talk h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--moss-deep);
  margin: 0 auto 22px;
  max-width: 16ch;
}
.jet-home .talk h2 em { color: var(--terracotta); }
.jet-home .talk__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.jet-home .talk__actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.jet-home .talk__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.jet-home .talk__details > div { padding: 0 4px; }
.jet-home .talk__details h4 {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}
.jet-home .talk__details p {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.jet-home .talk__details a {
  color: var(--ink);
  border-bottom: 1px solid rgba(42,33,24,0.18);
  padding-bottom: 1px;
  transition: border-color .2s ease, color .2s ease;
}
.jet-home .talk__details a:hover { border-bottom-color: var(--moss); color: var(--moss); }
@media (max-width: 720px) {
  .jet-home .talk__details { grid-template-columns: 1fr; gap: 22px; max-width: 360px; text-align: center; }
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wipe-in { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes sway {
  0%, 100% { transform: rotate(-0.8deg); }
  50%      { transform: rotate(0.8deg); }
}
@keyframes pulse-org {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.jet-home .reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.jet-home .reveal.is-in { opacity: 1; transform: translateY(0); }
.jet-home .reveal.delay-1 { transition-delay: .08s; }
.jet-home .reveal.delay-2 { transition-delay: .16s; }
.jet-home .reveal.delay-3 { transition-delay: .24s; }
.jet-home .reveal.delay-4 { transition-delay: .32s; }

.jet-home .hero h1            { animation: rise 1s .12s both ease-out; }
.jet-home .hero__sub          { animation: rise 1s .26s both ease-out; }
.jet-home .hero__actions      { animation: rise 1s .42s both ease-out; }
.jet-home .hero__cred         { animation: rise 1s .58s both ease-out; }
.jet-home .hero__visual       { animation: rise 1.2s .15s both ease-out; }

.jet-home .hero__visual .sway { transform-origin: 50% 96%; animation: sway 7s ease-in-out infinite; }
.jet-home .pulse              { animation: pulse-org 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.jet-home .pulse:nth-of-type(2) { animation-delay: .35s; }
.jet-home .pulse:nth-of-type(3) { animation-delay: .7s; }

@media (prefers-reduced-motion: reduce) {
  .jet-home *, .jet-home *::before, .jet-home *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================================
   SHARED PATTERNS — used across about / technology / contact / case-study
   ===================================================================== */

/* ---- Page hero (top of inner pages) ---- */
.jet-home .page-hero {
  background: var(--cream);
  padding: clamp(120px, 16vh, 168px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.jet-home .page-hero::before {
  content: "";
  position: absolute;
  top: 8%; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(184,196,158,0.4), rgba(184,196,158,0) 72%);
  pointer-events: none;
}
.jet-home .page-hero__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.jet-home .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--moss-deep);
  margin: 14px 0 22px;
}
.jet-home .page-hero h1 em { color: var(--terracotta); }
.jet-home .page-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.jet-home .breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.jet-home .breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--mid);
}
.jet-home .breadcrumb__inner a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.jet-home .breadcrumb__inner a:hover { color: var(--moss); border-bottom-color: var(--moss); }
.jet-home .breadcrumb__inner .sep { margin: 0 10px; color: rgba(42,33,24,0.28); }

/* ---- Section tint utilities ---- */
.jet-home .section-cream { background: var(--cream); }
.jet-home .section-bone  { background: var(--bone); }
.jet-home .section-cream-2 { background: var(--cream-2); }
.jet-home .section-sage  { background: var(--sage); position: relative; overflow: hidden; }
.jet-home .section-sage-light { background: var(--sage-light); }
.jet-home .section-ochre { background: var(--ochre); color: var(--soil-deep); position: relative; overflow: hidden; }
.jet-home .section-moss  { background: var(--moss-deep); color: var(--cream); position: relative; overflow: hidden; }
.jet-home .section-moss h2,
.jet-home .section-moss h3,
.jet-home .section-moss h4 { color: var(--cream); }
.jet-home .section-moss p { color: rgba(244,236,215,0.84); }
.jet-home .section-moss .eyebrow { color: var(--ochre-soft); }
.jet-home .section-moss .eyebrow::before { background: var(--ochre-soft); }

/* ---- Centered section header ---- */
.jet-home .sect-head {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
  text-align: center;
}
.jet-home .sect-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  margin: 14px 0 18px;
  line-height: 1.05;
}
.jet-home .sect-head h2 em { color: var(--moss); }
.jet-home .section-moss .sect-head h2 em { color: var(--ochre-soft); }
.jet-home .section-ochre .sect-head h2 em { color: var(--moss-deep); }
.jet-home .sect-head p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
.jet-home .section-moss .sect-head p { color: rgba(244,236,215,0.82); }
.jet-home .sect-head--left { text-align: left; max-width: var(--max-w); }
.jet-home .sect-head--left p { margin: 0; }

/* ---- Generic responsive grids ---- */
.jet-home .grid-3 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.jet-home .grid-2 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) {
  .jet-home .grid-3 { grid-template-columns: 1fr; max-width: 460px; }
  .jet-home .grid-2 { grid-template-columns: 1fr; }
}

/* ---- Generic feature card ---- */
.jet-home .f-card {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 30px 28px 28px;
  border: 1.5px solid transparent;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.jet-home .f-card:hover { border-color: var(--moss); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.jet-home .f-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--moss);
}
.jet-home .f-card__icon svg { width: 26px; height: 26px; }
.jet-home .f-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.15;
}
.jet-home .f-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---- Inline checklist ---- */
.jet-home .checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
.jet-home .check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.jet-home .check-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.jet-home .section-moss .check-item { color: rgba(244,236,215,0.86); }
.jet-home .section-moss .check-item::before { background: var(--ochre); color: var(--moss-deep); }

/* ---- Office / partner row card (about) ---- */
.jet-home .row-card {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line);
  transition: border-color .25s ease;
}
.jet-home .row-card:hover { border-color: var(--moss); }
.jet-home .row-card__flag {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.jet-home .row-card__body { flex: 1; min-width: 0; }
.jet-home .row-card__title {
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
}
.jet-home .row-card__sub {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--mid);
  margin-top: 2px;
}

/* ---- Timeline ---- */
.jet-home .timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.jet-home .timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--gutter) + 9px);
  top: 8px; bottom: 8px;
  width: 1.5px;
  background: rgba(42,33,24,0.18);
}
.jet-home .t-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 36px;
}
.jet-home .t-item:last-child { margin-bottom: 0; }
.jet-home .t-item::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--moss);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1.5px var(--moss);
}
.jet-home .t-item__year {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 6px;
}
.jet-home .t-item h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.15;
}
.jet-home .t-item p { color: var(--ink-soft); line-height: 1.65; }

/* ---- Spec table ---- */
.jet-home .spec-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.jet-home .spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bone);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.jet-home .spec-table th {
  background: var(--moss-deep);
  color: var(--cream);
  text-align: left;
  padding: 16px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.jet-home .spec-table td {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  vertical-align: top;
}
.jet-home .spec-table tr:nth-child(even) td { background: rgba(216, 212, 200, 0.18); }
.jet-home .spec-table td:first-child { color: var(--ink); font-weight: 600; }
.jet-home .spec-table td:last-child { color: var(--ink-soft); }
.jet-home .spec-table td strong { color: var(--moss); font-weight: 600; }
.jet-home .spec-table td.is-accent { color: var(--moss); font-weight: 600; }

/* ---- Comparison table (technology page) ---- */
.jet-home .compare {
  background: var(--bone);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.jet-home .compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
.jet-home .compare__row:first-child { border-top: none; }
.jet-home .compare__head {
  background: var(--moss-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.jet-home .compare__head > * { padding: 16px 22px; }
.jet-home .compare__head .ers { color: var(--ochre-soft); }
.jet-home .compare__row > * {
  padding: 14px 22px;
}
.jet-home .compare__row > *:first-child {
  font-weight: 600;
  color: var(--ink);
}
.jet-home .compare__row > *:nth-child(2) { color: var(--mid); text-align: center; }
.jet-home .compare__row > *:nth-child(3) {
  color: var(--moss);
  font-weight: 600;
  text-align: center;
}

/* ---- Form (contact) ---- */
.jet-home .form-card {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.jet-home .form-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.jet-home .form-card .form-lead {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.jet-home .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .jet-home .form-grid { grid-template-columns: 1fr; } }
.jet-home .form-group { margin-bottom: 18px; }
.jet-home .form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.jet-home .form-group input,
.jet-home .form-group select,
.jet-home .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(42,33,24,0.12);
  border-radius: var(--r-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.jet-home .form-group input::placeholder,
.jet-home .form-group textarea::placeholder { color: rgba(74,62,48,0.45); }
.jet-home .form-group input:focus,
.jet-home .form-group select:focus,
.jet-home .form-group textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(47,93,63,0.15);
}
.jet-home .form-group textarea { min-height: 130px; resize: vertical; }
.jet-home .field-error {
  display: none;
  color: var(--terra-deep);
  font-size: 0.82rem;
  margin-top: 6px;
}
.jet-home .form-group.has-error .field-error { display: block; }
.jet-home .form-group.has-error input,
.jet-home .form-group.has-error select,
.jet-home .form-group.has-error textarea {
  border-color: var(--terracotta);
}
.jet-home .form-label-aside {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.jet-home .inquiry-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.jet-home .inquiry-type {
  background: var(--cream);
  border: 1.5px solid rgba(42,33,24,0.12);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.91rem;
  font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .2s, background .2s, color .2s;
}
.jet-home .inquiry-type:hover { border-color: var(--moss); }
.jet-home .inquiry-type.selected {
  background: var(--moss);
  color: var(--cream);
  border-color: var(--moss);
}
.jet-home .form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
  margin-bottom: 18px;
}
.jet-home .form-consent input { width: auto; margin-top: 3px; }
.jet-home .submit-row { margin-top: 20px; }
.jet-home .submit-row button { width: 100%; justify-content: center; }
.jet-home .submit-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 10px;
}

/* form success state */
.jet-home #formSuccess {
  text-align: center;
  padding: 48px 24px;
}
.jet-home #formSuccess .icon-success {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 2rem;
}
.jet-home #formError {
  background: rgba(196,101,78,0.08);
  border: 1px solid var(--terracotta);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 18px;
  color: var(--terra-deep);
  font-size: 0.9rem;
}

/* ---- FAQ accordion-style (no JS, just visible) ---- */
.jet-home .faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.jet-home .faq-item {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  transition: border-color .25s ease;
}
.jet-home .faq-item:hover { border-color: var(--moss); }
.jet-home .faq-item h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.25;
}
.jet-home .faq-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---- Stat row (case-study, etc.) ---- */
.jet-home .stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.jet-home .stat-row__cell {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.jet-home .stat-row__cell .v {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
  letter-spacing: -0.01em;
}
.jet-home .stat-row__cell .v em { color: var(--moss); }
.jet-home .stat-row__cell .k {
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 6px;
}

/* ---- Highlight callout ---- */
.jet-home .callout {
  background: var(--sage-light);
  border-left: 4px solid var(--moss);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
}
.jet-home .callout strong { color: var(--moss); font-weight: 600; }
.jet-home .callout--ochre { background: rgba(212,154,77,0.18); border-left-color: var(--ochre); }
.jet-home .callout--ochre strong { color: var(--soil-deep); }

/* ---- Quote block ---- */
.jet-home .quote {
  background: var(--sage-light);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 28px 0;
  position: relative;
}
.jet-home .quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}
.jet-home .quote .who {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--moss);
}

/* ---- Case study card (full) ---- */
.jet-home .cs-full {
  background: var(--bone);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 0 auto;
}
.jet-home .cs-full__head {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 36px 40px;
  display: flex;
  gap: 22px;
  align-items: center;
}
@media (max-width: 600px) {
  .jet-home .cs-full__head { padding: 28px; flex-direction: column; align-items: flex-start; }
}
.jet-home .cs-full__head-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: rgba(212,154,77,0.18);
  border: 1px solid rgba(212,154,77,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ochre-soft);
}
.jet-home .cs-full__head-icon svg { width: 32px; height: 32px; }
.jet-home .cs-full__tag {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre-soft);
  margin-bottom: 6px;
}
.jet-home .cs-full__head h2 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
  line-height: 1.1;
}
.jet-home .cs-full__head p {
  color: rgba(244,236,215,0.84);
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.jet-home .cs-full__body { padding: 36px 40px 40px; }
@media (max-width: 600px) { .jet-home .cs-full__body { padding: 28px; } }
.jet-home .cs-section-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 28px 0 12px;
}
.jet-home .cs-full__body p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ---- Mini case card (overview grid) ---- */
.jet-home .mini-card {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.jet-home .mini-card:hover { border-color: var(--moss); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.jet-home .mini-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.jet-home .mini-card__icon svg { width: 22px; height: 22px; }
.jet-home .mini-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.jet-home .mini-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.5; }

/* ---- Larger case card (commercial deployments) ---- */
.jet-home .case-card {
  background: var(--bone);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.jet-home .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.jet-home .case-card__head {
  background: var(--moss);
  color: var(--cream);
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: center;
}
.jet-home .case-card__head .icon-box {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(244,236,215,0.16);
  border: 1px solid rgba(244,236,215,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cream);
}
.jet-home .case-card__head .icon-box svg { width: 24px; height: 24px; }
.jet-home .case-card__head .tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,236,215,0.65);
  margin-bottom: 4px;
}
.jet-home .case-card__head h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.15;
}
.jet-home .case-card__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.jet-home .case-card__body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.jet-home .case-card__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.jet-home .case-card__stats--3 { grid-template-columns: repeat(3, 1fr); }
.jet-home .case-card__stats > div {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  text-align: center;
}
.jet-home .case-card__stats .v {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
}
.jet-home .case-card__stats .k {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ---- Final CTA banner ---- */
.jet-home .cta-banner {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.jet-home .cta-banner::before {
  content: "";
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(196,101,78,0.16), rgba(196,101,78,0) 70%);
  pointer-events: none;
}
.jet-home .cta-banner__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative; z-index: 1;
}
.jet-home .cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  margin: 0 auto 18px;
  max-width: 18ch;
}
.jet-home .cta-banner h2 em { color: var(--terracotta); }
.jet-home .cta-banner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 32px;
}
.jet-home .cta-banner__actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Section padding shorter variant ---- */
.jet-home section.section-pad-sm { padding: clamp(56px, 7vw, 96px) 0; }

/* ---- Split section (text + visual) ---- */
.jet-home .split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.jet-home .split--reverse > .split__visual { order: -1; }
@media (max-width: 880px) {
  .jet-home .split { grid-template-columns: 1fr; }
  .jet-home .split--reverse > .split__visual { order: initial; }
}

/* ---- Patent / IP item ---- */
.jet-home .patent-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jet-home .patent-item {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; gap: 14px;
  border: 1px solid var(--line);
  transition: border-color .2s;
}
.jet-home .patent-item:hover { border-color: var(--moss); }
.jet-home .patent-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.jet-home .patent-item__title {
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.jet-home .patent-item__sub {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.jet-home .patent-item__sub strong { color: var(--moss); }

/* monitoring dashboard mini (technology page) */
.jet-home .dash {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.jet-home .dash__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.jet-home .dash__pill {
  background: var(--sage-light);
  color: var(--moss);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.jet-home .dash__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.jet-home .dash__cell {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
}
.jet-home .dash__cell .v {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
}
.jet-home .dash__cell .k {
  font-size: 0.74rem;
  color: var(--mid);
  margin-top: 6px;
}
.jet-home .dash__alert {
  margin-top: 14px;
  background: rgba(212,154,77,0.15);
  border: 1px solid rgba(212,154,77,0.35);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--soil);
  display: flex; align-items: center; gap: 10px;
}

/* ---- Closed-loop diagram (technology integration) ---- */
.jet-home .loop-diagram {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.jet-home .loop-diagram h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--ink);
}
.jet-home .loop-node {
  background: var(--sage-light);
  color: var(--moss-deep);
  width: 100%; max-width: 280px;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
}
.jet-home .loop-node--moss { background: var(--moss); color: var(--cream); }
.jet-home .loop-node--ochre { background: rgba(212,154,77,0.25); color: var(--soil-deep); border: 1.5px dashed var(--ochre); }
.jet-home .loop-node--terra { background: rgba(196,101,78,0.18); color: var(--terra-deep); }
.jet-home .loop-arrow { color: var(--moss); font-size: 1.1rem; line-height: 0.5; }
.jet-home .loop-pair {
  display: flex; gap: 10px; width: 100%; max-width: 280px;
}
.jet-home .loop-pair > div {
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  text-align: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
}
.jet-home .loop-pair > div:first-child { background: var(--sage-light); color: var(--moss-deep); }
.jet-home .loop-pair > div:last-child { background: rgba(212,154,77,0.18); color: var(--soil-deep); }

/* ---- Contact info card ---- */
.jet-home .contact-info {
  display: flex; gap: 16px;
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 20px 22px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.jet-home .contact-info__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  background: var(--sage-light);
  color: var(--moss);
  display: inline-flex; align-items: center; justify-content: center;
}
.jet-home .contact-info__icon svg { width: 20px; height: 20px; }
.jet-home .contact-info h4 {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.jet-home .contact-info p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.jet-home .contact-info a { color: var(--moss); font-weight: 600; }
.jet-home .contact-info a:hover { color: var(--moss-deep); }

/* what to expect (contact) */
.jet-home .expect {
  background: var(--sage-light);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-top: 18px;
}
.jet-home .expect h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--moss-deep);
  margin-bottom: 14px;
}
.jet-home .expect ol { list-style: none; counter-reset: e; padding: 0; margin: 0; }
.jet-home .expect ol li {
  counter-increment: e;
  display: flex; gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.5;
}
.jet-home .expect ol li::before {
  content: counter(e);
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--moss);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ---- Helpers ---- */
.jet-home .max-720 { max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.jet-home .max-880 { max-width: 880px; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.jet-home .center  { text-align: center; }

/* =====================================================================
   FOOTER  — applied site-wide on any page that uses .jet-home
   (every redesigned page does, so this overrides the old style.css cleanly)
   ===================================================================== */
body:has(.jet-home) .footer {
  background: #15301F;       /* moss-deep, hard-coded since vars don't apply outside .jet-home */
  color: #F4ECD7;            /* cream */
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 0;
  position: relative;
  overflow: hidden;
}
body:has(.jet-home) .footer::before {
  content: "";
  position: absolute;
  bottom: -180px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(212,154,77,0.12), rgba(212,154,77,0) 72%);
  pointer-events: none;
}
body:has(.jet-home) .footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 64px) 0;
  position: relative;
  z-index: 1;
}
body:has(.jet-home) .footer__top {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,236,215,0.18);
}

/* brand column */
body:has(.jet-home) .footer__brand {
  max-width: 360px;
}
body:has(.jet-home) .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
body:has(.jet-home) .footer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
body:has(.jet-home) .footer__logo-text {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #F4ECD7;
}
body:has(.jet-home) .footer__logo-text .serif {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  margin-right: 4px;
  color: #ECC68A; /* ochre-soft */
}
body:has(.jet-home) .footer__lead {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(244,236,215,0.78);
  margin: 0 0 22px 0;
}

/* social pills */
body:has(.jet-home) .footer__social {
  display: flex;
  gap: 8px;
}
body:has(.jet-home) .footer__social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(244,236,215,0.08);
  border: 1px solid rgba(244,236,215,0.16);
  color: rgba(244,236,215,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
body:has(.jet-home) .footer__social a:hover {
  background: #D49A4D;        /* ochre */
  color: #15301F;
  border-color: #D49A4D;
  transform: translateY(-2px);
}

/* link columns */
body:has(.jet-home) .footer__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ECC68A;             /* ochre-soft */
  margin: 0 0 18px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body:has(.jet-home) .footer__heading::before {
  content: "";
  display: inline-block;
  width: 14px; height: 1.5px;
  background: #ECC68A;
  border-radius: 2px;
}
body:has(.jet-home) .footer__list {
  list-style: none;
  margin: 0; padding: 0;
}
body:has(.jet-home) .footer__list li {
  margin-bottom: 10px;
}
body:has(.jet-home) .footer__list a {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(244,236,215,0.78);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body:has(.jet-home) .footer__list a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #ECC68A;
}
body:has(.jet-home) .footer__list a:hover {
  color: #F4ECD7;
}
body:has(.jet-home) .footer__list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* contact column */
body:has(.jet-home) .footer__col--contact {}
body:has(.jet-home) .footer__addr {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(244,236,215,0.86);
  margin: 0 0 14px 0;
}
body:has(.jet-home) .footer__line {
  display: block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  color: rgba(244,236,215,0.78);
  margin-bottom: 8px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
body:has(.jet-home) .footer__line:hover {
  color: #ECC68A;
  border-bottom-color: rgba(236,198,138,0.5);
}
body:has(.jet-home) .footer__line--accent {
  color: #ECC68A;
  font-weight: 500;
  margin-top: 6px;
}
body:has(.jet-home) .footer__line--accent:hover {
  color: #F4ECD7;
  border-bottom-color: rgba(244,236,215,0.4);
}

/* footer bottom strip */
body:has(.jet-home) .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 22px 0 26px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(244,236,215,0.55);
}
body:has(.jet-home) .footer__bottom p { margin: 0; color: inherit; font-family: inherit; line-height: 1.5; }
body:has(.jet-home) .footer__bottom a {
  color: #ECC68A;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
body:has(.jet-home) .footer__bottom a:hover {
  color: #F4ECD7;
  border-bottom-color: rgba(244,236,215,0.4);
}

/* footer responsive */
@media (max-width: 980px) {
  body:has(.jet-home) .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 44px;
  }
  body:has(.jet-home) .footer__brand { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 540px) {
  body:has(.jet-home) .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body:has(.jet-home) .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }
  body:has(.jet-home) .footer__bottom p { font-size: 0.76rem; }
}

/* =====================================================================
   MOBILE NAVIGATION (drawer)
   Only on .jet-home pages — overrides the old style.css open state
   ===================================================================== */
@media (max-width: 880px) {
  body:has(.jet-home) .navbar__inner { height: 64px; }
  body:has(.jet-home) .nav-menu { display: none; }
  body:has(.jet-home) .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
  }
  body:has(.jet-home) .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.8px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease, width 0.28s ease;
  }
  body:has(.jet-home) .nav-hamburger:hover span { background: var(--moss); }
}

/* DRAWER — when nav-open is set on body */
@media (max-width: 880px) {
  body:has(.jet-home).nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px clamp(20px, 5vw, 32px) 32px;
    gap: 4px;
    box-shadow: 0 16px 48px rgba(42, 33, 24, 0.18);
    z-index: 1000;
    border-top: 1px solid rgba(42,33,24,0.08);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    animation: jetSlideDown 0.32s cubic-bezier(0.32, 0.72, 0.26, 1);
  }
  @keyframes jetSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* drawer links */
  body:has(.jet-home).nav-open .nav-link {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding: 16px 18px;
    margin: 0;
    border-radius: var(--r-md);
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }
  body:has(.jet-home).nav-open .nav-link::after {
    content: "→";
    color: var(--moss);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  body:has(.jet-home).nav-open .nav-link:hover {
    background: var(--sage-light);
    color: var(--moss);
    padding-left: 22px;
  }
  body:has(.jet-home).nav-open .nav-link:hover::after { opacity: 1; transform: translateX(0); }

  body:has(.jet-home).nav-open .nav-link.active {
    background: var(--sage-light);
    color: var(--moss);
    font-weight: 600;
    border-left: 3px solid var(--moss);
    padding-left: 15px;
  }
  body:has(.jet-home).nav-open .nav-link.active::after {
    opacity: 1; transform: translateX(0);
    color: var(--moss);
  }

  /* divider before CTA */
  body:has(.jet-home).nav-open .nav-menu li:last-child {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(42,33,24,0.12);
  }

  /* drawer CTA — pill */
  body:has(.jet-home).nav-open .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--moss);
    color: var(--cream);
    border: 1.5px solid var(--moss);
    border-radius: var(--r-pill);
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  body:has(.jet-home).nav-open .nav-cta:hover,
  body:has(.jet-home).nav-open .nav-cta.active {
    background: var(--moss-deep);
    border-color: var(--moss-deep);
    color: var(--cream);
    transform: translateY(-1px);
  }

  /* hamburger → X animation */
  body:has(.jet-home).nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--ink);
  }
  body:has(.jet-home).nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  body:has(.jet-home).nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--ink);
  }

  /* lock body scroll when drawer open */
  body:has(.jet-home).nav-open { overflow: hidden; }
  body:has(.jet-home).nav-open::before {
    content: "";
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(20, 33, 18, 0.42);
    backdrop-filter: blur(2px);
    z-index: 999;
    animation: fadeIn 0.32s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
}
