/* ==========================================================================
   Quokka Cam, style.css
   One stylesheet. Tokens first, then base, layout, components, pages.
   Palette balance target: 50% cream · 30% eucalyptus · 14% charcoal · 4% coral · 2% flash
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Metric-matched fallbacks
   Arial, resized to Fredoka's and Poppins' widths and vertical metrics, so the
   page doesn't jump when the web fonts swap in. Values computed from the font files.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fredoka Fallback";
  src: local("Arial");
  size-adjust: 103.14%;
  ascent-override: 94.43%;
  descent-override: 22.88%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial");
  size-adjust: 114.11%;
  ascent-override: 92.02%;
  descent-override: 30.67%;
  line-gap-override: 8.76%;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour */
  --eucalyptus: #285B4A;
  --eucalyptus-deep: #1F4A3C;   /* hover/pressed only */
  --cream: #F7F0E2;
  --charcoal: #202321;
  --coral: #E8735A;
  --flash: #F5C84C;
  --white: #FFFFFF;
  --line: rgba(32, 35, 33, 0.14);          /* hairlines on cream/white */
  --line-on-dark: rgba(247, 240, 226, 0.22);
  --muted: rgba(32, 35, 33, 0.72);         /* still 9:1+ on cream */
  --muted-on-dark: rgba(247, 240, 226, 0.84);

  /* Type */
  --font-display: "Fredoka", "Fredoka Fallback", ui-rounded, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-text: "Poppins", "Poppins Fallback", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.5rem, 1.6rem + 3.6vw, 4.75rem);
  --fs-h2: clamp(1.9rem, 1.35rem + 1.9vw, 3rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  /* Spacing: 8px base */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 2.5rem;
  --s-6: 3rem;
  --s-8: 4rem;
  --s-10: 5rem;
  --s-12: 6rem;
  --s-16: 8rem;
  --section: clamp(6rem, 7vw + 3rem, 11rem);
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Shape */
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --pill: 999px;

  /* Layout */
  --container: 72rem;
  --container-wide: 84rem;
  --measure: 34rem;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 240ms;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* The header is sticky, so anchored sections must stop clear of it */
  scroll-padding-top: calc(5rem + var(--s-3));
}

/* Belt and braces for anything linked to directly */
[id] { scroll-margin-top: calc(5rem + var(--s-3)); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--eucalyptus);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }

p { margin: 0 0 var(--s-2); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--eucalyptus);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--eucalyptus-deep); }

ul, ol { margin: 0; padding: 0; }

button { font: inherit; color: inherit; }

/* Visible focus: eucalyptus, never removed */
:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible,
.band :focus-visible {
  outline-color: var(--cream);
}

::selection { background: var(--eucalyptus); color: var(--cream); }

/* --------------------------------------------------------------------------
   3. Type roles
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-text);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: var(--s-2);
}
.on-dark .eyebrow, .band .eyebrow { color: var(--cream); opacity: 0.85; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: var(--measure);
}

.subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--eucalyptus);
}

.caption {
  font-size: var(--fs-small);
  color: var(--muted);
  letter-spacing: 0.02em;
}

.measure { max-width: var(--measure); }
.muted { color: var(--muted); }

/* The flash spark: the one tiny yellow moment on a page. Never text, never a fill behind text. */
.spark {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.15em;
  vertical-align: 0.15em;
  color: var(--flash);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.container--wide { width: min(100% - 2 * var(--gutter), var(--container-wide)); }

.section { padding-block: var(--section); }
.section--tight { padding-block: var(--s-10); }
.section + .section { padding-top: 0; }
.section.band, .band + .section { padding-top: var(--section); }

.band {
  background: var(--eucalyptus);
  color: var(--cream);
}
.band h1, .band h2, .band h3, .band a { color: var(--cream); }
.band p { color: var(--cream); }
.band .muted { color: var(--muted-on-dark); }

.split {
  display: grid;
  gap: var(--s-4) var(--s-8);
}
@media (min-width: 48em) {
  .split { grid-template-columns: 5fr 7fr; align-items: start; }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split--center { align-items: center; }
}

.stack > * + * { margin-top: var(--s-2); }

.skip-link {
  position: absolute;
  left: var(--s-2);
  top: -100%;
  z-index: 100;
  background: var(--eucalyptus);
  color: var(--cream);
  padding: var(--s-1) var(--s-2);
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus { top: var(--s-2); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--pill);
  border: 2px solid var(--eucalyptus);
  background: var(--eucalyptus);
  color: var(--cream);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { background: var(--eucalyptus-deep); border-color: var(--eucalyptus-deep); color: var(--cream); }
.btn:active { transform: translateY(1px); }

.btn--secondary {
  background: transparent;
  color: var(--eucalyptus);
}
.btn--secondary:hover { background: rgba(40, 91, 74, 0.08); color: var(--eucalyptus); border-color: var(--eucalyptus); }

/* On eucalyptus surfaces the pair inverts */
.band .btn, .btn--on-dark {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--eucalyptus);
}
.band .btn:hover, .btn--on-dark:hover { background: var(--white); border-color: var(--white); color: var(--eucalyptus); }
.band .btn--secondary, .btn--on-dark.btn--secondary {
  background: transparent;
  color: var(--cream);
}
.band .btn--secondary:hover { background: rgba(247, 240, 226, 0.12); color: var(--cream); }

.btn--small { min-height: 2.5rem; padding: 0.5rem 1.15rem; font-size: var(--fs-small); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 500;
  text-decoration: none;
}
.link-arrow::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header and nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 5rem;
  padding-block: var(--s-2);
}

/* Logo: image only, never live text. Clear space = padding around the link. */
.logo {
  display: inline-block;
  padding: 0.4rem;
  margin-left: -0.4rem;
  border-radius: 8px;
  line-height: 0;
}
.logo img { width: clamp(120px, 12vw, 150px); height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav__list {
  display: flex;
  gap: var(--s-4);
  list-style: none;
}
.nav__link {
  display: inline-block;
  padding: 0.25rem 0;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--eucalyptus); border-bottom-color: var(--eucalyptus); }
.nav__link[aria-current="page"] { color: var(--eucalyptus); border-bottom-color: var(--eucalyptus); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--pill);
  border: 2px solid var(--eucalyptus);
  background: transparent;
  color: var(--eucalyptus);
  cursor: pointer;
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 47.99em) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    padding: var(--s-3) var(--gutter) var(--s-4);
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -24px rgba(32, 35, 33, 0.35);
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; gap: var(--s-1); }
  .nav__link { display: block; padding: 0.6rem 0; font-size: 1.125rem; border-bottom: 1px solid var(--line); }
  .nav__link:hover, .nav__link[aria-current="page"] { border-bottom-color: var(--eucalyptus); }
  .nav .btn { width: 100%; }
  /* No JS: the disclosure can't open, so show the links inline instead. */
  .no-js .nav { display: flex; position: static; width: 100%; padding-inline: 0; border: 0; box-shadow: none; }
  .no-js .nav-toggle { display: none; }
  .no-js .site-header__inner { flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: var(--s-8) var(--s-6);
  font-size: var(--fs-small);
}
.site-footer__grid {
  display: grid;
  gap: var(--s-6);
}
@media (min-width: 48em) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
}
.site-footer__wordmark img { width: clamp(100px, 14vw, 180px); height: auto; }
.site-footer__wordmark { display: inline-block; line-height: 0; padding: 0.3rem; margin-left: -0.3rem; border-radius: 6px; }
.site-footer h2 {
  font-family: var(--font-text);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--s-2);
}
.site-footer ul { list-style: none; display: grid; gap: 0.4rem; }
.site-footer a { color: var(--charcoal); text-decoration: none; }
.site-footer a:hover { color: var(--eucalyptus); text-decoration: underline; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  margin-top: var(--s-8);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
/* The quokka: one small sign-off per page, and this is it. */
.signoff {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
}
.signoff img { width: 2rem; height: auto; }

/* --------------------------------------------------------------------------
   8. Components
   -------------------------------------------------------------------------- */

/* Section heading block */
.section-head { margin-bottom: var(--s-6); }
.section-head p { max-width: var(--measure); }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }
@media (min-width: 48em) {
  .section-head--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--s-4);
  }
  .section-head--row h2 { margin-bottom: 0; }
}

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--s-4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card--link { display: block; color: inherit; text-decoration: none; }
.card--link:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(40, 91, 74, 0.45); color: inherit; }
.card--link:hover .link-arrow::after { transform: translateX(3px); }
.card h3 { margin-bottom: var(--s-1); }
.card .eyebrow { margin-bottom: var(--s-2); }
.card .link-arrow { margin-top: var(--s-3); }

/* Grids */
.grid {
  display: grid;
  gap: var(--s-3);
}
.grid--packs { grid-template-columns: 1fr; }
@media (min-width: 40em) { .grid--packs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .grid--packs { grid-template-columns: repeat(4, 1fr); gap: var(--s-2); } }

/* Pack card: image preview on top, copy below */
.card--pack { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card__media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
/* A card showing a real camera cut-out: fit it whole instead of cropping it */
.card__media--camera { object-fit: contain; padding: var(--s-3) var(--s-3) 0; background: none; }
.card__body { padding: var(--s-3); display: flex; flex-direction: column; flex: 1; }
.card__body .link-arrow { margin-top: auto; padding-top: var(--s-3); }

/* Steps (home: compact row) */
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: var(--s-4) var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.steps li { counter-increment: step; padding-top: var(--s-2); border-top: 2px solid var(--eucalyptus); }
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--eucalyptus);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  margin-bottom: var(--s-1);
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.steps p { font-size: var(--fs-small); color: var(--muted); }

/* Journey (how it works: expanded, alternating) */
/* Guest experience: five frames on a timeline, read left to right */
.strip {
  list-style: none;
  counter-reset: strip;
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.strip::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0.5rem;
  height: 2px;
  background: var(--line);
}
.strip li {
  counter-increment: strip;
  position: relative;
  padding-top: var(--s-4);
}
.strip li::before {
  content: counter(strip, decimal-leading-zero);
  position: absolute;
  top: -0.1rem; left: 0;
  background: var(--cream);
  padding-right: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--eucalyptus);
}
.strip__media {
  width: 100%;
  max-width: 9.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--s-2);
}
.strip h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.strip p { font-size: var(--fs-small); color: var(--muted); }

@media (max-width: 60em) {
  .strip { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); }
  .strip::before { display: none; }
  .strip li { border-top: 2px solid var(--line); }
}
@media (max-width: 26em) { .strip { grid-template-columns: 1fr; } }

/* Timeline (the practical side) */
.timeline { list-style: none; display: grid; gap: 0; }
.timeline li {
  display: grid;
  gap: var(--s-1) var(--s-4);
  padding-block: var(--s-3);
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 48em) {
  .timeline li { grid-template-columns: 11rem 1fr 10rem; align-items: baseline; }
}
.timeline h3 { font-size: 1.25rem; margin: 0; }
.timeline p { max-width: var(--measure); }
.timeline .caption { text-align: left; }
@media (min-width: 48em) { .timeline .caption { text-align: right; } }

/* FAQ: native disclosure */
.faq { display: grid; gap: 0; max-width: 46rem; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--eucalyptus);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border: 2px solid var(--eucalyptus);
  border-radius: var(--pill);
  font-family: var(--font-text);
  font-weight: 500;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 var(--s-3); max-width: var(--measure); }

/* Pack sections (packs page) */
.pack {
  display: grid;
  gap: var(--s-3) var(--s-8);
  padding-block: var(--s-6);
  border-top: 1px solid var(--line);
}
.pack:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 48em) {
  .pack { grid-template-columns: 1fr 1fr; align-items: start; }
}
.pack h2 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.75rem); margin-bottom: var(--s-2); }
.pack dl { display: grid; gap: var(--s-3); margin: var(--s-2) 0 var(--s-4); }
.pack dt {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: 0.35rem;
}
.pack dd { margin: 0; max-width: var(--measure); }
/* Each pack carries one small accent from the palette, a dot and nothing more. */
.pack__accent {
  display: inline-block;
  width: 0.75rem; height: 0.75rem;
  border-radius: var(--pill);
  margin-right: 0.6rem;
  vertical-align: middle;
  background: var(--eucalyptus);
}
.pack__accent--coral { background: var(--coral); }
.pack__accent--charcoal { background: var(--charcoal); }
.pack__accent--flash { background: var(--flash); }
.pack__accent--outline { background: transparent; border: 2px solid var(--eucalyptus); }

.pack__media { margin: 0; border-radius: var(--radius); overflow: hidden; order: -1; }
.pack__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
/* Flip: hover, focus or tap swaps the front of the camera for the back.
   Shared by the packs page cameras. */
.flip {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: var(--flip-ratio, 1000 / 530);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.flip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 320ms var(--ease);
}
.flip .is-back { opacity: 0; }
.flip:hover .is-front,
.flip:focus-visible .is-front,
.flip.is-flipped .is-front { opacity: 0; }
.flip:hover .is-back,
.flip:focus-visible .is-back,
.flip.is-flipped .is-back { opacity: 1; }

.flip__hint { font-size: var(--fs-small); color: var(--muted); }
@media (hover: none) {
  .flip__hint::after { content: " (tap)"; }
}

/* A pack showing a real camera cut-out: no crop, no tile, and it can flip */
.pack__media--camera { overflow: visible; text-align: center; }
.pack__media--camera .flip { width: 78%; margin-inline: auto; }
.pack__media--camera .flip img { aspect-ratio: auto; object-fit: contain; }
.pack__media--camera .flip__hint { display: block; margin-top: var(--s-2); }
@media (min-width: 48em) { .pack:nth-of-type(even) .pack__media { order: 1; } }

/* Camera figure: cut-out product shot, no tile behind it */
.camera {
  position: relative;
  margin: 0;
}
.camera img { width: 100%; height: auto; }
.camera .flip { width: 82%; margin-inline: auto; }
.hero__collage img { width: 100%; height: auto; }
.camera figcaption {
  width: 82%;                 /* line the caption up with the camera, not the column */
  margin: var(--s-2) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--muted);
}

/* Film cue: crop marks (packs page). One cue per page. */
.crop-marks { position: relative; }
.crop-marks::before, .crop-marks::after {
  content: "";
  position: absolute;
  width: 1rem; height: 1rem;
  border-color: var(--eucalyptus);
  border-style: solid;
  pointer-events: none;
}
.crop-marks::before { top: -0.5rem; left: -0.5rem; border-width: 2px 0 0 2px; }
.crop-marks::after { bottom: -0.5rem; right: -0.5rem; border-width: 0 2px 2px 0; }

/* Why Quokka Cam: one claim, a feature image, then four short supports */
.claim { text-align: center; max-width: 52rem; margin-inline: auto; }
.claim__big {
  font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.04;
  margin-bottom: var(--s-3);
}
.band .claim__big { color: var(--cream); }
.claim__big em { font-style: normal; color: var(--flash); }
.claim .lead { margin-inline: auto; max-width: 38rem; }
.band .claim .lead { color: var(--muted-on-dark); }

.claim__media {
  margin: var(--s-8) auto 0;
  max-width: 56rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.claim__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

.support {
  list-style: none;
  display: grid;
  gap: var(--s-4) var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  margin-top: var(--s-8);
}
.support__rule { display: block; width: 2rem; height: 3px; border-radius: 3px; background: var(--coral); margin-bottom: var(--s-2); }
.band .support h3 { font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--cream); }
.band .support p { color: var(--muted-on-dark); font-size: var(--fs-small); }

/* Proof band items */
.proof {
  list-style: none;
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.proof li { padding-top: var(--s-2); border-top: 1px solid var(--line-on-dark); }
.proof h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.proof p { color: var(--muted-on-dark); font-size: var(--fs-small); }
.band__note {
  margin-top: var(--s-8);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-on-dark);
  display: grid;
  gap: var(--s-1) var(--s-8);
}
@media (min-width: 48em) { .band__note { grid-template-columns: 1fr 2fr; align-items: start; } }
.band__note h3 { font-size: var(--fs-h3); margin: 0; }
.band__note p { max-width: 40rem; }

/* Hero */
.hero { padding-block: clamp(var(--s-6), 6vw, var(--s-12)) var(--section); }
.hero__grid { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 56em) { .hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-8); } }
.hero h1 { margin-bottom: var(--s-3); }
.hero .lead { margin-bottom: var(--s-4); }

/* Page intro (inner pages) */
.page-intro { padding-block: clamp(var(--s-6), 6vw, var(--s-12)) 0; }
.page-intro h1 { max-width: 16ch; }
.page-intro .lead { margin-top: var(--s-2); }

/* Closing CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: var(--s-2); }
.cta p { margin-inline: auto; margin-bottom: var(--s-4); }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(var(--s-3), 4vw, var(--s-6));
}
.form-grid { display: grid; gap: var(--s-3); }
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field { display: grid; gap: 0.4rem; align-content: start; }
.field label {
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--charcoal);
}
.field .hint { font-size: var(--fs-small); color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  min-height: 3rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='%23285B4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(32, 35, 33, 0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--eucalyptus);
  box-shadow: 0 0 0 3px rgba(40, 91, 74, 0.2);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 2px;
  box-shadow: none;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--coral); }
.field .error {
  display: none;
  font-size: var(--fs-small);
  color: var(--charcoal);
  padding-left: 1rem;
  border-left: 3px solid var(--coral);
}
.field.has-error .error { display: block; }
.optional { font-weight: 400; color: var(--muted); }

.form-summary {
  display: none;
  margin-bottom: var(--s-3);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
}
.form-summary.is-visible { display: block; }
.form-summary ul { list-style: none; margin-top: 0.4rem; display: grid; gap: 0.2rem; font-size: var(--fs-small); }
.form-summary a { color: var(--eucalyptus); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-4);
}
.form-actions .caption { max-width: 26rem; }

.form-success { display: none; }
.form-success.is-visible { display: block; }
.form-success h2 { margin-bottom: var(--s-2); }
.form-success p { max-width: var(--measure); }

.enquiry-aside { display: grid; gap: var(--s-4); align-content: start; }
.enquiry-aside h2 { font-size: var(--fs-h3); margin-bottom: var(--s-1); }
.enquiry-aside p { font-size: var(--fs-small); color: var(--muted); max-width: 24rem; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   10. Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .card--link:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   11. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .skip-link { display: none; }
  body { background: #fff; }
}
