:root {
  --navy-950: #07111f;
  --navy-900: #0b192a;
  --navy-800: #122640;
  --navy-700: #1c3a60;
  --gold-500: #caa45d;
  --gold-400: #dbc083;
  --ivory-50: #fbfaf7;
  --ivory-100: #f5f1e8;
  --stone-300: #d8d1c3;
  --stone-500: #7d796f;
  --ink-900: #171b20;
  --white: #ffffff;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 25, 42, 0.15);
  --shadow: 0 28px 70px rgba(4, 11, 19, 0.15);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --content: 1240px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--ivory-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-400);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--compact {
  padding: 78px 0;
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.section--ivory {
  background: var(--ivory-100);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title,
.section-title,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.display-title {
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.display-title em,
.section-title em,
.page-title em {
  color: var(--gold-400);
  font-weight: 400;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-title {
  max-width: 820px;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.body-large {
  color: #4f5459;
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.8;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 64px;
}

.section-header p {
  margin: 0;
  color: #5c605f;
  font-size: 1.05rem;
}

.section--navy .section-header p {
  color: rgba(255, 255, 255, 0.66);
}

.muted-light {
  color: rgba(255, 255, 255, 0.66);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.btn--gold:hover {
  background: #ead39c;
  border-color: #ead39c;
}

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn--outline:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.btn--navy {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.btn--navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 17, 31, 0.82);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 3px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(202, 164, 93, 0.5);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.main-nav > a:not(.btn) {
  position: relative;
  padding: 29px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--gold-400);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:not(.btn):hover,
.main-nav > a[aria-current="page"] {
  color: var(--white);
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.98) 0%, rgba(5, 14, 25, 0.89) 38%, rgba(5, 14, 25, 0.26) 72%, rgba(5, 14, 25, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 14, 25, 0.82) 0%, transparent 38%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 94px) 0 180px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-trust {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-light);
  background: rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(14px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 105px;
  padding: 28px 28px 24px;
  border-left: 1px solid var(--line-light);
}

.trust-item:last-child {
  border-right: 1px solid var(--line-light);
}

.trust-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.trust-item small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 630px;
  margin-bottom: 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.product-feature-media {
  min-height: 520px;
}

.product-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 90px);
}

.product-feature-copy h3 {
  max-width: 580px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.product-feature-copy p {
  max-width: 560px;
  margin: 25px 0 34px;
  color: rgba(255, 255, 255, 0.68);
}

.product-feature-copy .text-link {
  color: var(--gold-400);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.category-card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-900);
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.category-card:hover .category-card-media img {
  transform: scale(1.045);
}

.category-card-content {
  position: relative;
  display: block;
  padding: 28px 30px 32px;
}

.category-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-4px);
}

.category-number {
  color: var(--gold-500);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.category-card h3 {
  margin: 25px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.category-card p {
  margin: 0;
  color: #666a69;
  font-size: 0.92rem;
}

.category-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.category-arrow {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.category-card:hover .category-arrow {
  transform: translate(4px, -4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(64px, 9vw, 132px);
}

.split-sticky {
  align-self: start;
}

.capability-list {
  border-top: 1px solid var(--line-light);
}

.capability {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.capability span {
  padding-top: 2px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.capability h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.capability p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: process;
}

.process-step {
  min-height: 300px;
  padding: 32px 26px;
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  counter-increment: process;
}

.process-step:first-child {
  border-left: 1px solid var(--line-dark);
}

.process-step::before {
  display: block;
  margin-bottom: 80px;
  color: var(--gold-500);
  content: "0" counter(process);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: #666a69;
  font-size: 0.9rem;
}

.network-panel {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.network-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.54) 54%, rgba(7, 17, 31, 0.1));
  content: "";
}

.network-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 670px;
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.network-copy p {
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audience-item {
  min-height: 135px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.audience-item span {
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.audience-item h3 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--gold-500);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 28px;
  color: #616563;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: clamp(44px, 6vw, 82px);
  color: var(--white);
  background: var(--navy-900);
}

.cta-panel h2 {
  max-width: 750px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.cta-panel p {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.58) 58%, rgba(7, 17, 31, 0.25));
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 110px) 0 92px;
}

.page-hero .lead {
  max-width: 720px;
}

.rich-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rich-card {
  min-height: 360px;
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.rich-card--navy {
  color: var(--white);
  background: var(--navy-900);
}

.rich-card .eyebrow {
  margin-bottom: 60px;
}

.rich-card h2,
.rich-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.rich-card p {
  margin: 0;
  color: #646866;
}

.rich-card--navy p {
  color: rgba(255, 255, 255, 0.64);
}

.detail-list {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  color: #555a58;
}

.detail-list li::before {
  color: var(--gold-500);
  content: "—";
}

.rich-card--navy .detail-list li {
  color: rgba(255, 255, 255, 0.7);
}

.product-category-card {
  padding: 0;
  overflow: hidden;
}

.product-category-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-900);
}

.product-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.product-category-card:hover .product-category-media img {
  transform: scale(1.035);
}

.product-category-copy {
  padding: clamp(32px, 4vw, 52px);
}

.product-category-card .eyebrow {
  margin-bottom: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.contact-details {
  align-self: start;
}

.contact-methods {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
}

.contact-method {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-method small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-500);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method address {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1.45;
}

.enquiry-form {
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #4e5352;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink-900);
  background: var(--ivory-50);
  border: 1px solid #cfc9bd;
  border-radius: 2px;
}

.field input,
.field select {
  height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(202, 164, 93, 0.45);
  outline-offset: 1px;
  border-color: var(--gold-500);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 5px 0;
  color: #5b605f;
  font-size: 0.86rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--navy-900);
}

.form-note {
  margin: 18px 0 0;
  color: #737775;
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  color: var(--navy-900);
  background: #eee8dc;
  border-left: 3px solid var(--gold-500);
}

.form-status.is-visible {
  display: block;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 52px 0 14px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.legal-copy p,
.legal-copy li {
  color: #565b59;
}

.contact-dock {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-dock > a {
  display: none;
}

.contact-actions {
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transform-origin: bottom center;
  transition: opacity 200ms ease, transform 240ms ease;
}

.contact-dock.is-open .contact-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-action,
.contact-toggle {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(4, 11, 19, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-action {
  position: relative;
  background: #138a5b;
}

.contact-action--phone {
  background: var(--navy-700);
}

.contact-action span {
  position: absolute;
  right: 70px;
  width: max-content;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.94);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-action:hover span,
.contact-action:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.contact-action svg,
.contact-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-toggle {
  padding: 0;
  cursor: pointer;
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: rgba(7, 17, 31, 0.12);
}

.contact-toggle .contact-close-icon {
  display: none;
}

.contact-dock.is-open .contact-toggle .contact-chat-icon {
  display: none;
}

.contact-dock.is-open .contact-toggle .contact-close-icon {
  display: block;
}

.contact-action:hover,
.contact-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 19px 44px rgba(4, 11, 19, 0.36);
}

.site-footer {
  padding: 76px 0 28px;
  color: var(--white);
  background: #050d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, 1fr);
  gap: 60px;
}

.footer-intro p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--gold-400);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
  font-style: normal;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--line-light);
  font-size: 0.74rem;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    background: rgba(7, 17, 31, 0.98);
    transition: max-height 260ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav > a:not(.btn) {
    padding: 19px 24px;
    border-bottom: 1px solid var(--line-light);
  }

  .main-nav > a:not(.btn)::after {
    display: none;
  }

  .main-nav .btn {
    margin: 18px 24px 26px;
  }

  .hero {
    min-height: 800px;
  }

  .section {
    padding: 88px 0;
  }

  .section-header,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-feature {
    grid-template-columns: 1fr;
  }

  .product-feature-media {
    min-height: 440px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(4) {
    border-left: 1px solid var(--line-dark);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .section {
    padding: 68px 0;
  }

  .section--compact {
    padding: 54px 0;
  }

  .brand {
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5, 14, 25, 0.96), rgba(5, 14, 25, 0.7)), linear-gradient(0deg, rgba(5, 14, 25, 0.92), transparent 58%);
  }

  .hero-content {
    padding: calc(var(--header-height) + 64px) 0 365px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 88px;
    padding: 18px;
    border-bottom: 1px solid var(--line-light);
  }

  .section-header {
    margin-bottom: 40px;
  }

  .product-feature {
    min-height: 0;
  }

  .product-feature-media {
    min-height: 320px;
  }

  .product-feature-copy {
    padding: 38px 28px 44px;
  }

  .category-grid,
  .rich-grid,
  .audience-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 0;
  }

  .category-card h3 {
    margin-top: 25px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(4) {
    min-height: 0;
    border-left: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .process-step::before {
    margin-bottom: 34px;
  }

  .network-panel,
  .network-copy {
    min-height: 630px;
  }

  .network-panel > img {
    object-position: 58% center;
  }

  .network-panel::after {
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.93), rgba(7, 17, 31, 0.6));
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 42px 28px;
  }

  .page-hero {
    min-height: 570px;
  }

  .page-hero-content {
    padding-bottom: 68px;
  }

  .rich-card {
    min-height: 0;
    padding: 34px 28px;
  }

  .product-category-card {
    padding: 0;
  }

  .rich-card .eyebrow {
    margin-bottom: 36px;
  }

  .field--full {
    grid-column: auto;
  }

  .enquiry-form {
    padding: 30px 20px;
  }

  .contact-dock {
    right: 14px;
    bottom: 14px;
    left: auto;
  }

  .contact-action span {
    right: 68px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    margin-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
