@charset "UTF-8";
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/lora-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/lora-latin-wght-italic.woff2") format("woff2");
}

:root {
  --navy: #0d3b56;
  --ink: #102b42;
  --petrol: #0f766e;
  --green: #287e43;
  --lime: #bceaa2;
  --mint: #d3eee4;
  --muted: #3f6169;
  --line: #9bc8c4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #0d3b56;
  color: var(--ink);
  font:
    17px/1.65 "Source Sans 3",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 55px;
  padding-right: 55px;
}
main {
  max-width: 1440px;
  margin: auto;
  background: #d5ece7;
}
.header {
  min-height: 106px;
  background: #e4f1ed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 74px;
  height: 74px;
  mix-blend-mode: multiply;
}
.brand > span {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -1.3px;
}
.header nav {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 14px;
}
.header nav .active {
  border-bottom: 2px solid var(--navy);
}
.header nav a:hover {
  color: var(--green);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  transition:
    transform 0.15s,
    background 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
}
.green {
  color: white;
  background: #267d43;
  box-shadow: inset 0 1px 0 #ffffff36;
}
.green:hover {
  background: #185f36;
}
.navy {
  color: white;
  background: var(--navy);
}
.header nav .navy:hover {
  color: var(--lime);
}
.outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #e7f4efb3;
}
.small {
  padding: 12px 20px;
}
.menu {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 585px;
  padding-top: 39px;
  padding-bottom: 35px;
  background: #d5eee2;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 53%;
  max-width: 630px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.45px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(49px, 4.8vw, 68px);
  line-height: 1.035;
  letter-spacing: -2.8px;
  margin-bottom: 22px;
}
.hero h1 em {
  color: #287e43;
}
em {
  font-style: normal;
  color: var(--petrol);
}
.lead {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 16px;
}
.intro {
  font-size: 17px;
  max-width: 475px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.micro {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 12px;
  color: var(--muted);
}
.hero-values {
  display: flex;
  gap: 27px;
  margin-top: 27px;
  font-size: 14px;
}
.hero-art {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 29%;
  background: #cce8d5;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d5eee2 0%, #d5eee2ed 11%, #d5eee275 27%, transparent 47%);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}
.dragon-note {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  background: #e7f4e8dd;
  padding: 13px 22px;
  transform: rotate(-4deg);
  border-radius: 40% 10% 30% 8%;
  font:
    italic 21px/1.3 "Lora",
    Georgia,
    serif;
  box-shadow: 0 6px 18px #123d3220;
}
.dragon-note span {
  color: var(--green);
  margin-left: 8px;
}
.services {
  background: linear-gradient(120deg, #c8e7e9, #e3f0e0);
  padding: 30px 0 10px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service {
  position: relative;
  text-align: center;
  padding: 0 23px 12px;
  border-right: 1px solid #9fc6c6;
}
.service:last-child {
  border: 0;
}
.service-icon {
  height: 69px;
  width: 69px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 37px;
  line-height: 1;
  color: var(--navy);
  background: #a8d7dd;
}
.service h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}
.service p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.extras {
  font-size: 14px;
  border-top: 1px solid #9fc6c6;
  margin-top: 22px;
}
.extras summary {
  display: flex;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
}
.extras summary::-webkit-details-marker {
  display: none;
}
.extras summary span {
  font-size: 22px;
  line-height: 1;
}
.extras[open] summary span {
  transform: rotate(45deg);
}
.extras > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 12px;
}
.extras p {
  font-size: 14px;
  line-height: 1.6;
}
.story-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  padding: 0;
  background: #e3f0e6;
  align-items: stretch;
}
.story-picture {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}
.story-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: brightness(0.83);
}
.story-picture > p {
  position: absolute;
  left: 22px;
  bottom: 18px;
  margin: 0;
  color: white;
  text-shadow: 0 2px 5px #092b38;
  font:
    italic 29px/1.1 "Lora",
    Georgia,
    serif;
  transform: rotate(-7deg);
}
.story-picture > p span {
  color: #d6f2b6;
}
.story-copy {
  padding: 31px 30px;
}
.story-copy .eyebrow {
  font-size: 10px;
  margin-bottom: 12px;
}
.story-copy h2 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.story-copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 13px;
}
.story-copy .button {
  margin-top: 8px;
}
.story-quote {
  background: linear-gradient(145deg, #0f5965, #092c4a);
  color: #fff;
  padding: 28px 33px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-mark {
  font:
    70px/0.75 "Lora",
    Georgia,
    serif;
  color: #a9e0a0;
}
.story-quote h2 {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin: 6px 0 22px;
}
.story-quote em {
  color: #c0edaa;
}
.story-quote p {
  font-size: 16px;
  color: #d0e5e6;
  margin-bottom: 15px;
}
.signature {
  font-size: 12px;
  color: #b1ced1;
}
.section {
  padding-top: 65px;
  padding-bottom: 65px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 37px;
}
.section-heading h2 {
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  border-top: 2px solid #91bbb3;
  padding-top: 21px;
}
.steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b8deba;
  color: #164e44;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  margin-bottom: 18px;
}
.steps h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.steps small {
  font-size: 10px;
  letter-spacing: 0.9px;
  font-weight: bold;
  color: var(--petrol);
}
.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  background: #0f6268;
  color: #edf6f1;
  padding-top: 47px;
  padding-bottom: 47px;
}
.quality h2 {
  font-size: 39px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}
.quality em {
  color: #c4efa9;
}
.quality .eyebrow {
  color: #c1e8d8;
  font-size: 10px;
}
.quality p {
  font-size: 15px;
  color: #d7e9e6;
  max-width: 515px;
}
.quality-list {
  align-self: center;
  padding: 25px 29px;
  border-radius: 12px;
  background: #0b3b53;
  border: 1px solid #629d9c;
}
.quality-list h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.quality-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.quality-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #47717b;
  font-size: 14px;
  line-height: 1.5;
}
.quality-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #bcf0a3;
}
.quality-list p {
  font-size: 12px;
  margin: 17px 0 0;
}
.contact {
  background: linear-gradient(110deg, #bae6bc, #b4ddd8);
  text-align: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.contact .eyebrow {
  font-size: 10px;
  margin-bottom: 16px;
}
.contact h2 {
  font-size: 43px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.contact > p:not(.eyebrow):not(.micro) {
  font-size: 16px;
  margin-bottom: 22px;
}
.contact .micro {
  margin-bottom: 0;
}
.footer {
  background: #0b2d45;
  color: #e1efe9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 27px;
  gap: 25px;
}
.footer .brand > span {
  font-size: 27px;
}
.footer p,
.footer > a:last-child {
  font-size: 12px;
  margin: 0;
  color: #c6dedd;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip {
  position: fixed;
  top: -80px;
  left: 15px;
  background: white;
  padding: 12px;
  z-index: 99;
}
.skip:focus {
  top: 10px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #78b755;
  outline-offset: 5px;
}
@media (min-width: 1441px) {
  body {
    padding: 22px 0;
  }
  .header {
    border-radius: 12px 12px 0 0;
  }
  .footer {
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  .header nav {
    gap: 19px;
  }
  .header nav .button {
    padding: 12px 15px;
  }
  .brand > span {
    font-size: 29px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-art {
    left: 24%;
  }
  .hero-art:after {
    background: linear-gradient(90deg, #d5eee2 0%, #d5eee2ee 20%, #d5eee250 45%, transparent 64%);
  }
  .hero .outline {
    padding: 12px 15px;
  }
  .service {
    padding: 0 16px 10px;
  }
  .service h3 {
    font-size: 19px;
  }
  .story-row {
    padding: 0;
  }
  .story-copy {
    padding: 25px 22px;
  }
  .story-quote {
    padding: 25px;
  }
  .story-quote h2 {
    font-size: 23px;
  }
  .steps {
    gap: 23px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .quality {
    gap: 35px;
  }
}
@media (max-width: 780px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header {
    min-height: 85px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand img {
    width: 61px;
    height: 61px;
  }
  .brand > span {
    font-size: 29px;
  }
  .menu {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #7ca3a1;
    border-radius: 7px;
    background: transparent;
    color: var(--navy);
    padding: 7px 13px;
    font-size: 14px;
  }
  .header nav {
    display: none;
    flex-basis: 100%;
    padding: 15px 0 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .header nav.open {
    display: flex;
  }
  .header nav .active {
    border: 0;
  }
  .hero {
    padding: 29px 0 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero-copy {
    padding: 0 22px;
    width: 100%;
    max-width: none;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.85px;
    margin-bottom: 17px;
  }
  .hero h1 {
    font-size: clamp(45px, 9.5vw, 64px);
    letter-spacing: -2px;
  }
  .lead {
    font-size: 21px;
  }
  .intro {
    font-size: 16px;
    max-width: 540px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 12px 17px;
    gap: 12px;
  }
  .hero-values {
    font-size: 13px;
    gap: 20px;
    margin-top: 22px;
  }
  .hero-art {
    position: relative;
    inset: auto;
    z-index: 0;
    height: 350px;
    margin-top: 5px;
    overflow: hidden;
  }
  .hero-art img {
    object-position: 65% 48%;
  }
  .hero-art:after {
    background: linear-gradient(180deg, #d5eee2 0%, #d5eee200 32%);
  }
  .dragon-note {
    font-size: 19px;
    bottom: 12px;
    right: 14px;
  }
  .services {
    padding-top: 26px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
  .service {
    padding: 0 16px 0;
  }
  .service:nth-child(2) {
    border: 0;
  }
  .service h3 {
    font-size: 19px;
  }
  .service p {
    font-size: 14px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 12px;
  }
  .extras > div {
    grid-template-columns: 1fr 1fr;
    gap: 12px 23px;
  }
  .extras summary {
    font-size: 13px;
    gap: 15px;
  }
  .story-row {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
  .story-picture {
    min-height: 315px;
  }
  .story-copy {
    padding: 25px 23px;
  }
  .story-copy h2 {
    font-size: 26px;
  }
  .story-quote {
    grid-column: 1/-1;
    text-align: center;
    padding: 34px 25px;
  }
  .story-quote h2 {
    font-size: 29px;
  }
  .story-quote p {
    font-size: 16px;
  }
  .section {
    padding-top: 43px;
    padding-bottom: 43px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
  }
  .steps h3 {
    font-size: 20px;
  }
  .steps p {
    font-size: 14px;
  }
  .steps small {
    font-size: 10px;
  }
  .quality {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 37px;
    padding-bottom: 37px;
  }
  .quality h2 {
    font-size: 35px;
  }
  .quality-list {
    padding: 23px;
  }
  .contact h2 {
    font-size: 37px;
  }
  .contact .button {
    font-size: 14px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer p {
    display: none;
  }
  .footer .brand > span {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .hero-art {
    height: 310px;
  }
  .hero-values {
    gap: 15px;
    font-size: 12px;
  }
  .hero-actions .button {
    padding: 12px 14px;
    font-size: 13px;
  }
  .story-row {
    grid-template-columns: 1fr;
  }
  .story-picture {
    height: 270px;
    min-height: 0;
  }
  .story-picture img {
    object-position: 65% 52%;
  }
  .story-copy {
    padding: 29px 24px;
  }
  .story-copy h2 {
    font-size: 30px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 17px;
  }
  .steps li > span {
    width: 38px;
    height: 38px;
  }
  .contact > p br {
    display: none;
  }
  .contact .micro br {
    display: block;
  }
  .quality .eyebrow {
    font-size: 9px;
  }
  .extras > div {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
/* Shared multipage layout */
html {
  scroll-padding-top: 130px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 18px #082b4522;
}
.header nav {
  gap: 22px;
}
.header nav a[aria-current="page"] {
  border-bottom: 2px solid var(--petrol);
  color: var(--petrol);
  font-weight: bold;
}
.page-intro {
  padding-top: 28px;
  padding-bottom: 48px;
  background: linear-gradient(120deg, #cceccf, #b9dcdf);
}
.breadcrumb {
  display: flex;
  gap: 13px;
  font-size: 13px;
  color: #3f6169;
  margin: 0 0 32px;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-intro h1 {
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 23px;
}
.page-intro .lead {
  max-width: 820px;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
}
.page-intro .eyebrow {
  margin-bottom: 15px;
}
.section-link {
  text-align: center;
  margin: 24px 0 12px;
}
.service h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-arrow {
  font-size: 14px;
  white-space: nowrap;
}
.home-process,
.questionnaire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-process h2,
.questionnaire h2,
.editorial h2 {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.home-process p,
.questionnaire p,
.editorial p {
  font-size: 16px;
}
.home-process h2 {
  margin-bottom: 0;
}
.editorial {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.editorial-image {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.values-section {
  background: #b8dfce;
  padding-top: 45px;
  padding-bottom: 45px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.detail-grid h2 {
  font-size: 25px;
  line-height: 1.2;
}
.detail-grid p {
  font-size: 16px;
  margin: 0;
}
.page-jumps {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #0f6268;
  color: #edf6f1;
  font-size: 15px;
}
.page-jumps a:hover {
  text-decoration: underline;
}
.offer-list {
  padding-top: 10px;
  padding-bottom: 30px;
}
.offer {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 25px;
  padding: 38px 0;
  border-bottom: 1px solid #91bbb3;
  scroll-margin-top: 125px;
}
.offer > div {
  max-width: 940px;
}
.offer-number {
  font-size: 33px;
  color: var(--petrol);
}
.offer h2 {
  font-size: 33px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.offer .eyebrow {
  margin-bottom: 12px;
}
.offer p,
.offer li {
  font-size: 16px;
}
.offer ul {
  padding-left: 21px;
  margin-bottom: 22px;
}
.text-link {
  font-weight: bold;
  color: #125f56;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.extensions {
  background: #c3e6d2;
  padding-top: 38px;
  padding-bottom: 38px;
}
.extensions h2 {
  font-size: 32px;
  line-height: 1.2;
}
.extensions .extras p {
  font-size: 16px;
}
.scope-note {
  font-size: 14px;
  padding-top: 23px;
  padding-bottom: 23px;
}
.scope-note p {
  margin: 0;
}
.process-detail .steps {
  grid-template-columns: 1fr 1fr;
  gap: 35px 55px;
}
.process-detail .steps h3 {
  font-size: 23px;
}
.process-detail .steps p {
  font-size: 16px;
}
.questionnaire {
  background: #bddfce;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}
.contact-card {
  background: #edf5ee;
  padding: 35px;
  border-radius: 14px;
}
.contact-card h2,
.contact-facts h2 {
  font-size: 29px;
  line-height: 1.2;
}
.contact-card p {
  font-size: 16px;
}
.contact-card .micro {
  font-size: 13px;
}
.email-address {
  display: inline-block;
  font-size: 29px;
  font-weight: bold;
  color: var(--petrol);
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}
.contact-card .button {
  font-size: 14px;
  gap: 12px;
}
.contact-facts {
  background: var(--navy);
  color: white;
  border-radius: 14px;
  overflow: hidden;
}
.contact-facts > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: 65% 45%;
}
.contact-facts > div {
  padding: 27px 30px;
}
.contact-facts ul {
  padding-left: 20px;
  font-size: 16px;
}
.contact-facts p {
  color: #c4efa9;
  margin-bottom: 0;
}
.footer nav {
  display: flex;
  gap: 25px;
  font-size: 13px;
}
.footer nav a:hover {
  text-decoration: underline;
}
.menu[aria-expanded="true"] {
  background: #c5e4d5;
}
@media (max-width: 1200px) {
  .header nav {
    gap: 15px;
  }
  .header nav .button {
    font-size: 12px;
    padding: 10px 13px;
    gap: 8px;
  }
  .header .brand > span {
    font-size: 28px;
  }
  .header .brand img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1000px) {
  .header {
    min-height: 85px;
    flex-wrap: wrap;
    gap: 0;
  }
  .menu {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #7ca3a1;
    border-radius: 7px;
    background: transparent;
    color: var(--navy);
    padding: 7px 13px;
    font-size: 14px;
  }
  .header nav {
    display: none;
    flex-basis: 100%;
    padding: 15px 0 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a[aria-current="page"] {
    border: 0;
  }
  .header nav .button {
    font-size: 14px;
  }
  .editorial {
    gap: 28px;
  }
  .contact-layout {
    gap: 25px;
  }
  .contact-card {
    padding: 25px;
  }
  .footer nav {
    gap: 17px;
  }
}
@media (max-width: 780px) {
  html {
    scroll-padding-top: 105px;
  }
  .page-intro {
    padding-top: 22px;
    padding-bottom: 35px;
  }
  .page-intro h1 {
    font-size: 40px;
    letter-spacing: -1.3px;
  }
  .page-intro .lead {
    font-size: 18px;
  }
  .breadcrumb {
    margin-bottom: 26px;
  }
  .home-process,
  .questionnaire,
  .editorial,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-process h2,
  .questionnaire h2,
  .editorial h2 {
    font-size: 31px;
  }
  .editorial-image {
    height: 280px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-jumps {
    gap: 15px 22px;
    font-size: 14px;
  }
  .offer {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 30px 0;
    scroll-margin-top: 105px;
  }
  .offer-number {
    font-size: 26px;
  }
  .offer h2 {
    font-size: 29px;
  }
  .offer p,
  .offer li {
    font-size: 16px;
  }
  .process-detail .steps {
    grid-template-columns: 1fr;
  }
  .process-detail .steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }
  .contact-card .button {
    font-size: 13px;
    padding: 13px 16px;
  }
  .footer {
    align-items: flex-start;
  }
  .footer nav {
    flex-wrap: wrap;
    gap: 12px 22px;
    order: 3;
    flex-basis: 100%;
  }
  .footer > a:last-child {
    margin-left: auto;
  }
  .extensions .extras > div {
    grid-template-columns: 1fr;
  }
  .header {
    border-radius: 0;
  }
}
/* Content depth and expandable brand areas; existing visual system retained. */
.hero-copy .lead {
  font-size: 20px;
  line-height: 1.5;
}
.hero-copy .intro {
  max-width: 510px;
}
.hero-actions .button {
  font-size: 14px;
}
.hero-copy {
  max-width: 665px;
}
.hero-actions {
  align-items: flex-start;
}
.hero {
  padding-bottom: 38px;
}
.website-heading {
  max-width: 920px;
  margin: 4px auto 32px;
  text-align: center;
}
.website-heading h2 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.8px;
}
.website-heading p:not(.eyebrow) {
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto;
}
.website-heading .eyebrow {
  margin-bottom: 13px;
}
.brand-areas {
  background: #c6e6d7;
}
.brand-areas .section-heading > p {
  max-width: 440px;
  font-size: 16px;
}
.brand-areas .detail-grid {
  gap: 25px;
}
.brand-areas article {
  background: #e6f2e8;
  border: 1px solid #a6cfc0;
  border-radius: 12px;
  padding: 27px 25px;
  display: flex;
  flex-direction: column;
}
.brand-areas h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.brand-areas article p {
  margin-bottom: 24px;
}
.brand-areas .text-link {
  margin-top: auto;
  font-size: 14px;
}
.story-copy p:not(.eyebrow) {
  font-size: 16px;
}
.story-quote h2 {
  line-height: 1.4;
}
.story-picture img {
  position: absolute;
  inset: 0;
}
.home-process {
  align-items: start;
}
.home-process h3,
.questionnaire h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 13px;
}
.home-process p,
.questionnaire p {
  line-height: 1.75;
}
.home-process h2 {
  margin-bottom: 22px;
}
.home-process h3:not(:first-child),
.questionnaire h3:not(:first-child) {
  margin-top: 27px;
}
.questionnaire {
  align-items: start;
}
.questionnaire h2 {
  line-height: 1.25;
}
.questionnaire-note {
  border-left: 3px solid var(--petrol);
  padding-left: 20px;
}
.scope-overview {
  background: #d8ede2;
}
.two-columns {
  grid-template-columns: 1fr 1fr;
}
.scope-overview .detail-grid {
  gap: 45px;
}
.scope-overview h3 {
  font-size: 23px;
}
.scope-overview p,
.scope-overview li {
  font-size: 16px;
}
.scope-overview ul {
  padding-left: 20px;
}
.scope-overview .text-link {
  display: inline-block;
  margin-top: 18px;
}
.contact > p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.contact .micro {
  margin-top: 12px;
}
.area-context {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #d7ebe2;
}
.area-context p {
  max-width: 930px;
  font-size: 16px;
}
.area-context nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: bold;
  color: var(--petrol);
}
.knowledge-intro > p {
  max-width: 800px;
}
.knowledge-intro > h2 {
  font-size: 36px;
  line-height: 1.2;
}
.knowledge-intro .detail-grid {
  margin: 35px 0;
}
.knowledge-intro h3 {
  font-size: 22px;
  line-height: 1.3;
}
.preparation-note {
  border-left: 3px solid var(--petrol);
  padding: 22px 27px;
  background: #c3e3d4;
}
.preparation-note p {
  max-width: 850px;
}
.footer {
  align-items: start;
}
.footer-links {
  flex: 1;
  margin-left: 35px;
}
.footer-links nav {
  flex-wrap: wrap;
  gap: 12px 22px;
}
.footer-links nav + nav {
  margin-top: 17px;
  opacity: 0.9;
}
.header nav .button[aria-current="page"] {
  color: white;
  border-bottom-color: #a7f3d0;
}
.quality p {
  line-height: 1.75;
}
.quality-list {
  align-self: start;
}
.quality h2 {
  line-height: 1.25;
}
@media (max-width: 1100px) {
  .hero-copy {
    width: 58%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .brand-areas article {
    padding: 23px 20px;
  }
  .footer-links {
    margin-left: 15px;
  }
}
@media (max-width: 780px) {
  .hero-copy {
    width: 100%;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-copy .lead {
    font-size: 19px;
  }
  .hero-actions .button {
    font-size: 13px;
  }
  .hero {
    padding-bottom: 0;
  }
  .website-heading {
    text-align: left;
    margin-bottom: 28px;
  }
  .website-heading h2 {
    font-size: 27px;
  }
  .website-heading p:not(.eyebrow) {
    font-size: 16px;
  }
  .brand-areas .detail-grid {
    grid-template-columns: 1fr;
  }
  .brand-areas .section-heading > p {
    max-width: none;
  }
  .two-columns {
    grid-template-columns: 1fr;
  }
  .scope-overview .detail-grid {
    gap: 28px;
  }
  .brand-areas .text-link {
    font-size: 15px;
  }
  .footer-links {
    margin: 0;
    order: 3;
    flex-basis: 100%;
  }
  .footer-links nav {
    font-size: 13px;
  }
  .knowledge-intro > h2 {
    font-size: 30px;
  }
  .contact .button {
    font-size: 14px;
  }
  .story-picture {
    min-height: 330px;
  }
  .home-process h3,
  .questionnaire h3 {
    font-size: 21px;
  }
  .quality-list {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .story-picture {
    min-height: 0;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    font-size: 14px;
  }
  .website-heading h2 {
    font-size: 25px;
  }
}
.legal-content {
  max-width: 1440px;
}
.legal-content > h2 {
  font-size: 26px;
  line-height: 1.3;
  margin-top: 34px;
  margin-bottom: 15px;
}
.legal-content > p {
  max-width: 850px;
  line-height: 1.8;
}
.legal-content .preparation-note {
  max-width: 950px;
  margin-bottom: 35px;
}
.legal-content .preparation-note h2 {
  font-size: 25px;
  line-height: 1.3;
}
.footer a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* Two aligned footer rows: brand areas, then collaboration and legal links. */
.footer {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 30px;
  row-gap: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-links {
  margin: 0;
  min-width: 0;
}
.footer-links nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 18px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-links nav a {
  padding: 6px 0;
  white-space: nowrap;
}
.footer-links nav + nav {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid #ffffff26;
  opacity: 1;
}
.footer .brand {
  padding-top: 1px;
}
.footer .footer-top {
  padding-top: 7px;
  white-space: nowrap;
  margin: 0;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .footer {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
  }
  .footer-links nav {
    gap: 0 12px;
    font-size: 13px;
  }
  .footer .footer-top {
    grid-column: 1;
    grid-row: 2;
    padding: 0;
  }
  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
@media (max-width: 780px) {
  .footer {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }
  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 0;
  }
  .footer .footer-top {
    grid-column: 2;
    grid-row: 1;
    padding-top: 6px;
  }
  .footer-links nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 18px;
    font-size: 14px;
  }
  .footer-links nav + nav {
    margin-top: 18px;
    padding-top: 18px;
  }
  .footer-links nav a {
    white-space: normal;
  }
}
@media (max-width: 420px) {
  .footer-links nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }
}
/* Standard scope and optional extensions */
.scope-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 28px;
  margin-bottom: 28px;
  background: #c5e4d6;
  border-left: 3px solid var(--petrol);
  border-radius: 0 10px 10px 0;
}
.scope-start > div {
  max-width: 770px;
}
.scope-start .eyebrow {
  margin-bottom: 8px;
}
.scope-start h3 {
  margin: 0 0 10px;
  font-size: 23px;
}
.scope-start p:last-child {
  margin-bottom: 0;
}
.scope-start > a {
  flex-shrink: 0;
  font-size: 14px;
  max-width: 210px;
}
.scope-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.scope-card {
  padding: 30px 32px;
  border-radius: 16px;
  border: 1px solid #9bc8b5;
  background: #ecf6ec;
  display: flex;
  flex-direction: column;
}
.scope-card.scope-optional {
  background: #d4eae8;
  border-color: #8fbdba;
}
.scope-card .eyebrow {
  font-size: 10px;
  margin-bottom: 12px;
}
.scope-card h3 {
  font-size: 29px;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}
.scope-card-intro {
  min-height: 55px;
  color: var(--muted);
}
.scope-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 25px;
}
.scope-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid #aacdbc70;
  line-height: 1.5;
  font-size: 16px;
}
.scope-card li:last-child {
  border-bottom: 0;
}
.scope-card li strong {
  font-weight: 600;
}
.scope-card li p {
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0 0;
  color: var(--muted);
}
.scope-symbol {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #c9e9c6;
  color: #246c37;
  font-size: 16px;
  font-weight: bold;
  margin-top: 1px;
}
.scope-optional .scope-symbol {
  background: #bbdcda;
  color: #0d645e;
  font-size: 20px;
  font-weight: 400;
}
.scope-card .scope-card-note {
  margin: auto 0 0;
  padding-top: 19px;
  border-top: 1px solid #91b9a8;
  font-size: 14px;
  line-height: 1.65;
}
.scope-agreement {
  max-width: 930px;
  font-size: 15px;
  margin: 24px 0 15px;
}
.extension-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 40px;
  margin: 35px 0;
}
.extension-details h3 {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 13px;
}
.extension-details p {
  font-size: 16px;
  margin: 0;
}
.language-extension {
  border-top: 1px solid #8fbdab;
  padding-top: 28px;
  margin-top: 35px;
  max-width: 950px;
}
.language-extension h3 {
  font-size: 24px;
  line-height: 1.3;
}
.language-extension p {
  font-size: 16px;
}
.language-extension .eyebrow {
  font-size: 10px;
}
@media (max-width: 1000px) {
  .scope-start {
    display: block;
  }
  .scope-start > a {
    display: inline-block;
    margin-top: 18px;
    max-width: none;
  }
  .scope-card {
    padding: 26px 24px;
  }
}
@media (max-width: 780px) {
  .scope-cards,
  .extension-details {
    grid-template-columns: 1fr;
  }
  .scope-start {
    padding: 22px;
  }
  .scope-start h3 {
    font-size: 22px;
    line-height: 1.35;
  }
  .scope-card h3 {
    font-size: 27px;
  }
  .scope-card-intro {
    min-height: 0;
  }
  .scope-card li {
    font-size: 16px;
  }
  .scope-card {
    padding: 25px 22px;
  }
  .scope-card .scope-card-note {
    margin-top: 5px;
  }
  .scope-cards {
    gap: 22px;
  }
  .scope-agreement {
    font-size: 15px;
  }
}
/* Colour only the two comparison cards; retain the light section background. */
.scope-card.scope-standard {
  background: #0b3b53;
  border-color: #629d9c;
  color: #fff;
}
.scope-card.scope-optional {
  background: #0f6268;
  border-color: #0f6268;
  color: #fff;
}
.scope-card .eyebrow,
.scope-card .scope-card-intro,
.scope-card li p,
.scope-card .scope-card-note {
  color: #f0f7f2;
}
.scope-card li {
  border-bottom-color: #ffffff38;
}
.scope-card .scope-card-note {
  border-top-color: #ffffff55;
}
.scope-card .scope-symbol,
.scope-card.scope-optional .scope-symbol {
  background: #ffffff20;
  color: #e2ffce;
}
.content-scope-note {
  margin-top: 26px;
  padding: 24px 27px;
  background: #c5e4d6;
  border-left: 3px solid var(--petrol);
  border-radius: 0 10px 10px 0;
}
.content-scope-note h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 13px;
}
.content-scope-note p {
  max-width: 1000px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.content-scope-note p:last-child {
  margin-bottom: 0;
}
@media (max-width: 780px) {
  .content-scope-note {
    padding: 22px;
  }
  .content-scope-note h3 {
    font-size: 22px;
  }
}

/* Supplied dragon artwork for the four service categories. */
.service-icon.service-dragon {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 16px;
}
@media (max-width: 780px) {
  .service-icon.service-dragon {
    width: 96px;
    height: 96px;
  }
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-form label {
  font-weight: 650;
}
.contact-form input,
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #629d9c;
  border-radius: 8px;
  background: #f5fbf7;
  color: #0b3b53;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid #0f6268;
  outline-offset: 2px;
}
.contact-form .form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.contact-form .button {
  justify-self: start;
  cursor: pointer;
}
.contact-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-status {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}
.form-status:empty {
  display: none;
}
