:root {
  --ink: #18201f;
  --ink-soft: #4d5856;
  --forest: #263b37;
  --forest-deep: #142522;
  --red: #b34032;
  --red-dark: #8f2f24;
  --sand: #d5c9b5;
  --warm: #f4f1ea;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #d9ddd8;
  --line-dark: rgba(255, 255, 255, 0.18);
  --max: 1240px;
  --header-height: 82px;
  --radius: 4px;
  --shadow: 0 22px 60px rgba(13, 26, 23, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #e3a293;
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-150%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, Aptos, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.85rem, 5.2vw, 5.4rem);
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(2.7rem, 4.65vw, 5rem);
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.7rem);
}

h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.56);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  background: var(--warm);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  padding: 10px clamp(18px, 2.6vw, 42px);
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(217, 221, 216, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: clamp(238px, 20vw, 286px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  margin-left: auto;
  color: #3f4b49;
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 11px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 0;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "+";
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}

.nav-dropdown[open] summary::after {
  content: "−";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: -14px;
  width: 400px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 8px;
  background: var(--line);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  color: var(--forest-deep);
  background: var(--paper);
  font-size: 0.79rem;
}

.nav-dropdown-menu a:hover {
  color: var(--red-dark);
  background: var(--warm);
}

.nav-dropdown-menu a::after {
  display: none;
}

.header-contact {
  flex: 0 0 auto;
  display: grid;
  gap: 1px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  line-height: 1.2;
}

.header-contact span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-email {
  color: var(--forest-deep);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 52px) clamp(18px, 4.5vw, 72px) 54px;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 26, 23, 0.95) 0%, rgba(13, 26, 23, 0.82) 43%, rgba(13, 26, 23, 0.28) 78%, rgba(13, 26, 23, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 26, 23, 0.08) 30%, rgba(13, 26, 23, 0.66) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
}

.hero-copy {
  max-width: 850px;
}

.hero .eyebrow {
  color: #f1a293;
}

.hero-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.email-card {
  position: relative;
  padding: 29px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.email-card-label {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.email-card > strong {
  display: block;
  max-width: 310px;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.email-card p {
  margin: 14px 0 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.email-card-address {
  display: block;
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.email-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 27px;
  padding-top: 17px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
}

.copy-email {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  border-bottom: 1px solid var(--line);
  gap: 1px;
}

.assurance > div {
  position: relative;
  min-height: 145px;
  padding: 28px clamp(22px, 3.5vw, 56px);
  background: var(--paper);
}

.assurance-index {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.assurance strong {
  display: block;
  font-size: 1.02rem;
}

.assurance p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.56);
  border-color: var(--line-dark);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 9vw, 128px);
  align-items: start;
}

.intro h2 {
  max-width: 780px;
}

.prose p,
.lead-prose p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.lead-prose p:first-child {
  margin-top: 5px;
}

.prose a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 42%),
    var(--forest-deep);
}

.quote-layout {
  display: grid;
  gap: 48px;
}

.quote-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.quote-intro h2 {
  max-width: 1180px;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  text-wrap: balance;
}

.quote-intro > p:last-child {
  max-width: 850px;
  margin: 4px 0 5px;
  color: rgba(255, 255, 255, 0.69);
}

.quote-section .eyebrow {
  color: #f1a293;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.brief-grid article {
  min-height: 220px;
  padding: 28px;
  background: #1b302c;
}

.brief-grid article > span {
  display: inline-block;
  margin-bottom: 30px;
  color: #e79283;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-grid h3 {
  color: var(--white);
}

.brief-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.brief-grid .brief-result {
  color: var(--ink);
  background: var(--sand);
}

.brief-grid .brief-result > span,
.brief-grid .brief-result h3,
.brief-grid .brief-result p {
  color: var(--forest-deep);
}

.quote-email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line-dark);
}

.quote-email-row > div {
  display: grid;
  gap: 3px;
}

.quote-email-row strong {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-email-row a:not(.button) {
  color: var(--white);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.15;
  border-bottom: 3px solid var(--red);
}

.services-heading,
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.58fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: end;
  margin-bottom: 42px;
}

.services-heading > p,
.process-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-cards article {
  min-height: 340px;
  padding: clamp(26px, 3.2vw, 40px);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.service-cards article:hover {
  background: var(--warm);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-cards h3 {
  max-width: 420px;
  font-size: clamp(1.35rem, 1.8vw, 1.82rem);
}

.service-cards p {
  max-width: 560px;
  margin: 17px 0;
  color: var(--ink-soft);
}

.service-cards ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: #3d4947;
  font-size: 0.88rem;
  list-style: none;
}

.service-cards li {
  position: relative;
  padding-left: 19px;
}

.service-cards li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
}

.applications {
  border-top: 1px solid #e1dbd0;
  border-bottom: 1px solid #e1dbd0;
}

.applications-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.56fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: end;
  margin-bottom: 42px;
}

.applications-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d8d1c5;
  border-left: 1px solid #d8d1c5;
}

.application-grid article {
  min-height: 350px;
  padding: clamp(27px, 3.2vw, 40px);
  background: var(--paper);
  border-right: 1px solid #d8d1c5;
  border-bottom: 1px solid #d8d1c5;
}

.application-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-grid h3 {
  max-width: 500px;
  font-size: clamp(1.35rem, 1.8vw, 1.82rem);
}

.application-grid p {
  max-width: 560px;
  margin: 17px 0;
  color: var(--ink-soft);
}

.application-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: #3d4947;
  font-size: 0.88rem;
  list-style: none;
}

.application-grid li {
  position: relative;
  padding-left: 19px;
}

.application-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
}

.applications-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 25px 28px;
  color: var(--white);
  background: var(--forest);
}

.applications-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.applications-cta strong {
  color: var(--white);
}

.applications-cta a {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 850;
  border-bottom: 2px solid #e79283;
}

.technical-choice {
  padding-top: 40px;
}

.choice-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(560px, 1fr);
  gap: clamp(48px, 8vw, 115px);
  align-items: start;
}

.choice-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.choice-copy p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.comparison {
  border-top: 3px solid var(--forest-deep);
}

.comparison > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.65fr) minmax(220px, 1fr) minmax(145px, 0.62fr);
  gap: 22px;
  align-items: start;
  padding: 23px 4px;
  border-bottom: 1px solid var(--line);
}

.comparison-head {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison strong {
  color: var(--forest-deep);
}

.comparison > div:not(.comparison-head) > span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.certificate {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(500px, 1.15fr);
  min-height: 700px;
  margin-top: 30px;
  color: var(--white);
  background: var(--forest);
}

.certificate-media {
  min-height: 650px;
  overflow: hidden;
}

.certificate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.certificate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.5vw, 80px);
}

.certificate .eyebrow {
  color: #f1a293;
}

.certificate-lead {
  max-width: 720px;
  margin: 27px 0 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

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

.certificate-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.certificate-list article > span {
  color: #ef998a;
  font-size: 0.72rem;
  font-weight: 900;
}

.certificate-list h3 {
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.certificate-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.88rem;
}

.certificate-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 29px 22px 24px;
  border-right: 1px solid var(--line);
}

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

.process-list li > span {
  display: block;
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-list h3 {
  font-size: 1.08rem;
}

.process-list p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  background: var(--warm);
}

.sectors-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(560px, 1fr);
  gap: clamp(48px, 8vw, 116px);
}

.sectors-intro {
  align-self: start;
}

.sectors-intro p:last-child {
  margin: 25px 0 0;
  color: var(--ink-soft);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sector-grid article {
  min-height: 225px;
  padding: 27px;
  background: var(--paper);
  border: 1px solid #ddd7cc;
}

.sector-grid article > span {
  display: block;
  margin-bottom: 39px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.sector-grid h3 {
  font-size: 1.2rem;
}

.sector-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

.regulations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.68fr);
  gap: clamp(54px, 9vw, 130px);
}

.regulations-layout .prose p:first-child {
  margin-top: 2px;
}

.small-print {
  margin-top: 27px;
  padding: 17px 18px;
  background: var(--warm);
  border-left: 3px solid var(--red);
  font-size: 0.85rem !important;
}

.coverage {
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--forest-deep);
  background-size: 44px 44px;
}

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(560px, 1fr);
  gap: clamp(48px, 8vw, 120px);
}

.coverage-heading {
  align-self: start;
}

.coverage .eyebrow {
  color: #f1a293;
}

.coverage-heading p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.province-grid > a {
  min-height: 168px;
  padding: 22px;
  background: rgba(20, 37, 34, 0.9);
  border: 1px solid var(--line-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.province-grid > a:hover {
  background: #213b36;
  transform: translateY(-2px);
}

.province-grid > a > span {
  display: block;
  margin-bottom: 28px;
  color: #ef998a;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.province-grid h3 {
  color: var(--white);
}

.province-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(560px, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 2px solid var(--forest-deep);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  color: var(--forest-deep);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 4px;
  width: 16px;
  height: 2px;
  background: var(--red);
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 42px 25px 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 118px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--red-dark);
}

.contact::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.02);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.contact h2 {
  max-width: 1000px;
}

.contact-lead {
  max-width: 700px;
  margin: 24px 0 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-email {
  display: inline-block;
  color: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  border-bottom: 4px solid rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.contact-actions .button-primary {
  color: var(--red-dark);
  background: var(--white);
  border-color: var(--white);
}

.contact-actions .button-primary:hover {
  background: var(--warm);
}

.contact-actions .copy-email {
  padding: 13px 20px;
  text-decoration: none;
}

.contact-phone {
  display: grid;
  gap: 4px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

.contact-phone span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phone a {
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer {
  color: var(--white);
  background: #0d1a18;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr) minmax(250px, 0.85fr);
  gap: clamp(30px, 4vw, 70px);
  padding: 72px max(20px, calc((100% - var(--max)) / 2));
}

.footer-brand img {
  width: min(340px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main h2 {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main address {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-style: normal;
}

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

.footer-contact a:first-of-type {
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px max(20px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.46);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
}

.mobile-contact {
  display: none;
}

.copy-toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--forest-deep);
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1240px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 9px;
    color: var(--forest-deep);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 3px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    bottom: auto;
    width: min(390px, 100%);
    height: calc(100vh - var(--header-height));
    display: none;
    align-items: stretch;
    align-content: start;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    color: var(--forest-deep);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: -20px 24px 60px rgba(13, 26, 23, 0.15);
    white-space: normal;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown summary {
    width: 100%;
    padding: 13px 3px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-dropdown summary {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
    box-shadow: none;
  }

  .header-contact {
    margin-left: 0;
  }

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

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

  .process-list li {
    min-height: 250px;
    border-bottom: 1px solid var(--line);
  }

  .process-list li > span {
    margin-bottom: 42px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 860px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .email-card {
    width: min(550px, 100%);
  }

  .intro-layout,
  .quote-intro,
  .services-heading,
  .applications-heading,
  .choice-layout,
  .process-heading,
  .sectors-layout,
  .regulations-layout,
  .coverage-inner,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .choice-copy,
  .faq-heading {
    position: static;
  }

  .certificate {
    grid-template-columns: minmax(300px, 0.7fr) minmax(420px, 1fr);
  }

  .certificate-copy {
    padding: 58px 42px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 78px;
  }

  h1 {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.9vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.2vw, 2.7rem);
  }

  .site-header {
    padding: 9px 15px;
  }

  .brand img {
    width: min(232px, 64vw);
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: calc(var(--header-height) + 38px) 18px 36px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 26, 23, 0.62) 0%, rgba(13, 26, 23, 0.82) 51%, rgba(13, 26, 23, 0.97) 100%),
      linear-gradient(90deg, rgba(13, 26, 23, 0.55), rgba(13, 26, 23, 0.1));
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    display: none;
  }

  .email-card {
    padding: 23px;
  }

  .email-card-address {
    font-size: 0.84rem;
  }

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

  .assurance > div {
    min-height: 0;
    padding: 23px 18px;
  }

  .section,
  .section-dark,
  .section-soft {
    width: 100%;
    padding: 64px 18px;
  }

  .section-kicker {
    margin-bottom: 32px;
  }

  .brief-grid,
  .service-cards,
  .application-grid,
  .sector-grid,
  .province-grid {
    grid-template-columns: 1fr;
  }

  .brief-grid article {
    min-height: 0;
  }

  .brief-grid article > span {
    margin-bottom: 18px;
  }

  .quote-email-row {
    display: grid;
  }

  .quote-email-row a:not(.button) {
    font-size: 1rem;
  }

  .service-cards article {
    min-height: 0;
    padding: 29px 24px;
  }

  .application-grid article {
    min-height: 0;
    padding: 29px 24px;
  }

  .application-meta {
    margin-bottom: 28px;
  }

  .applications-cta {
    display: grid;
    gap: 18px;
    padding: 24px;
  }

  .applications-cta a {
    width: fit-content;
  }

  .service-icon {
    margin-bottom: 30px;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison > div {
    min-width: 660px;
  }

  .certificate {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .certificate-media {
    min-height: 480px;
    max-height: 620px;
  }

  .certificate-copy {
    padding: 70px 20px;
  }

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

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

  .process-list li > span {
    margin-bottom: 24px;
  }

  .sector-grid article,
  .province-grid > a {
    min-height: 0;
  }

  .coverage {
    padding: 64px 18px;
  }

  .contact {
    padding: 84px 18px;
  }

  .contact-email {
    font-size: clamp(1.2rem, 6.25vw, 2rem);
    letter-spacing: -0.025em;
    border-bottom-width: 2px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 56px 18px;
  }

  .footer-bottom {
    display: grid;
    padding: 18px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 7px;
    padding-bottom: max(7px, env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(13, 26, 24, 0.98);
    box-shadow: 0 -12px 30px rgba(6, 15, 13, 0.22);
  }

  .mobile-contact a {
    min-height: 58px;
    display: grid;
    place-content: center;
    padding: 8px 10px;
    border-radius: 3px;
    text-align: center;
  }

  .mobile-email {
    background: var(--red);
  }

  .mobile-email span {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-email strong {
    font-size: clamp(0.72rem, 3.4vw, 0.9rem);
    line-height: 1.2;
  }

  .copy-toast {
    right: 12px;
    bottom: 88px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 800px;
  }

  .email-card-bottom span {
    display: none;
  }

  .comparison > div {
    grid-template-columns: 145px 220px 135px;
    min-width: 570px;
  }
}

@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;
  }
}

@media print {
  .site-header,
  .mobile-contact,
  .copy-toast {
    display: none !important;
  }

  body {
    padding: 0;
  }

  .hero {
    min-height: 0;
    color: var(--ink);
    background: var(--white);
  }

  .hero-image,
  .hero-shade,
  .email-card {
    display: none;
  }
}
