/* =========================================================
   Perfect Card — Gift boutique edition
   Light, airy, celebratory. Cormorant Garamond + DM Sans.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ivory:    #FFFFFF;
  --cream:    #F3F4F6;
  --cream-2:  #F9FAFB;
  --ink:      #2B2824;
  --ink-soft: #6B6459;
  --ink-mute: #9C958A;
  --line:     rgba(43, 40, 36, 0.12);
  --line-soft:rgba(43, 40, 36, 0.06);

  --blush:    #F3C9C9;
  --blush-2:  #FDE6E6;
  --sage:     #B8E0CC;
  --sage-2:   #E3F2EA;
  --butter:   #F7E4A8;
  --butter-2: #FDF4D6;
  --lilac:    #D9C4ED;
  --lilac-2:  #EEE4F7;
  --sky:      #C4DAEC;
  --sky-2:    #E3EDF5;
  --gold:     #E8C98A;
  --gold-2:   #F6E8C6;
  --coral:    #F2B5B5;
  --coral-2:  #FBDFDF;
  --slate:    #4A5058;
  --slate-2:  #DFE3E7;

  --accent:   #1DB67D;  /* eftpos signature green */
  --accent-2: #13804F;

  --fs-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --fs-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--fs-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-feature-settings: "cv11", "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; }

::selection { background: var(--blush); color: var(--ink); }

/* =========================================================
   CONFETTI BACKGROUND (fixed, subtle)
   ========================================================= */
.confetti {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.confetti .c {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite;
}
.confetti .c1 { top: 8%;  left: 6%;  background: var(--blush); width: 8px; height: 8px; animation-delay: 0s; }
.confetti .c2 { top: 14%; left: 82%; background: var(--sage);  width: 12px; height: 12px; animation-delay: 2s; }
.confetti .c3 { top: 28%; left: 92%; background: var(--butter);width: 6px; height: 6px; animation-delay: 4s; }
.confetti .c4 { top: 42%; left: 4%;  background: var(--lilac); width: 9px; height: 9px; animation-delay: 1s; }
.confetti .c5 { top: 56%; left: 12%; background: var(--sky);   width: 7px; height: 7px; animation-delay: 3s; }
.confetti .c6 { top: 62%; left: 88%; background: var(--gold);  width: 11px;height: 11px; animation-delay: 5s; }
.confetti .c7 { top: 76%; left: 22%; background: var(--blush); width: 8px; height: 8px; animation-delay: 6s; }
.confetti .c8 { top: 84%; left: 72%; background: var(--sage);  width: 10px;height: 10px; animation-delay: 2.5s; }
.confetti .c9 { top: 92%; left: 50%; background: var(--butter);width: 6px; height: 6px; animation-delay: 7s; }
.confetti .c10{ top: 18%; left: 48%; background: var(--lilac); width: 5px; height: 5px; animation-delay: 8s; }
.confetti .c11{ top: 36%; left: 38%; background: var(--sky);   width: 7px; height: 7px; animation-delay: 3.5s; }
.confetti .c12{ top: 70%; left: 58%; background: var(--gold);  width: 8px; height: 8px; animation-delay: 4.5s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(10px, -14px) rotate(20deg); }
}

/* Ensure content sits above confetti */
.nav, section, .footer { position: relative; z-index: 1; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.display {
  font-family: var(--fs-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

h1.display { font-size: clamp(2.8rem, 7.2vw, 5.4rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1; }
h2.display { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; letter-spacing: -0.03em; }
h3.display { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fs-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow-center { justify-content: center; }
.sparkle {
  width: 8px; height: 8px; display: inline-block;
  background: var(--accent);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--fs-body);
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 8px 24px -10px rgba(43, 40, 36, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(43, 40, 36, 0.55); background: #1E1C19; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }
.btn-soft {
  background: var(--sage-2);
  color: var(--ink);
  border: 1.5px solid transparent;
}
.btn-soft:hover { background: var(--sage); transform: translateY(-1px); }
.btn-block { width: 100%; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 40;
  padding: 14px var(--gutter);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(253, 249, 242, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px var(--gutter);
}
.nav-inner {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fs-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo em { font-style: italic; color: var(--accent); font-weight: 500; }
.logo-mark { height: 64px; width: auto; display: block; }

.nav-links {
  display: inline-flex; gap: 28px;
  justify-self: end;
}
.nav-cta {
  padding: 10px 20px;
  font-size: 0.95rem;
  justify-self: end;
}
.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: right .35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; border-radius: 10px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(90px, 11vw, 150px) var(--gutter) clamp(100px, 11vw, 160px);
  overflow: hidden;
  text-align: center;
  min-height: min(820px, 95vh);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.blob-blush  { width: 420px; height: 420px; background: var(--blush);  top: -80px;  left: -120px; }
.blob-sage   { width: 360px; height: 360px; background: var(--sage);   top: 40%;    right: -100px; }
.blob-butter { width: 320px; height: 320px; background: var(--butter); bottom: -120px; left: 30%; }

.hero-inner {
  position: relative; z-index: 3;
  max-width: 900px; margin-inline: auto;
  padding-top: clamp(10px, 2vw, 24px);
}
.hero .eyebrow { margin-inline: auto; justify-content: center; }
.hero .display { margin: 8px auto 22px; max-width: 16ch; }
.lead {
  max-width: 56ch; margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 34px;
}

/* Marquee — horizontal conveyor behind the text */
.hero-marquee {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 30px 0;
  margin: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right,
    transparent 0%,
    #000 5%,
    #000 26%,
    transparent 38%,
    transparent 62%,
    #000 74%,
    #000 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    #000 5%,
    #000 26%,
    transparent 38%,
    transparent 62%,
    #000 74%,
    #000 95%,
    transparent 100%
  );
}
.marquee-track {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  width: max-content;
  animation: mqSlide 90s linear infinite;
  will-change: transform;
}
.mq-card {
  flex-shrink: 0;
  width: clamp(320px, 38vw, 520px);
  height: auto;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.mq-card:hover {
  transform: rotate(0deg) scale(1.06) translateY(-10px);
  z-index: 2;
}
@keyframes mqSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hanging gift tag (free-floating top-right of hero) */
.tag {
  position: absolute;
  top: 60px;
  right: clamp(20px, 6vw, 80px);
  width: 120px;
  background: var(--cream);
  border-radius: 10px 10px 14px 14px;
  padding: 16px 14px 14px;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 10px 20px -10px rgba(43, 40, 36, 0.25);
  animation: tagSway 4s ease-in-out infinite;
  z-index: 6;
}
.tag::before {
  content: "";
  position: absolute;
  top: -24px; left: 50%;
  width: 2px; height: 26px;
  background: var(--ink);
  transform: translateX(-50%);
}
.tag-hole {
  position: absolute;
  top: 8px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid var(--ink);
  transform: translateX(-50%);
}
.tag-line {
  display: block;
  font-family: var(--fs-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.tag-name {
  display: block;
  font-family: var(--fs-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
@keyframes tagSway {
  0%, 100% { transform: rotate(4deg); }
  50%      { transform: rotate(8deg); }
}

/* =========================================================
   VALUE PROPS (under hero)
   ========================================================= */
.valueprops {
  position: relative;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(40px, 6vw, 72px);
  background: var(--ivory);
}
.vp-inner {
  max-width: var(--max);
  margin-inline: auto;
}
.vp-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.vp-title {
  font-family: var(--fs-display);
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
  display: inline-block;
  position: relative;
}
.vp-title-text { display: inline-block; padding: 0 6px; }
.vp-underline {
  display: block;
  width: min(100%, 520px);
  height: 12px;
  margin: 6px auto 0;
  color: var(--accent);
  opacity: 0.85;
}
.vp-kicker {
  margin: 10px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.vp-item {
  text-align: center;
  padding: 8px clamp(4px, 1.5vw, 14px);
}
.vp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ivory);
  margin-bottom: 18px;
  box-shadow: 0 10px 22px -12px rgba(29, 182, 125, 0.55);
}
.vp-icon svg { width: 28px; height: 28px; }
.vp-h {
  font-family: var(--fs-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--accent-2);
  margin: 0 0 10px;
}
.vp-p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 28ch;
  margin-inline: auto;
}

@media (max-width: 880px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 480px) {
  .vp-grid { grid-template-columns: 1fr; }
}

/* Ribbon wave divider */
.ribbon-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: clamp(30px, 5vw, 60px);
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats {
  background: var(--cream);
  padding: clamp(36px, 5vw, 56px) var(--gutter);
}
.stats-inner {
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-around;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--fs-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.stat strong sup { font-size: 0.55em; color: var(--accent); vertical-align: super; }
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.stat-sep { width: 1px; height: 46px; background: var(--line); }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.sec-head .display { margin: 6px 0 14px; }
.howto .sec-head { max-width: none; }
.howto .sec-head .display { font-size: clamp(2.1rem, 4.4vw, 3.2rem); white-space: nowrap; }
.sec-sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 46ch;
  margin-inline: auto;
}

/* =========================================================
   GALLERY — gift cards
   ========================================================= */
.gallery {
  padding: clamp(80px, 9vw, 130px) var(--gutter);
}

/* Simple range — rotating horizontal loop of card images */
.range-simple {
  padding: clamp(20px, 2.4vw, 36px) 0 clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.range-marquee {
  width: 100%;
  overflow: visible;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.range-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: max-content;
  padding: 60px 0;
  animation: rangeSlide 60s linear infinite;
  will-change: transform;
}
.range-track img {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 286px);
  height: auto;
}
/* Creative stagger — wave of heights with alternating tilts */
.range-track img:nth-child(6n+1) { transform: translateY(-22px) rotate(-5deg); }
.range-track img:nth-child(6n+2) { transform: translateY(18px)  rotate(3deg); }
.range-track img:nth-child(6n+3) { transform: translateY(-8px)  rotate(-2deg); }
.range-track img:nth-child(6n+4) { transform: translateY(24px)  rotate(4deg); }
.range-track img:nth-child(6n+5) { transform: translateY(-16px) rotate(-3deg); }
.range-track img:nth-child(6n)   { transform: translateY(10px)  rotate(2deg); }

@keyframes rangeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .range-track img { width: clamp(165px, 44vw, 220px); }
  .range-track { animation-duration: 45s; }
}
.cards-grid {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.5vw, 32px);
}
.gift-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 8px 22px -12px rgba(43, 40, 36, 0.15);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.gift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -20px rgba(43, 40, 36, 0.28);
}
.gift-card-inner {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
  overflow: hidden;
}
.gift-card-inner img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(43, 40, 36, 0.18));
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gift-card:hover .gift-card-inner img { transform: scale(1.06) rotate(-2deg); }

.tone-blush  .gift-card-inner { background: var(--blush-2); }
.tone-sky    .gift-card-inner { background: var(--sky-2); }
.tone-butter .gift-card-inner { background: var(--butter-2); }
.tone-sage   .gift-card-inner { background: var(--sage-2); }
.tone-lilac  .gift-card-inner { background: var(--lilac-2); }
.tone-gold   .gift-card-inner { background: var(--gold-2); }
.tone-coral  .gift-card-inner { background: var(--coral-2); }
.tone-slate  .gift-card-inner { background: var(--slate-2); }

.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--fs-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.gift-caption {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 6px 4px;
}
.gift-caption .name {
  font-family: var(--fs-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gift-caption .value {
  font-family: var(--fs-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  background: var(--ivory);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* =========================================================
   OCCASIONS
   ========================================================= */
.occasions {
  padding: clamp(60px, 8vw, 110px) var(--gutter);
  background: var(--cream-2);
}
.occ-list {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.occ {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 28px 14px;
  background: #fff;
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 4px 14px -10px rgba(43, 40, 36, 0.15);
}
.occ:hover { transform: translateY(-6px); box-shadow: 0 18px 30px -16px rgba(43, 40, 36, 0.25); }
.occ-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.occ-icon svg { width: 28px; height: 28px; }
.occ-blush  .occ-icon { background: var(--blush-2); }
.occ-sage   .occ-icon { background: var(--sage-2); }
.occ-butter .occ-icon { background: var(--butter-2); }
.occ-lilac  .occ-icon { background: var(--lilac-2); }
.occ-sky    .occ-icon { background: var(--sky-2); }
.occ-gold   .occ-icon { background: var(--gold-2); }
.occ-label {
  font-family: var(--fs-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.howto {
  position: relative;
  padding: clamp(80px, 9vw, 140px) var(--gutter) clamp(120px, 14vw, 200px);
  background: #fff;
  overflow: hidden;
}

.steps {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: clamp(96px, 13vw, 130px);
  left: 16.66%;
  right: 16.66%;
  height: 0;
  border-top: 2px dashed var(--sage);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.steps li {
  text-align: center;
  position: relative;
  padding: 0 10px;
  z-index: 1;
}
.step-num {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--sage-2);
  font-family: var(--fs-body);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}
.steps h3 {
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
  max-width: 20ch;
  margin-inline: auto;
}
.steps p {
  color: var(--ink-soft);
  max-width: 34ch;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.55;
}

/* ---- Step illustrations ---- */
.step-art {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 8 / 5;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 18px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -16px rgba(43, 40, 36, 0.22);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.steps li:hover .step-art {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -18px rgba(43, 40, 36, 0.28);
}
.step-art svg { width: 100%; height: 100%; display: block; }

/* ---- Color accent per step (top edge of card) ---- */
.step--sage   .step-art { border-top: 3px solid var(--sage); }
.step--lilac  .step-art { border-top: 3px solid var(--lilac); }
.step--butter .step-art { border-top: 3px solid var(--butter); }

/* Step 1 — card swipes horizontally through magstripe slot */
.art-card {
  animation: artSwipe 2.8s cubic-bezier(.45, .05, .55, .95) infinite;
  filter: drop-shadow(0 6px 6px rgba(43, 40, 36, 0.18));
}
@keyframes artSwipe {
  0%    { transform: translateX(-60px); opacity: 0; }
  10%   { transform: translateX(-60px); opacity: 0; }
  18%   { transform: translateX(-40px); opacity: 1; }
  62%   { transform: translateX(108px); opacity: 1; }
  72%   { transform: translateX(130px); opacity: 0; }
  100%  { transform: translateX(130px); opacity: 0; }
}

.art-slot-glow {
  animation: artSlotGlow 2.8s ease-in-out infinite;
}
@keyframes artSlotGlow {
  0%, 20%  { opacity: 0; }
  35%, 58% { opacity: 0.85; }
  70%      { opacity: 0; }
  100%     { opacity: 0; }
}

.art-screen-content {
  animation: artScreenContent 2.8s ease-in-out infinite;
}
@keyframes artScreenContent {
  0%, 70%  { opacity: 1; }
  78%, 95% { opacity: 0; }
  100%     { opacity: 1; }
}

.art-check {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: artCheck 2.8s ease-out infinite;
}
@keyframes artCheck {
  0%, 72% { opacity: 0; transform: scale(0.2); }
  80%     { opacity: 1; transform: scale(1.25); }
  88%     { opacity: 1; transform: scale(1); }
  97%     { opacity: 1; transform: scale(1); }
  100%    { opacity: 0; transform: scale(1); }
}

/* Step 2 — Hand taps each PIN dot in sequence */
.art-pin {
  fill: transparent;
  transition: fill .15s ease;
}
.p1 { animation: artFillP1 3.6s ease-in-out infinite; }
.p2 { animation: artFillP2 3.6s ease-in-out infinite; }
.p3 { animation: artFillP3 3.6s ease-in-out infinite; }
.p4 { animation: artFillP4 3.6s ease-in-out infinite; }
@keyframes artFillP1 { 0%, 12% { fill: transparent; } 16%, 90% { fill: var(--accent); } 95%, 100% { fill: transparent; } }
@keyframes artFillP2 { 0%, 30% { fill: transparent; } 34%, 90% { fill: var(--accent); } 95%, 100% { fill: transparent; } }
@keyframes artFillP3 { 0%, 48% { fill: transparent; } 52%, 90% { fill: var(--accent); } 95%, 100% { fill: transparent; } }
@keyframes artFillP4 { 0%, 66% { fill: transparent; } 70%, 90% { fill: var(--accent); } 95%, 100% { fill: transparent; } }

.art-hand {
  transform-origin: center;
  animation: artHand 3.6s ease-in-out infinite;
}
@keyframes artHand {
  0%        { transform: translate(0, 22px); opacity: 0; }
  6%        { transform: translate(0, 0); opacity: 1; }
  12%       { transform: translate(0, -2.5px); }
  18%       { transform: translate(0, 0); }
  26%       { transform: translate(10px, 0); }
  30%       { transform: translate(10px, -2.5px); }
  36%       { transform: translate(10px, 0); }
  44%       { transform: translate(22px, 0); }
  48%       { transform: translate(22px, -2.5px); }
  54%       { transform: translate(22px, 0); }
  62%       { transform: translate(32px, 0); }
  66%       { transform: translate(32px, -2.5px); }
  72%       { transform: translate(32px, 0); opacity: 1; }
  90%, 100% { transform: translate(32px, 22px); opacity: 0; }
}

/* Step 3 — happy bounce + sparkles twinkle */
.art-happy {
  transform-box: fill-box;
  transform-origin: center;
  animation: artBounce 2.6s ease-in-out infinite;
}
@keyframes artBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.05); }
}
.spark {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: artTwinkle 2.6s ease-in-out infinite;
}
.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.18s; }
.s3 { animation-delay: 0.36s; }
.s4 { animation-delay: 0.54s; }
.s5 { animation-delay: 0.72s; }
.s6 { animation-delay: 0.90s; }
.s7 { animation-delay: 0.10s; }
.s8 { animation-delay: 0.44s; }
@keyframes artTwinkle {
  0%, 70%, 100% { opacity: 0; transform: scale(0.3); }
  15%           { opacity: 1; transform: scale(1.2); }
  40%           { opacity: 0.75; transform: scale(0.9); }
  55%           { opacity: 0; transform: scale(0.5); }
}

/* =========================================================
   MORPH — virtual-scroll hero (scatter → line → circle → arc)
   ========================================================= */
.morph {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: #FAFAFA;
  overflow: hidden;
}
.morph-stage {
  position: absolute;
  inset: 0;
  perspective: 1000px;
}
.morph-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
}
.morph-card {
  position: absolute;
  left: 0; top: 0;
  width: 100px;
  height: 159px;
  margin-left: -50px;
  margin-top: -79.5px;
  perspective: 1000px;
  cursor: pointer;
  will-change: transform, opacity;
}
.morph-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.morph-card:hover .morph-flip {
  transform: rotateY(180deg);
}
.morph-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.morph-face-front,
.morph-face-back {
  background: transparent;
}
.morph-face-back {
  transform: rotateY(180deg);
}
.morph-face-front img,
.morph-face-back img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 159px;
  height: 100px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.18));
}
.morph-center,
.morph-arc-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 800ms cubic-bezier(.4, 0, .2, 1),
    filter 800ms cubic-bezier(.4, 0, .2, 1),
    transform 800ms cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}
.morph-center.is-visible {
  opacity: 1;
  filter: blur(0);
}
.morph-arc-text {
  top: 54%;
  left: 52%;
  transform: translate(-50%, 20px);
  z-index: 10;
}
.morph-arc-text.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, 0);
}
.morph-h {
  font-family: var(--fs-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.84vw, 3rem);
  letter-spacing: -0.02em;
  color: #1f2937;
  margin: 0;
  line-height: 1.1;
}
.morph-sub {
  font-family: var(--fs-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 19px 0 0;
}
.morph-arc-h {
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: clamp(2.55rem, 4.97vw, 4.14rem);
  letter-spacing: -0.025em;
  color: #111827;
  margin: 0 0 22px;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}
.morph-arc-h .occasion-slot {
  display: inline-block;
  min-width: 6.6em;
  width: 6.6em;
  text-align: left;
  vertical-align: baseline;
}
.morph-arc-h .occasion-word {
  padding: 0.18em 0.32em 0.22em;
}
.morph-arc-p {
  font-family: var(--fs-body);
  font-size: clamp(1.24rem, 1.52vw, 1.38rem);
  line-height: 1.55;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  transform: translateX(-1.5rem);
}

/* =========================================================
   STOCKISTS
   ========================================================= */
.stockists {
  padding: clamp(60px, 8vw, 110px) var(--gutter);
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.stockist-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.stockist-blob-1 {
  width: 360px; height: 360px;
  background: var(--blush);
  top: -80px; left: -120px;
}
.stockist-blob-2 {
  width: 320px; height: 320px;
  background: var(--sage);
  bottom: -100px; right: -100px;
}
.stockists > .sec-head,
.stockists > .stockist-grid { position: relative; z-index: 1; }

.stockists-head .sec-sub { margin-top: 12px; }

.stockist-grid {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  justify-items: stretch;
}
.stockist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
  aspect-ratio: 5 / 4;
  padding: clamp(18px, 2.5vw, 32px);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 26px -16px rgba(43, 40, 36, 0.2);
  overflow: hidden;
}

.stockist-logo {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.stockist-name {
  font-family: var(--fs-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Optical sizing — each logo tuned so they read at similar visual weight */
.stockist-kmart       { height: 72px; }
.stockist-aldi        { height: 104px; }
.stockist-bigw        { height: 84px; }
.stockist-officeworks { height: 58px; }

/* =========================================================
   ROTATING OCCASION
   ========================================================= */
.occasion {
  padding: clamp(110px, 13vw, 180px) var(--gutter);
  text-align: center;
}
.occasion-inner { max-width: var(--max); margin-inline: auto; }
.occasion-h {
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 6.4vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
  padding-left: clamp(20px, 4vw, 80px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.occasion-slot {
  display: inline-block;
  min-width: 7.5em;
  text-align: left;
  vertical-align: baseline;
}
.occasion-word {
  display: inline-block;
  padding: 0.18em 0.42em 0.22em;
  margin: 0 0.04em;
  border-radius: 0.22em;
  line-height: 1;
  background: var(--occ-bg, var(--accent));
  color: var(--occ-fg, #fff);
  vertical-align: baseline;
  transition: background .35s ease, color .35s ease, transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  will-change: transform, opacity;
}
.occasion-word.is-gradient {
  background: linear-gradient(
    90deg,
    #E5484D 0%,
    #F2B84B 22%,
    #1DB67D 44%,
    #2E6FD9 66%,
    #7A4FB5 88%,
    #1A1A1A 100%
  );
  color: #fff;
}
.occasion-word.swap-out { opacity: 0; transform: translateY(-8px); }
.occasion-word.swap-in  { opacity: 0; transform: translateY(10px); }
.occasion-sub {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* =========================================================
   BALANCE
   ========================================================= */
.balance { padding: clamp(60px, 7vw, 110px) var(--gutter); }
.balance-panel {
  max-width: var(--max); margin-inline: auto;
  background: var(--sage-2);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.balance-panel::before {
  content: "";
  position: absolute; inset: -40% -10% auto auto;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(29, 182, 125, 0.18), transparent 70%);
  pointer-events: none;
}

.balance-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 16px -10px rgba(43, 40, 36, 0.18);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 182, 125, 0.18);
}

.balance-heading {
  margin: 22px 0 18px;
  max-width: 14ch;
}
.balance-sub {
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.55;
}

.btn-check { padding: 16px 28px; font-size: 1rem; }
.btn-check svg { width: 18px; height: 18px; }

/* --- Balance preview screenshot --- */
.balance-card {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 0;
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -28px rgba(43, 40, 36, 0.25), 0 8px 18px -8px rgba(43, 40, 36, 0.08);
}
.balance-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}
.lock-badge {
  position: absolute; top: -14px; right: -14px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(29, 182, 125, 0.55);
}
.lock-badge svg { width: 20px; height: 20px; }

.bc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.bc-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.bc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage-2);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.bc-amount {
  font-family: var(--fs-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0 8px;
  display: flex; align-items: baseline;
}
.bc-dollar { font-size: clamp(2.4rem, 4vw, 3.2rem); }
.bc-cents  { font-size: clamp(1rem, 1.3vw, 1.25rem); color: var(--ink-mute); margin-left: 2px; font-weight: 500; }
.bc-meta   { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; }

.bc-progress {
  position: relative;
  height: 6px; border-radius: 999px;
  background: var(--sage-2);
  overflow: hidden;
}
.bc-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 37.5%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 999px;
}
.bc-progress-meta {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.bc-tx {
  margin-top: 22px;
  display: flex; flex-direction: column;
}
.bc-tx li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.bc-tx li:first-child { border-top: 0; padding-top: 4px; }
.bc-tx li:last-child  { padding-bottom: 0; }
.bc-tx strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.bc-tx small {
  display: block;
  color: var(--ink-mute);
  font-size: 0.84rem;
  margin-top: 2px;
}
.tx-amt {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   FAQs
   ========================================================= */
.faqs { padding: clamp(60px, 8vw, 110px) var(--gutter); background: var(--cream-2); }
.faqs-inner {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faqs-visual {
  position: sticky;
  top: 100px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,0.6) 0%, transparent 55%),
    var(--sage-2);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px);
  aspect-ratio: 4 / 5;
}
.fv-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 52%;
  max-width: 320px;
  height: auto;
  transform-origin: center;
  filter: drop-shadow(0 22px 32px rgba(43, 40, 36, 0.22));
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.fv-card-mid-l   { transform: translate(-78%, -50%) rotate(-14deg); width: 42%; }
.fv-card-mid-r   { transform: translate(-22%, -50%) rotate(12deg);  width: 42%; }
.fv-card-front   { transform: translate(-50%, -50%) rotate(-3deg);  width: 48%; z-index: 2; filter: drop-shadow(0 32px 44px rgba(43, 40, 36, 0.28)); }

.faqs-visual:hover .fv-card-mid-l { transform: translate(-84%, -50%) rotate(-17deg); }
.faqs-visual:hover .fv-card-mid-r { transform: translate(-16%, -50%) rotate(15deg); }
.faqs-visual:hover .fv-card-front { transform: translate(-50%, -52%) rotate(-2deg); }

.faqs-content { padding-top: 8px; }
.faqs-eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  width: 100%;
  letter-spacing: -0.005em;
}
.faqs-heading {
  margin: 0 0 18px;
  max-width: 14ch;
}
.faqs-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 0 36px;
}

.faq-list {
  display: flex; flex-direction: column;
}
.faq-list details {
  border-top: 1px solid var(--line);
  transition: background .3s ease;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list details[open] { background: transparent; }
.faq-list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--fs-display);
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.chev {
  width: 24px; height: 24px; flex-shrink: 0; position: relative;
  border-radius: 50%;
  background: var(--sage-2);
  transition: background .3s ease, transform .3s ease;
}
.chev::before, .chev::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.8px;
  background: var(--accent-2);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.chev::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .chev::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
details[open] .chev { background: var(--accent); transform: rotate(90deg); }
details[open] .chev::before, details[open] .chev::after { background: #fff; }
.faq-list p {
  padding: 0 0 22px;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1rem;
}
.faqs-more {
  margin-top: 32px;
  align-self: flex-start;
}
.faqs-more svg { width: 18px; height: 18px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: clamp(80px, 9vw, 130px) var(--gutter); }
.contact-inner {
  max-width: var(--max); margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.contact-copy p {
  color: var(--ink-soft);
  margin: 14px 0 24px;
  max-width: 42ch;
}
.contact-list {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: flex; align-items: baseline; gap: 16px;
  color: var(--ink-soft);
}
.contact-list li > span:first-child {
  min-width: 64px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
}
.contact-list a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .25s ease, border-color .25s ease; }
.contact-list a:hover { color: var(--accent); border-color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(24px, 2.5vw, 36px);
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}
.foot-hero {
  max-width: var(--max); margin: 0 auto;
  display: flex;
  align-items: center;
  padding-bottom: clamp(28px, 3.5vw, 48px);
}
.foot-brand { display: inline-block; }
.foot-brand-mark {
  height: clamp(44px, 5vw, 72px);
  width: auto;
  display: block;
}
.foot-tag {
  font-family: var(--fs-display);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  justify-self: end;
}

.foot-divider {
  max-width: var(--max);
  margin: 0 auto;
  height: 1px;
  background: var(--line);
}

.foot-bottom {
  max-width: var(--max);
  margin: clamp(20px, 2.5vw, 32px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.foot-copy {
  font-family: var(--fs-display);
  font-size: 0.95rem;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
  margin: 0;
}

.foot-cols {
  display: grid;
  grid-template-columns: minmax(160px, auto);
  gap: clamp(40px, 5vw, 90px);
}
.foot-h {
  display: block;
  font-family: var(--fs-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.foot-cols ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-cols a {
  font-family: var(--fs-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--accent-2);
  text-decoration: none;
  transition: color .25s ease;
}
.foot-cols a:hover { color: var(--accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-cta { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .occ-list { grid-template-columns: repeat(3, 1fr); }
  .stockist-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .balance-panel, .contact-inner { grid-template-columns: 1fr; }
  .faqs-inner { grid-template-columns: 1fr; gap: 32px; }
  .faqs-visual {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-top: -60px;
  }
  .fv-card { top: 62%; }
  .fv-card-front  { width: 28%; }
  .fv-card-mid-l, .fv-card-mid-r { width: 24%; }

  .foot-hero { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .foot-tag { justify-self: start; max-width: 32ch; }
  .foot-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Prevent .nav from creating a containing block that traps the fixed overlay.
     backdrop-filter, filter, transform, will-change all create containing blocks
     for position:fixed children, so we neutralise them on mobile. */
  .nav,
  .nav.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none;
    transform: none;
    will-change: auto;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    justify-self: end;
    position: relative;
    z-index: 1001;
  }
  /* Keep logo visible above the overlay when menu open */
  .logo { position: relative; z-index: 1001; }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    margin: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: clamp(100px, 18vw, 130px) clamp(24px, 6vw, 40px) clamp(140px, 28vw, 200px);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .3s ease, transform .35s cubic-bezier(.2,.8,.2,1);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    padding: 22px 4px;
    color: var(--ink);
    font-family: var(--fs-body);
    font-size: clamp(1.15rem, 4.4vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.2;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-links a:first-child { border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .nav-links a::after { display: none; }

  /* Hide the CTA anywhere in the header on mobile. JS moves it into
     .nav-links when the menu opens, where the second rule restyles it. */
  .nav-inner > .nav-cta {
    display: none !important;
  }
  .nav-links .nav-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: clamp(24px, 5vw, 36px);
    padding: 16px 32px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-family: var(--fs-body);
    font-weight: 600;
    letter-spacing: 0.005em;
    font-size: 1rem;
    width: auto;
    line-height: 1;
    box-shadow: 0 12px 28px -12px rgba(43, 40, 36, 0.45);
  }
  .nav-links .nav-cta:hover {
    background: #1E1C19;
    transform: none;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .occ-list { grid-template-columns: repeat(2, 1fr); }
  .stockist-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 24px; }
  .stat-sep { display: none; }
  .foot-cols { grid-template-columns: 1fr; gap: 28px; }
  .tag { width: 96px; right: 2%; }

  /* --- Typography & overflow fixes --- */
  .logo-mark { height: 54px; }
  .howto .sec-head .display { white-space: normal; font-size: clamp(1.8rem, 5.4vw, 2.4rem); }
  .morph-arc-h { white-space: normal; font-size: clamp(1.9rem, 5.6vw, 2.8rem); }
  .morph-arc-h .occasion-slot { min-width: 0; width: auto; }
  .morph-arc-p {
    transform: none;
    padding: 0 var(--gutter);
    font-size: clamp(1rem, 2.6vw, 1.2rem);
  }
  .morph-h { font-size: clamp(1.6rem, 4.4vw, 2.4rem); padding: 0 var(--gutter); }

  /* --- Morph hero — scale cards for narrower circle --- */
  .morph { min-height: 560px; }
  .morph-card {
    width: 64px;
    height: 101px;
    margin-left: -32px;
    margin-top: -50.5px;
  }
  .morph-face-front img,
  .morph-face-back img { width: 101px; height: 64px; }

  /* --- Balance panel — tighter padding --- */
  .balance-panel { padding: clamp(28px, 5vw, 56px); }
  .balance-heading { max-width: 100%; }
  .btn-check { padding: 12px 22px; font-size: 0.92rem; }
  .btn-check svg { width: 16px; height: 16px; }

  /* --- FAQs visual — trim tall aspect & push content lower --- */
  .faqs-visual {
    aspect-ratio: 3 / 2;
    max-height: 360px;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
  }
  .faqs-inner { gap: clamp(100px, 16vw, 160px); }
  .faqs-content { padding-top: clamp(80px, 12vw, 120px); }

  /* --- Stockist logos — scaled for mobile --- */
  .stockist-kmart       { height: 58px; }
  .stockist-aldi        { height: 82px; }
  .stockist-bigw        { height: 66px; }
  .stockist-officeworks { height: 48px; }
}

@media (max-width: 720px) {
  .mq-card { width: clamp(250px, 60vw, 360px); }
  .hero-marquee {
    padding: 20px 0;
    mask-image: linear-gradient(to right,
      transparent 0%,
      #000 6%,
      #000 18%,
      transparent 30%,
      transparent 70%,
      #000 82%,
      #000 94%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 6%,
      #000 18%,
      transparent 30%,
      transparent 70%,
      #000 82%,
      #000 94%,
      transparent 100%
    );
  }
  .tag { width: 96px; top: 40px; transform: rotate(8deg); }
}

@media (max-width: 480px) {
  .foot-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mq-card { width: 280px; }
  .marquee-track { animation-duration: 60s; }
  .tag { top: 30px; }
}

/* =========================================================
   MOBILE — iPhone 17 Pro Max benchmark (≤480px portrait)
   ========================================================= */
@media (max-width: 480px) {

  /* --- Layout & spacing --- */
  :root { --gutter: 18px; }
  body { font-size: 16px; }

  /* --- NAV --- */
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .logo-mark { height: 58px; }
  .nav-cta {
    display: inline-flex;
    padding: 8.5px 13px;
    font-size: 0.78rem;
    border-radius: 999px;
  }
  .menu-toggle { padding: 8px; }

  /* --- MORPH HERO --- */
  .morph {
    height: 100svh;        /* small-viewport unit avoids browser-chrome jitter */
    min-height: 600px;
  }
  .morph-card {
    width: 52px;
    height: 82px;
    margin-left: -26px;
    margin-top: -41px;
  }
  .morph-face-front img,
  .morph-face-back img {
    width: 82px;
    height: 52px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.16));
  }
  .morph-h {
    font-size: 1.5rem;
    line-height: 1.18;
    padding: 0 8px;
  }
  .morph-sub {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    margin-top: 14px;
  }
  .morph-arc-text {
    top: 60%;
    width: 92%;
  }
  .morph-arc-h {
    font-size: 1.85rem;
    margin-bottom: 14px;
    white-space: normal;
  }
  .morph-arc-h .occasion-word {
    padding: 0.14em 0.34em 0.18em;
  }
  .morph-arc-p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 6px;
  }

  /* --- HOW TO --- */
  .howto { padding: 56px 16px 72px; }
  .howto .sec-head .display {
    white-space: normal;
    font-size: 1.7rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }
  .steps { gap: 28px; }
  .steps li h3 { font-size: 1.05rem; line-height: 1.25; }
  .step-num { font-size: 0.74rem; }
  .step-art { max-width: 320px; margin-inline: auto; }

  /* --- RANGE MARQUEE --- */
  .range-track img { width: 158px; }
  .range-track { gap: 22px; padding: 36px 0; animation-duration: 38s; }

  /* --- STOCKISTS --- */
  .stockists { padding: 56px 16px 72px; }
  .stockists .sec-head .display { font-size: 1.7rem; }
  .stockist-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stockist-logo { max-height: 56px; }

  /* --- BALANCE --- */
  .balance { padding: 56px 16px 72px; }
  .balance .display { font-size: 1.85rem; line-height: 1.15; }
  .balance-panel { padding: 24px 18px; gap: 28px; }

  /* --- FAQS --- */
  .faqs { padding: 56px 16px 72px; }
  .faqs .display { font-size: 1.85rem; line-height: 1.15; }
  .faqs-inner { gap: 48px; }
  .faq summary { font-size: 0.98rem; padding: 16px 0; }
  .faq[open] > div, .faq-body { font-size: 0.92rem; }

  /* --- FOOTER --- */
  .footer { padding: 48px 16px 32px; }
  .foot-hero { gap: 24px; }
  .foot-cols { grid-template-columns: 1fr; gap: 22px; }
  .foot-bottom { gap: 16px; flex-direction: column; align-items: flex-start; text-align: left; }
  .foot-mark { height: 28px; }

  /* --- Misc tightening --- */
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  .display { letter-spacing: -0.02em; }
}

/* =========================================================
   SUBPAGE HERO (FAQs / Terms / Balance)
   ========================================================= */
.page-hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 5vw, 72px);
  text-align: center;
  overflow: hidden;
  background: var(--cream-2);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 780px;
  margin-inline: auto;
}
.page-hero h1.display {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 10px auto 18px;
  max-width: 20ch;
}
.page-hero .lead { max-width: 54ch; margin: 0 auto; }

/* --- FAQ HERO: flat cards slide in from right, hidden behind text --- */
.page-hero-cards {
  padding-top: clamp(110px, 13vw, 180px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.hero-card-marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 24%,
    transparent 36%,
    transparent 64%,
    #000 76%,
    #000 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 24%,
    transparent 36%,
    transparent 64%,
    #000 76%,
    #000 98%,
    transparent 100%
  );
}
.hero-card-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  width: max-content;
  animation: heroCardSlide 42s linear infinite;
  will-change: transform;
}
.hero-card-track img {
  flex-shrink: 0;
  width: clamp(260px, 26vw, 420px);
  height: auto;
  opacity: 0.85;
}
@keyframes heroCardSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .hero-card-track { animation-duration: 32s; gap: 20px; }
  .hero-card-track img { width: clamp(180px, 46vw, 300px); }
}

/* =========================================================
   FAQS PAGE
   ========================================================= */
.faqs-page {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 110px);
  background: var(--cream-2);
}
.faqs-page-inner {
  max-width: 820px;
  margin-inline: auto;
}
.faq-group { margin-bottom: clamp(32px, 4vw, 56px); }
.faq-group-h {
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
  color: var(--accent-2);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.faqs-cta {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-xl);
  background: var(--sage-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faqs-cta::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(29,182,125,0.18), transparent 70%);
  pointer-events: none;
}
.faqs-cta .display { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.faqs-cta p { color: var(--ink-soft); margin: 0 0 24px; }
.faqs-cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   TERMS PAGE
   ========================================================= */
.terms-page {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 110px);
}
.terms-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.terms-meta {
  position: sticky;
  top: 100px;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--sage-2);
  border-radius: var(--r-lg);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.terms-meta p { margin: 0 0 18px; }
.terms-meta p:last-child { margin-bottom: 0; }
.terms-meta strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin: 0 0 2px;
}
.terms-intro {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  padding: clamp(24px, 3vw, 36px);
  background: var(--cream-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
}
.terms-intro p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.terms-intro p:last-child { margin-bottom: 0; }
.terms-intro strong { font-weight: 600; color: var(--ink); }
.terms-intro a { color: var(--accent-2); border-bottom: 1px solid currentColor; }

.terms-list {
  list-style: none;
  counter-reset: tc;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
}
.terms-list li {
  counter-increment: tc;
  position: relative;
  padding: 20px 24px 20px 68px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.terms-list li::before {
  content: counter(tc, decimal-leading-zero);
  position: absolute;
  top: 20px; left: 22px;
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: var(--sage-2);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1;
}
.terms-list a { color: var(--accent-2); border-bottom: 1px solid currentColor; }
.terms-list a:hover { color: var(--accent); }
.terms-contact {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 22px;
  background: var(--cream-2);
  border-radius: var(--r-md);
  margin-top: 10px;
}
.terms-contact li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.terms-contact strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  align-self: center;
}

/* =========================================================
   CHECK BALANCE PAGE
   ========================================================= */
.balance-page {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 110px);
  background: var(--cream-2);
}
.balance-page-inner {
  max-width: 960px;
  margin-inline: auto;
}
.balance-intro {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 auto clamp(32px, 4vw, 56px);
}

.balance-options {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.balance-option {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 14px 34px -22px rgba(43, 40, 36, 0.22);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.balance-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px -24px rgba(43, 40, 36, 0.3);
}
.balance-option-art {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3;
  background: var(--sage-2);
  border-radius: var(--r-lg);
  padding: 22px;
}
.balance-option:nth-child(2) .balance-option-art { background: var(--lilac-2); }
.balance-option-art img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(43, 40, 36, 0.2));
}
.balance-option-art .card-back {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 14px 24px rgba(43, 40, 36, 0.22));
}

.balance-option-body { display: flex; flex-direction: column; align-items: flex-start; }
.balance-option-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sage-2);
  color: var(--accent-2);
  font-family: var(--fs-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.balance-option:nth-child(2) .balance-option-eyebrow { background: var(--lilac-2); color: #6a4ca2; }
.balance-option-body h2 {
  font-family: var(--fs-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 10px;
}
.balance-option-body h2 em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 600;
}
.balance-option-body p {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 52ch;
}
.balance-option-body .btn svg { width: 18px; height: 18px; }

.balance-help-note {
  text-align: center;
  margin: clamp(36px, 5vw, 64px) auto 0;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}
.balance-help-note a {
  color: var(--accent-2);
  border-bottom: 1px solid currentColor;
  margin: 0 2px;
}
.balance-help-note a:hover { color: var(--accent); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 110px);
  background: var(--cream-2);
}
.contact-inner-grid {
  max-width: 1320px; margin-inline: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "channels form"
    ".        faq";
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-channels   { grid-area: channels; }
.contact-form-wrap  { grid-area: form; }
.contact-inner-grid > .contact-faq-teaser { grid-area: faq; }
.contact-channels {
  display: flex; flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.contact-channel {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 22px -14px rgba(43, 40, 36, 0.15);
}
.contact-channel-icon {
  grid-row: 1 / span 3;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--sage-2);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-channel-icon svg { width: 22px; height: 22px; }
.contact-channel-label {
  grid-column: 2;
  font-family: var(--fs-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.contact-channel-value {
  grid-column: 2;
  font-family: var(--fs-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2px 0 6px;
  word-break: break-word;
}
.contact-channel-email { font-size: 0.95rem; font-weight: 500; letter-spacing: 0; }
.contact-channel-value:hover { color: var(--accent); }
.contact-channel-meta {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* --- Form --- */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 46px -24px rgba(43, 40, 36, 0.2);
}
.contact-form-head { margin-bottom: 28px; }
.contact-form-head .eyebrow { margin-bottom: 10px; }
.contact-form-head .display { font-size: clamp(1.25rem, 2vw, 1.5rem); margin: 0 0 8px; }
.contact-form-head p { color: var(--ink-soft); margin: 0; }

.contact-form .form-field {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.contact-form label {
  font-family: var(--fs-display);
  font-size: 0.5625rem; /* 9px */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form .req { color: var(--accent); }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
  font-family: var(--fs-body);
  font-size: 1.02rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 182, 125, 0.12);
}
.contact-form small {
  margin-top: 6px;
  color: var(--ink-mute);
  font-size: 0.84rem;
}

.select-wrap { position: relative; }
.select-wrap select {
  padding-right: 44px;
  cursor: pointer;
  background-image: none;
}
.select-wrap .select-chev {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--ink-mute);
  pointer-events: none;
}

/* File drop */
.form-field-file { display: flex; flex-direction: column; }
.file-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 28px 20px;
  border: 1.6px dashed var(--line);
  border-radius: var(--r-md);
  background: var(--cream-2);
  color: var(--ink-soft);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
  margin-bottom: 0;
  font-family: var(--fs-body);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}
.file-drop:hover { border-color: var(--accent); background: #fff; color: var(--ink); }
.file-drop svg { width: 24px; height: 24px; color: var(--accent-2); }
.file-drop strong { color: var(--ink); font-weight: 600; }
.file-drop-meta { font-size: 0.82rem; color: var(--ink-mute); }
.file-name { margin-top: 8px; }

/* Actions */
.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.form-actions .btn-block { padding: 16px 24px; font-size: 1rem; }
.form-actions .btn-block svg { width: 18px; height: 18px; }
.form-note { margin: 0; color: var(--ink-mute); font-size: 0.84rem; text-align: center; }
.form-note a { color: var(--accent-2); border-bottom: 1px solid currentColor; }

/* =========================================================
   Gravity Forms — match the bespoke contact form
   Scoped to .contact-form-wrap so other GF instances are unaffected.
   ========================================================= */
.contact-form-wrap .gform_wrapper { font-family: var(--fs-body); }
.contact-form-wrap .gform_wrapper form { margin: 0; }

/* Field list — strip default <ul> styling */
.contact-form-wrap .gform_fields,
.contact-form-wrap .gform_wrapper .gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

/* Field wrapper — push input to bottom so siblings in a row align even when
   labels wrap onto different numbers of lines. */
.contact-form-wrap .gform_wrapper .gfield {
  display: flex;
  flex-direction: column;
  margin: 0 0 18px;
  list-style: none;
}
.contact-form-wrap .gform_wrapper .gfield .ginput_container {
  margin-top: auto;
}

/* Labels — uppercase, letter-spaced, ink */
.contact-form-wrap .gform_wrapper .gfield_label {
  font-family: var(--fs-display);
  font-size: 0.5625rem; /* 9px */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 8px;
  display: block;
}

/* Required asterisk — force brand green over GF defaults */
.contact-form-wrap .gform_wrapper .gfield_required,
.contact-form-wrap .gform_wrapper .gfield_required *,
.contact-form-wrap .gform_wrapper .gfield_required .gfield_required_asterisk,
.contact-form-wrap .gform-theme .gfield_required {
  color: var(--accent) !important;
  margin-left: 2px;
  font-weight: 700;
}
.contact-form-wrap .gform_wrapper .gfield_required_text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Inputs / textareas / selects */
.contact-form-wrap .gform_wrapper input[type="text"],
.contact-form-wrap .gform_wrapper input[type="tel"],
.contact-form-wrap .gform_wrapper input[type="email"],
.contact-form-wrap .gform_wrapper input[type="url"],
.contact-form-wrap .gform_wrapper input[type="number"],
.contact-form-wrap .gform_wrapper textarea,
.contact-form-wrap .gform_wrapper select {
  font-family: var(--fs-body) !important;
  font-size: 1.02rem !important;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1.5px solid var(--line) !important;
  border-radius: var(--r-md) !important;
  padding: 16px 18px !important;
  outline: none !important;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  width: 100% !important;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form-wrap .gform_wrapper textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.contact-form-wrap .gform_wrapper input:focus,
.contact-form-wrap .gform_wrapper textarea:focus,
.contact-form-wrap .gform_wrapper select:focus {
  border-color: var(--accent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(29, 182, 125, 0.12) !important;
}
.contact-form-wrap .gform_wrapper input::placeholder,
.contact-form-wrap .gform_wrapper textarea::placeholder {
  color: var(--ink-mute);
}

/* Help / description text */
.contact-form-wrap .gform_wrapper .gfield_description {
  margin: 6px 0 0;
  color: var(--ink-mute);
  font-size: 0.84rem;
  padding: 0;
}

/* Custom select chevron — same SVG as the bespoke form */
.contact-form-wrap .gform_wrapper .ginput_container_select {
  position: relative;
}
.contact-form-wrap .gform_wrapper .ginput_container_select::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='%239C958A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.contact-form-wrap .gform_wrapper select {
  padding-right: 44px;
  cursor: pointer;
  background-image: none;
}

/* File upload — dashed drop zone with styled file picker button */
.contact-form-wrap .gform_wrapper .ginput_container_fileupload input[type="file"] {
  display: block;
  width: 100%;
  padding: 22px 20px;
  border: 1.6px dashed var(--line);
  border-radius: var(--r-md);
  background: var(--cream-2);
  color: var(--ink-soft);
  font-family: var(--fs-body);
  font-size: 0.92rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.contact-form-wrap .gform_wrapper .ginput_container_fileupload input[type="file"]:hover {
  border-color: var(--accent);
  background: #fff;
  color: var(--ink);
}
.contact-form-wrap .gform_wrapper .ginput_container_fileupload input[type="file"]::file-selector-button {
  font-family: var(--fs-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-2);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 8px 16px;
  margin-right: 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.contact-form-wrap .gform_wrapper .ginput_container_fileupload input[type="file"]::file-selector-button:hover {
  background: var(--accent);
  color: #fff;
}
.contact-form-wrap .gform_wrapper .gform_fileupload_rules {
  margin-top: 8px;
  color: var(--ink-mute);
  font-size: 0.82rem;
}

/* Hide GF's "* indicates required fields" legend — not in the static design */
.contact-form-wrap .gform_required_legend,
.contact-form-wrap .gform_wrapper .gform_required_legend,
.contact-form-wrap .gform-theme .gform_required_legend,
.contact-form-wrap .gform_wrapper .gform_heading,
.contact-form-wrap .gform-body__heading,
.contact-form-wrap .gform_wrapper > p:first-child,
.contact-form-wrap .gform_wrapper form > .gform_heading {
  display: none !important;
}

/* Submit button — match .btn .btn-primary .btn-block. Use !important + extra
   selectors to defeat the Orbital theme's high-specificity defaults. */
.contact-form-wrap .gform_footer,
.contact-form-wrap .gform_wrapper .gform_footer,
.contact-form-wrap .gform-theme .gform_footer {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0 !important;
  padding: 0 !important;
  justify-content: stretch;
}
.contact-form-wrap .gform_wrapper input[type="submit"].gform_button,
.contact-form-wrap .gform_wrapper button.gform_button,
.contact-form-wrap .gform-theme--orbital .gform_button,
.contact-form-wrap .gform-theme--framework .gform_button,
.contact-form-wrap .gform_wrapper .gform_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fs-body) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  background-image: none !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 24px !important;
  width: 100% !important;
  cursor: pointer;
  text-transform: none !important;
  box-shadow: none !important;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.contact-form-wrap .gform_wrapper .gform_button:hover,
.contact-form-wrap .gform-theme--orbital .gform_button:hover {
  background: var(--accent-2) !important;
  background-color: var(--accent-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(29, 182, 125, 0.5) !important;
}
.contact-form-wrap .gform_wrapper .gform_button:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 3px;
}

/* Loading state */
.contact-form-wrap .gform_wrapper .gform_ajax_spinner {
  margin-left: 10px;
  width: 18px; height: 18px;
}

/* Validation — error fields */
.contact-form-wrap .gform_wrapper .gfield_error input,
.contact-form-wrap .gform_wrapper .gfield_error textarea,
.contact-form-wrap .gform_wrapper .gfield_error select {
  border-color: #d94c4c;
  background: #fff;
}
.contact-form-wrap .gform_wrapper .validation_message,
.contact-form-wrap .gform_wrapper .gfield_validation_message {
  margin: 6px 0 0;
  color: #d94c4c;
  font-size: 0.84rem;
  font-weight: 500;
  background: transparent;
  border: none;
  padding: 0;
}

/* Top-of-form validation summary */
.contact-form-wrap .gform_wrapper .gform_validation_errors {
  background: #fff5f5;
  border: 1px solid #f5d3d3;
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin: 0 0 24px;
  color: #b62a2a;
  font-size: 0.92rem;
}
.contact-form-wrap .gform_wrapper .gform_validation_errors h2 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #b62a2a;
}

/* Confirmation message */
.contact-form-wrap .gform_confirmation_message,
.contact-form-wrap .gform_wrapper .gform_confirmation_message {
  background: var(--sage-2);
  border: 1px solid var(--sage);
  border-radius: var(--r-md);
  padding: 18px 20px;
  color: var(--ink);
  font-size: 0.98rem;
  text-align: center;
}

/* Hide honeypot / GF utility wrappers from layout */
.contact-form-wrap .gform_wrapper .gform_validation_container,
.contact-form-wrap .gform_wrapper .gfield_visibility_hidden {
  display: none !important;
}

/* FAQ teaser below form */
.contact-faq-teaser {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--sage-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Outside-the-grid usage (legacy) keeps its own width + offset */
.contact-page > .contact-faq-teaser {
  max-width: var(--max);
  margin: clamp(40px, 5vw, 72px) auto 0;
}
.contact-faq-teaser::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(29,182,125,0.18), transparent 70%);
  pointer-events: none;
}
.contact-faq-teaser h3 {
  font-family: var(--fs-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.contact-faq-teaser p {
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 48ch;
}
.contact-faq-teaser .btn svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .terms-inner { grid-template-columns: 1fr; }
  .terms-meta { position: static; }
  .contact-inner-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "channels"
      "form"
      "faq";
  }
  .contact-channels { position: static; flex-direction: column; }
}

@media (max-width: 720px) {
  .balance-option { grid-template-columns: 1fr; padding: 22px; }
  .balance-option-art { aspect-ratio: 16 / 9; max-width: 340px; margin-inline: auto; width: 100%; }
  .balance-option-body { align-items: flex-start; }
}

@media (max-width: 560px) {
  .terms-contact li { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
