:root {
  --ink: #10243b;
  --ink-soft: #41556b;
  --navy: #063b66;
  --navy-deep: #062b4a;
  --blue: #0c5f96;
  --red: #c71f2d;
  --gold: #c69a52;
  --mist: #edf3f7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d8e1e8;
  --success: #1e6b50;
  --shadow: 0 18px 48px rgba(16, 36, 59, 0.1);
  --radius: 10px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.65rem, 4.15vw, 4rem);
  line-height: 1.07;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.14;
}
h3 {
  line-height: 1.25;
}
.lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}
.section {
  padding: 88px 0;
}
.section-sm {
  padding: 72px 0;
}
.section-blue {
  color: var(--white);
  background: var(--navy-deep);
}
.section-mist {
  background: var(--mist);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}
.eyebrow-on-dark {
  color: #ff9aa1;
}
.spacer-sm {
  height: 34px;
}
.spacer-md {
  height: 46px;
}
.contact-title {
  font-size: 2.05rem;
}
.subsection-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
}
.download-card-spaced {
  margin-top: 30px;
}
.download-card-top {
  align-items: flex-start;
}
.source-note-spaced {
  margin-top: 18px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.topline {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}
.topline .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 38px;
}
.topline a {
  padding: 7px 0;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.topline a:hover {
  color: var(--white);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid rgba(16, 36, 59, 0.1);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 205px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}
.nav-apply {
  padding: 11px 18px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 4px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary {
  color: var(--white);
  background: var(--red);
}
.btn-primary:hover {
  background: #a81824;
  transform: translateY(-1px);
}
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--navy);
}
.btn-dark {
  color: var(--white);
  background: var(--navy);
}
.btn-text {
  padding: 0;
  min-height: auto;
  color: var(--navy);
  border-radius: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 51%;
  background:
    linear-gradient(
      90deg,
      var(--paper) 0%,
      rgba(251, 250, 247, 0.52) 16%,
      rgba(251, 250, 247, 0.06) 48%
    ),
    url("../hero-new-zealand.jpg") center/cover;
  filter: saturate(0.72) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -180px auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(12, 95, 150, 0.18);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: center;
}
.hero-copy {
  max-width: 700px;
  padding: 20px 0;
}
.hero-copy h1 {
  margin-bottom: 26px;
}
.hero-copy .lead {
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.hero-panel {
  justify-self: end;
  width: min(100%, 395px);
  padding: 31px;
  color: var(--white);
  background: rgba(6, 43, 74, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel .label {
  margin-bottom: 20px;
  color: #a9c0d2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stat span {
  color: #b9cbd9;
  font-size: 0.78rem;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-align: right;
}
.credential-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.credential-item {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.credential-item:last-child {
  border-right: 0;
}
.credential-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
}
.credential-item span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.parameter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.parameter {
  min-height: 290px;
  padding: 38px;
  border-right: 1px solid var(--line);
}
.parameter:last-child {
  border-right: 0;
}
.parameter-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-display);
}
.parameter h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
}
.parameter p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.fact-line {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.solution-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.solution-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
}
.solution-card p,
.solution-card li {
  color: var(--ink-soft);
}
.solution-card.featured p,
.solution-card.featured li {
  color: #d7e4ed;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 8px 0 8px 23px;
  font-size: 0.9rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
}

.prose-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.prose-block blockquote {
  margin: 0;
  padding-left: 26px;
  border-left: 3px solid var(--red);
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.spec-table th,
.spec-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 34%;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.spec-table td {
  color: var(--ink-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.case-card .case-location {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-card h3 {
  min-height: 96px;
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.case-amount {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2rem;
}
.case-card .case-amount {
  font-size: 1.45rem;
}
.case-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.case-card .outcome {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.case-sample-note {
  max-width: 820px;
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.broker-band {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--navy-deep);
  border-radius: var(--radius);
}
.broker-copy {
  padding: 56px;
  color: var(--white);
}
.broker-copy p {
  color: #bfd0dc;
}
.broker-image {
  min-height: 430px;
  background:
    linear-gradient(rgba(6, 43, 74, 0.12), rgba(6, 43, 74, 0.12)),
    url("../blob.png") center/cover;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.download-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}
.download-card p {
  margin-bottom: 0;
  color: #dce8ef;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
.form-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 95, 150, 0.12);
}
.form-note,
.status {
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.status {
  margin: 14px 0 0;
}
.contact-details {
  padding: 18px 0;
}
.detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.detail span {
  display: block;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.map-wrap {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.page-hero {
  padding: 72px 0 58px;
  color: var(--white);
  background: var(--navy-deep);
}
.page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}
.page-hero .lead {
  color: #c6d5df;
}
.breadcrumb {
  margin-bottom: 34px;
  color: #9fb7c7;
  font-size: 0.78rem;
}
.breadcrumb a {
  text-decoration: none;
}

.legal-alert {
  padding: 28px;
  border-left: 5px solid var(--red);
  background: #fff3f2;
}
.legal-alert h2 {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 1.18rem;
  letter-spacing: 0;
}
.legal-alert p {
  margin-bottom: 0;
  color: #633136;
}
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.choice-list {
  display: grid;
  gap: 10px;
}
.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.choice input {
  margin-top: 5px;
  accent-color: var(--red);
}
.choice strong,
.choice span {
  display: block;
}
.choice span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.process {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}
.process-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-family: var(--font-display);
}
.process-card p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.source-note {
  padding: 22px;
  background: var(--mist);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.source-note a {
  color: var(--blue);
}
.site-footer {
  padding: 58px 0 24px;
  color: #b7c8d4;
  background: var(--navy-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand img {
  width: 220px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
}
.footer-brand p {
  max-width: 400px;
  margin-top: 18px;
  color: #b7c8d4;
  font-size: 0.84rem;
}
.footer-links h3 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a {
  display: block;
  margin: 9px 0;
  color: #b7c8d4;
  font-size: 0.84rem;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}
.wholesale-link {
  opacity: 0.9;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 106px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .hero::before {
    inset: 56% 0 0;
    background:
      linear-gradient(var(--paper), rgba(251, 250, 247, 0.12)),
      url("../hero-new-zealand.jpg") center/cover;
  }
  .hero-grid,
  .section-heading,
  .prose-block,
  .contact-grid,
  .qualifier-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    justify-self: start;
  }
  .parameter-grid,
  .case-grid,
  .process {
    grid-template-columns: 1fr;
  }
  .parameter {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .parameter:last-child {
    border-bottom: 0;
  }
  .broker-band {
    grid-template-columns: 1fr;
  }
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credential-item:nth-child(2) {
    border-right: 0;
  }
  .credential-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .brand img {
    width: 172px;
  }
  .hero {
    padding-top: 74px;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }
  .hero-actions .btn {
    width: 100%;
  }
  .solution-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .download-card {
    align-items: stretch;
    flex-direction: column;
  }
  .broker-copy,
  .form-card {
    padding: 28px;
  }
  .broker-image {
    min-height: 280px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
