:root {
  --navy: #0e3242;
  --teal: #0e4f53;
  --deep-teal: #1d666e;
  --mint: #8bd3bf;
  --seafoam: #6ab6aa;
  --ivory: #f4f1ea;
  --white: #fff;
  --pale: #edeef2;
  --ink: #122430;
  --muted: #68767d;
  --line: rgba(14, 50, 66, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--mint);
  color: var(--navy);
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 82px;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    height 0.25s;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(14, 50, 66, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}
.brand {
  width: 240px;
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.brand img {
  width: 220px;
  filter: brightness(0) invert(1);
  transform: scale(1.8);
  transform-origin: left center;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
}
.site-nav a,
.header-cta {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}
.site-nav a {
  position: relative;
  padding: 0.6rem 0;
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.25rem;
  height: 1px;
  background: var(--mint);
  transition: right 0.2s;
}
.site-nav a:hover:after,
.site-nav a:focus-visible:after {
  right: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--white);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
}
.header-cta {
  border-color: rgba(255, 255, 255, 0.48);
}
.button-mint {
  background: var(--mint);
  color: var(--navy);
}
.button-mint:hover {
  background: var(--white);
}
.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}
.button-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.button-navy {
  background: var(--navy);
  color: var(--white);
}
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(115deg, #0a2734 0%, #0e3242 52%, #0e4f53 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 9rem clamp(1.25rem, 8vw, 9rem) 7rem;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(to right, transparent, black 35%, black);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 48%,
    rgba(139, 211, 191, 0.18),
    transparent 28%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}
.eyebrow.dark {
  color: var(--deep-teal);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1,
.section-intro h2,
.statement h2,
.representation h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.hero h1 {
  font-size: clamp(4.5rem, 10.4vw, 10.5rem);
  margin: 0 0 2rem;
  max-width: 8ch;
}
.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}
.text-link {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}
.text-link span {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, 3px);
}
.dark-link {
  color: var(--navy);
}
.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-proof span + span:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--mint);
  margin: 0 1.5rem 0.1rem 0;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 2.5rem;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.63rem;
}
.hero-orbit {
  position: absolute;
  right: -10vw;
  top: 12%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  opacity: 0.5;
}
.hero-orbit span {
  position: absolute;
  border: 1px solid rgba(139, 211, 191, 0.3);
}
.hero-orbit span:nth-child(1) {
  inset: 0;
}
.hero-orbit span:nth-child(2) {
  inset: 12%;
}
.hero-orbit span:nth-child(3) {
  inset: 24%;
}
.hero-orbit span:nth-child(4) {
  inset: 36%;
  background: rgba(139, 211, 191, 0.05);
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-light {
  background: var(--white);
}
.section-ivory {
  background: var(--ivory);
}
.section-teal {
  background: var(--teal);
  color: var(--white);
}
.statement {
  padding: clamp(6rem, 10vw, 11rem) clamp(1.25rem, 8vw, 9rem);
  display: grid;
  grid-template-columns: 0.35fr 1.3fr 0.65fr;
  gap: 4rem;
  align-items: end;
}
.statement .eyebrow {
  align-self: start;
}
.statement h2 {
  font-size: clamp(3.8rem, 8vw, 8rem);
  margin: 0;
}
.statement h2 em {
  color: var(--mint);
  font-weight: 400;
}
.statement > p:last-child {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}
.audiences,
.services,
.process,
.pricing,
.contact {
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7rem);
}
.section-intro {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.section-intro h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--navy);
  margin: 0;
}
.split-intro {
  max-width: none;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 4rem;
  align-items: end;
}
.split-intro > p {
  max-width: 360px;
  color: var(--muted);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: auto;
}
.audience-card {
  min-height: 570px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.audience-card:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid currentColor;
  opacity: 0.14;
  right: -100px;
  top: -100px;
  transform: rotate(12deg);
}
.audience-agents {
  background: var(--pale);
  color: var(--navy);
}
.audience-developers {
  background: var(--teal);
  color: var(--white);
}
.card-number {
  font-family: var(--serif);
  font-size: 1.4rem;
}
.audience-card h3 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.audience-card p:not(.card-number) {
  max-width: 570px;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-list article {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.service-list span {
  color: var(--seafoam);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 400;
  color: var(--navy);
}
.service-list p {
  margin: 0;
  color: var(--muted);
}
.representation {
  position: relative;
  min-height: 760px;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 8vw, 9rem);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 6rem;
  align-items: center;
  overflow: hidden;
}
.representation-copy {
  position: relative;
  z-index: 2;
}
.representation h2 {
  font-size: clamp(4rem, 7.5vw, 7.8rem);
  margin-bottom: 2rem;
}
.representation-copy > p:last-child {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}
.benefit-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefit-list li {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.representation-mark {
  position: absolute;
  right: 4%;
  top: 10%;
  width: 520px;
  height: 520px;
  opacity: 0.12;
}
.representation-mark span {
  position: absolute;
  width: 130px;
  height: 130px;
  border-color: var(--mint);
  border-style: solid;
}
.representation-mark span:nth-child(1) {
  left: 0;
  top: 0;
  border-width: 20px 0 0 20px;
}
.representation-mark span:nth-child(2) {
  right: 0;
  top: 0;
  border-width: 20px 20px 0 0;
}
.representation-mark span:nth-child(3) {
  left: 0;
  bottom: 0;
  border-width: 0 0 20px 20px;
}
.representation-mark span:nth-child(4) {
  right: 0;
  bottom: 0;
  border-width: 0 20px 20px 0;
}
.process-grid {
  max-width: 1400px;
  margin: auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid li {
  padding: 3rem 2rem;
  min-height: 320px;
}
.process-grid li + li {
  border-left: 1px solid var(--line);
}
.process-grid span {
  font-family: var(--serif);
  color: var(--seafoam);
  font-size: 2.3rem;
}
.process-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  margin-top: 3.5rem;
  color: var(--navy);
}
.process-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}
.pricing .section-intro h2 {
  color: var(--white);
}
.pricing .split-intro > p {
  color: rgba(255, 255, 255, 0.62);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2.7rem;
  display: flex;
  flex-direction: column;
}
.price-card + .price-card {
  border-left: 0;
}
.price-card.featured {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1.25rem);
}
.plan {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  font-weight: 800;
}
.price {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 2rem 0 0.6rem;
}
.price span {
  font-size: 0.3em;
  letter-spacing: 0;
}
.price-note {
  min-height: 3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.featured .price-note {
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  padding: 1.5rem 0 2rem;
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.featured ul {
  border-color: var(--line);
}
.price-card li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.price-card li:before {
  content: "↗";
  color: var(--mint);
  margin-right: 0.8rem;
}
.featured .button {
  margin-top: auto;
}
.popular {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--deep-teal);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.pricing-small {
  max-width: 900px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
.contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
}
.contact h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  color: var(--navy);
}
.contact-copy > p {
  max-width: 500px;
  color: var(--muted);
}
.contact-copy > a {
  color: var(--teal);
  font-weight: 700;
}
.enquiry-form {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 28px 80px rgba(14, 50, 66, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
}
.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.8rem 0;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--teal);
}
.consent {
  flex-direction: row !important;
  align-items: flex-start;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  line-height: 1.4;
}
.consent input {
  width: auto;
  margin-top: 0.2rem;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.site-footer {
  background: #082632;
  color: rgba(255, 255, 255, 0.68);
  padding: 5rem clamp(1.25rem, 7vw, 7rem) 2rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-brand img {
  width: 280px;
  filter: brightness(0) invert(1);
  transform: scale(1.45);
  transform-origin: left center;
  margin-bottom: 1rem;
}
.footer-brand p {
  max-width: 350px;
}
.site-footer a {
  display: block;
  color: inherit;
  text-decoration: none;
  margin: 0.65rem 0;
}
.site-footer a:hover {
  color: var(--mint);
}
.footer-heading {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.72rem;
}
.legal-page {
  background: var(--ivory);
  min-height: 100vh;
}
.legal-header {
  background: var(--navy);
  padding: 2rem clamp(1.25rem, 7vw, 7rem);
}
.legal-header img {
  width: 230px;
  filter: brightness(0) invert(1);
}
.legal-content {
  max-width: 900px;
  margin: auto;
  padding: 5rem 1.25rem;
}
.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--navy);
}
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  margin-top: 2.5rem;
}
.legal-content a {
  color: var(--teal);
}
@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s;
  }
  .site-nav.open {
    transform: none;
  }
  .site-nav a {
    font-family: var(--serif);
    font-size: 2.2rem;
    text-transform: none;
    letter-spacing: -0.03em;
  }
  .menu-toggle {
    display: block;
    order: 2;
  }
  .header-cta {
    order: 3;
  }
  .statement {
    grid-template-columns: 1fr;
  }
  .statement h2 {
    order: 2;
  }
  .statement > p:last-child {
    order: 3;
  }
  .split-intro,
  .representation,
  .contact {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process-grid li:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card + .price-card {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 0;
  }
  .price-card.featured {
    transform: none;
  }
  .site-footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .site-footer > div:nth-child(4) {
    grid-column: 2;
  }
  .hero-proof {
    display: none;
  }
}
@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding: 0 1rem;
    gap: 0.6rem;
  }
  .brand {
    width: 165px;
  }
  .brand img {
    width: 150px;
    transform: scale(1.55);
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding: 8rem 1.25rem 5rem;
    min-height: 780px;
  }
  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 6.5rem);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .scroll-cue {
    display: none;
  }
  .statement,
  .audiences,
  .services,
  .process,
  .pricing,
  .contact,
  .representation {
    padding: 5rem 1.25rem;
  }
  .statement {
    gap: 2rem;
  }
  .statement h2,
  .representation h2,
  .contact h2 {
    font-size: 3.65rem;
  }
  .section-intro h2 {
    font-size: 3.2rem;
  }
  .split-intro {
    gap: 1.5rem;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    min-height: 500px;
    padding: 2rem;
  }
  .service-list article {
    grid-template-columns: 48px 1fr;
    padding: 1.5rem 0;
  }
  .service-list article p {
    grid-column: 2;
  }
  .representation {
    min-height: unset;
    gap: 3rem;
  }
  .representation-mark {
    width: 340px;
    height: 340px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid li + li,
  .process-grid li:nth-child(3),
  .process-grid li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process-grid li {
    min-height: 250px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-form {
    padding: 1.5rem;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .site-footer > div:nth-child(4) {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-brand img {
    width: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Final ViewTrusts design system */
.site-header,
.site-header.scrolled {
  height: 96px;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  grid-template-columns: minmax(220px, 280px) 1fr auto;
  background: rgba(244, 241, 234, 0.98);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(14, 50, 66, 0.08);
  backdrop-filter: blur(12px);
}
.brand {
  width: 260px;
  height: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: 260px;
  max-width: none;
  height: auto;
  filter: none;
  transform: none;
}
.site-nav a {
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.site-nav a:after {
  background: var(--teal);
}
.header-cta {
  color: var(--navy);
  border-color: rgba(14, 50, 66, 0.4);
}
.header-cta:hover {
  background: var(--navy);
  color: var(--white);
}
.menu-toggle span:not(.sr-only) {
  background: var(--navy);
}
.hero {
  padding-top: 11rem;
}
.hero-content {
  max-width: 850px;
}
.hero h1 {
  max-width: 8ch;
}
.hero-copy {
  max-width: 620px;
}
.statement {
  background: var(--ivory);
  color: var(--navy);
  border-top: 1px solid rgba(14, 50, 66, 0.12);
}
.statement .eyebrow {
  color: var(--teal);
}
.statement h2 {
  color: var(--navy);
}
.statement h2 em {
  color: var(--deep-teal);
}
.statement > p:last-child {
  color: #526870;
}
.section-intro {
  max-width: 1200px;
}
.audience-grid,
.pricing-grid,
.process-grid {
  max-width: 1320px;
}
.audience-card {
  min-height: 520px;
}
.services {
  max-width: 1500px;
  margin: 0 auto;
}
.service-list {
  max-width: 1320px;
  margin: 0 auto;
}
.contact {
  max-width: 1500px;
  margin: 0 auto;
  grid-template-columns: minmax(340px, 0.75fr) minmax(600px, 1.25fr);
}
.enquiry-form {
  box-shadow: 0 25px 70px rgba(14, 50, 66, 0.1);
}
.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.site-footer {
  background: #082632;
  color: rgba(255, 255, 255, 0.76);
  border-top: 0;
  padding-top: 4.5rem;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}
.site-footer a:hover {
  color: var(--mint);
}
.site-footer .footer-heading {
  color: var(--white);
}
.footer-brand img {
  width: 320px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transform: none;
  margin: -35px 0 -20px -25px;
}
.footer-brand p {
  max-width: 390px;
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.62);
  align-items: flex-start;
}
.footer-bottom p:first-child {
  flex: 0 0 auto;
}
.footer-bottom p:nth-child(2) {
  max-width: 850px;
  text-align: right;
}
.legal-header {
  background: var(--ivory);
  min-height: 96px;
  display: flex;
  align-items: center;
}
.legal-header img {
  width: 260px;
  max-width: 100%;
  filter: none;
  transform: none;
}
@media (min-width: 1051px) {
  .hero {
    min-height: clamp(720px, 90vh, 900px);
  }
  .statement {
    grid-template-columns: minmax(140px, 220px) minmax(500px, 780px) minmax(
        260px,
        340px
      );
    justify-content: center;
    gap: clamp(2.5rem, 4vw, 5rem);
  }
  .statement h2 {
    font-size: clamp(4rem, 6.5vw, 7rem);
  }
}
@media (max-width: 1050px) {
  .site-header,
  .site-header.scrolled {
    grid-template-columns: 1fr auto auto;
  }
  .site-nav {
    inset: 96px 0 0;
  }
  .site-nav a {
    color: var(--white);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-bottom p:nth-child(2) {
    text-align: left;
  }
}
@media (max-width: 720px) {
  .site-header,
  .site-header.scrolled {
    height: 82px;
    padding: 0 1rem;
  }
  .brand {
    width: 205px;
    height: 82px;
  }
  .brand img {
    width: 205px;
    transform: none;
  }
  .site-nav {
    inset: 82px 0 0;
  }
  .hero {
    padding-top: 9rem;
    min-height: 720px;
  }
  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }
  .statement h2,
  .representation h2,
  .contact h2 {
    font-size: clamp(3rem, 15vw, 3.65rem);
  }
  .section-intro h2 {
    font-size: clamp(2.7rem, 13vw, 3.2rem);
  }
  .audience-card {
    min-height: 440px;
  }
  .site-footer {
    padding-top: 3.5rem;
  }
  .footer-brand img {
    width: 280px;
    margin: -30px 0 -15px -22px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}