@font-face {
  font-family: "Geologica";
  src: url("fonts/geologica.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --red: #b84141;
  --red-deep: #8b2e34;
  --ink: #172023;
  --ink-soft: #273338;
  --harbour: #2f5d63;
  --harbour-light: #dce8e7;
  --paper: #f4f6f4;
  --white: #ffffff;
  --line: #d6ddda;
  --line-dark: #445055;
  --muted: #5e6a6e;
  --success: #2d6855;
  --error: #a63636;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 9vw, 124px);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  color: var(--white);
  background: var(--red-deep);
}

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

.skip-link:focus {
  transform: none;
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding-block: var(--section);
}

.section--white {
  background: var(--white);
  border-block: 1px solid var(--line);
}

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

.section-label {
  display: block;
  color: var(--red-deep);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-label--light {
  color: #f0b8b8;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.display {
  font-family: "Geologica", Arial, sans-serif;
  font-variation-settings: "CRSV" 0, "SHRP" 30;
  font-weight: 560;
  letter-spacing: -0.028em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 7.1vw, 104px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.12;
}

h4 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
}

p {
  margin-bottom: 1.15em;
}

.lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

.text-link {
  color: var(--red-deep);
  font-weight: 650;
  text-underline-offset: 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 65, 65, 0.3);
  outline-offset: 3px;
}

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

.btn--primary:hover {
  background: var(--red-deep);
}

.btn--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.btn--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
}

.btn--light:hover {
  background: var(--harbour-light);
}

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

.btn--ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.topbar {
  color: #f3f6f5;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar__details {
  display: flex;
  gap: 22px;
}

.nav {
  display: grid;
  min-height: 82px;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 236px;
  height: auto;
}

.brand-link--footer img {
  width: 260px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 25px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  position: relative;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__phone {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
}

.nav__actions .btn {
  min-height: 44px;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 25vw 0 0 rgba(255, 255, 255, 0.055), 50vw 0 0 rgba(255, 255, 255, 0.055);
  content: "";
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: min(700px, calc(100vh - 116px));
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  padding-block: clamp(86px, 11vw, 150px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy .section-label {
  margin-bottom: 28px;
}

.hero__copy h1 {
  max-width: 880px;
}

.hero__copy h1 span {
  color: #dce8e7;
  font-weight: 350;
}

.hero__copy .lead {
  max-width: 580px;
  color: #d1d9d8;
}

.hero__signal {
  position: relative;
  align-self: stretch;
  min-height: 440px;
  border-inline: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-line {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(26deg);
  transform-origin: bottom;
}

.signal-line--one {
  left: 20%;
  height: 56%;
}

.signal-line--two {
  left: 47%;
  height: 78%;
  background: var(--harbour-light);
}

.signal-line--three {
  left: 73%;
  height: 97%;
  background: var(--red);
}

.signal-arrow {
  position: absolute;
  top: 7%;
  right: 2%;
  color: var(--red);
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 250;
  line-height: 1;
}

.hero__proof {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr 1fr 1.25fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero__proof > * {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 22px 18px 0;
  color: #cbd4d3;
  font-size: 12px;
  text-decoration: none;
}

.hero__proof > * + * {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

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

.stars {
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.trust-strip {
  background: var(--harbour);
  border-bottom: 1px solid #23484d;
}

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

.trust-item {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 15px;
  padding-inline: 22px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-item__value {
  color: #a9c8c7;
  font-family: "Geologica", Arial, sans-serif;
  font-size: 12px;
  font-weight: 550;
}

.trust-item__label {
  font-size: 14px;
  font-weight: 600;
}

.section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-head > p {
  max-width: 440px;
  margin: 5px 0 0;
  color: var(--muted);
}

.section--ink .section-head > p {
  color: #c8d1d0;
}

.service-index {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  min-height: 132px;
  grid-template-columns: 80px minmax(210px, 0.65fr) minmax(280px, 1fr) 42px;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding-block: 26px;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease;
}

.service-row:hover {
  color: var(--red-deep);
}

.service-row h3,
.service-row__arrow {
  transition: transform 160ms ease;
}

.service-row:hover h3,
.service-row:hover .service-row__arrow {
  transform: translateX(6px);
}

.service-row__number {
  color: var(--red);
  font-family: "Geologica", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-row__arrow {
  justify-self: end;
  font-family: "Geologica", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 9vw, 130px);
}

.story-mark {
  position: relative;
  align-self: start;
  padding-top: 24px;
  border-top: 6px solid var(--red);
}

.story-mark::after {
  position: absolute;
  top: -6px;
  right: 0;
  width: 33%;
  height: 6px;
  background: var(--harbour);
  content: "";
}

.story-mark__number {
  display: block;
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(76px, 10vw, 136px);
  font-weight: 250;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.story-mark p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--muted);
}

.story-copy .section-label {
  margin-bottom: 20px;
}

.story-copy > p {
  max-width: 760px;
  font-size: 18px;
}

.facts {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
}

.fact {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.fact strong {
  font-family: "Geologica", Arial, sans-serif;
  font-size: 15px;
}

.fact span {
  color: var(--muted);
}

.review-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-block: 1px solid var(--ink);
}

.rating-lockup {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 20px;
}

.rating-lockup p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-controls {
  display: flex;
  gap: 6px;
}

.review-control {
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.review-control:hover {
  color: var(--white);
  background: var(--ink);
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(340px, 48%);
  grid-auto-flow: column;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--ink);
}

.review-card {
  min-height: 300px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.review-card blockquote {
  margin: 0 0 46px;
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 340;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
}

.review-card small {
  color: var(--muted);
}

.post-grid {
  border-top: 1px solid currentColor;
}

.post-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 110px;
  gap: clamp(22px, 4vw, 60px);
  align-items: start;
  padding-block: 30px;
  border-bottom: 1px solid rgba(214, 221, 218, 0.45);
  text-decoration: none;
}

.post-card__category {
  color: #aebebc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h3 {
  margin-bottom: 10px;
}

.post-card p {
  max-width: 680px;
  margin: 0;
  color: #c7d0cf;
}

.post-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #aebebc;
  font-size: 12px;
  white-space: nowrap;
}

.post-card:hover h3,
.post-card:hover .post-card__meta {
  color: #f0b8b8;
}

.section:not(.section--ink) .post-grid {
  border-top-color: var(--ink);
}

.section:not(.section--ink) .post-card {
  border-bottom-color: var(--line);
}

.section:not(.section--ink) .post-card__category,
.section:not(.section--ink) .post-card__meta,
.section:not(.section--ink) .post-card p {
  color: var(--muted);
}

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 3px;
  color: var(--red);
  content: "+";
  font-size: 28px;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 56px 26px 0;
  color: var(--muted);
}

.contact-band {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--section);
  color: var(--white);
  background: var(--harbour);
}

.contact-band::after {
  position: absolute;
  top: -70%;
  right: 11%;
  width: 1px;
  height: 240%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 80px 0 0 rgba(255, 255, 255, 0.18), 160px 0 0 var(--red);
  content: "";
  transform: rotate(28deg);
}

.contact-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(38px, 6vw, 76px);
}

.contact-band h2 {
  max-width: 700px;
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 56px);
}

.contact-band .button-row {
  min-width: 260px;
  justify-content: flex-end;
  margin: 0;
}

.page-hero {
  color: var(--white);
  background: var(--ink);
  border-bottom: 8px solid var(--harbour);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(60px, 8vw, 104px);
}

.breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 34px;
  color: #9facab;
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
}

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

.page-hero .section-label {
  color: #f0b8b8;
}

.page-hero__title h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 6vw, 86px);
}

.page-hero__intro {
  margin: 6px 0 0;
  color: #cbd4d3;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.prose {
  max-width: 790px;
}

.prose > .lead {
  color: var(--ink);
  font-family: "Geologica", Arial, sans-serif;
  font-weight: 350;
  letter-spacing: -0.025em;
}

.prose h2 {
  margin-top: 1.45em;
  margin-bottom: 0.55em;
  font-size: clamp(28px, 3.2vw, 43px);
}

.prose h3 {
  margin-top: 1.35em;
}

.prose p,
.prose li {
  font-size: 17px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  padding-left: 5px;
  margin-bottom: 8px;
}

.sidebar-card {
  position: sticky;
  top: 145px;
  padding: 26px 0 0;
  border-top: 5px solid var(--red);
}

.sidebar-card .section-label {
  margin-bottom: 22px;
}

.sidebar-card ul {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.sidebar-card li {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.sidebar-card a {
  text-underline-offset: 3px;
}

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

.list-card {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.list-card h3 {
  font-size: 22px;
}

.list-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  border-top: 1px solid var(--ink);
}

.price-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(280px, 1.25fr) minmax(190px, 0.55fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 126px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card--head {
  min-height: auto;
  padding-block: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3,
.price-card p {
  margin: 0;
}

.price-card p {
  color: var(--muted);
}

.price-card__amount {
  justify-self: end;
  color: var(--red-deep);
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 520;
  letter-spacing: -0.025em;
  text-align: right;
}

.price-card__amount small {
  display: block;
  color: var(--muted);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.notice,
.source-note,
.disclaimer {
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--harbour-light);
  border-left: 4px solid var(--harbour);
}

.notice strong,
.source-note strong,
.disclaimer strong {
  color: var(--ink);
}

.team-grid {
  border-top: 1px solid var(--ink);
}

.team-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  padding-block: clamp(36px, 5vw, 66px);
  border-bottom: 1px solid var(--line);
}

.team-card__portrait {
  display: grid;
  min-height: 240px;
  place-items: end start;
  padding: 26px;
  color: var(--white);
  background: var(--harbour);
  border-bottom: 8px solid var(--red);
}

.team-card:nth-child(2) .team-card__portrait {
  background: var(--ink-soft);
}

.team-card:nth-child(3) .team-card__portrait {
  color: var(--ink);
  background: var(--harbour-light);
}

.team-card__portrait span {
  font-family: "Geologica", Arial, sans-serif;
  font-size: 72px;
  font-weight: 230;
  letter-spacing: -0.03em;
  line-height: 0.8;
}

.team-card__details {
  align-self: center;
  max-width: 720px;
}

.team-card__role {
  display: block;
  margin-bottom: 14px;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3 {
  font-size: clamp(32px, 4vw, 50px);
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.source-note {
  margin-top: 48px;
}

.source-note ul {
  margin-bottom: 0;
}

.disclaimer {
  background: #eef1ef;
  border-left-color: var(--red);
}

.related-list {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.related-list h3 {
  font-size: 22px;
}

.related-list ul {
  padding: 0;
  list-style: none;
}

.related-list li {
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.contact-grid > div .section-label {
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.contact-detail {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-detail__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a {
  text-underline-offset: 3px;
}

.form-card {
  padding: clamp(30px, 5vw, 60px);
  background: var(--white);
  border-top: 7px solid var(--red);
  outline: 1px solid var(--line);
}

.form-card .section-label {
  margin-bottom: 18px;
}

.form-card h2 {
  font-size: clamp(32px, 4vw, 50px);
}

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

.field {
  min-width: 0;
}

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

.field > label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 650;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb8b5;
  border-radius: 0;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--harbour);
}

.check-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.map-frame {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--line);
  filter: saturate(0.55) contrast(1.05);
}

.site-footer {
  color: #d5dddc;
  background: var(--ink);
  border-top: 8px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(34px, 6vw, 80px);
  padding-block: clamp(62px, 8vw, 100px);
}

.footer-brand p {
  max-width: 370px;
  margin-top: 30px;
  color: #aeb9b7;
}

.footer-col h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #99a6a4;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.footer-bottom a {
  text-underline-offset: 3px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: var(--section);
  text-align: center;
}

.not-found .section-label {
  margin-bottom: 18px;
}

.not-found__code {
  color: var(--harbour);
  font-family: "Geologica", Arial, sans-serif;
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 180;
  letter-spacing: -0.03em;
  line-height: 0.8;
}

.not-found h1 {
  margin-top: 30px;
  font-size: clamp(42px, 6vw, 72px);
}

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

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
  }

  .brand-link img {
    width: 210px;
  }

  .nav__phone {
    display: none;
  }

  .section-head,
  .page-hero__grid {
    grid-template-columns: 120px minmax(0, 1.3fr) minmax(230px, 0.7fr);
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .nav {
    position: relative;
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand-link img {
    width: 220px;
  }

  .nav-toggle {
    display: block;
  }

  .nav__actions {
    display: none;
  }

  .nav__links {
    position: absolute;
    z-index: 20;
    top: calc(100% + 1px);
    right: calc(var(--gutter) * -1);
    left: calc(var(--gutter) * -1);
    display: none;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px var(--gutter) 28px;
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    display: block;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav__links a::after {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 48px;
  }

  .hero__signal {
    min-height: 380px;
  }

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

  .hero__proof > :last-child {
    display: none;
  }

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

  .trust-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-head,
  .page-hero__grid {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .section-head > p,
  .page-hero__intro {
    grid-column: 2;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar-card {
    position: static;
    max-width: 620px;
  }

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

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

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
    --section: 68px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero::before {
    left: 50%;
    box-shadow: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 78px 36px;
  }

  .hero__copy h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero__signal {
    min-height: 190px;
    margin-top: 18px;
    border-inline: 0;
  }

  .signal-arrow {
    top: 0;
    right: 4%;
    font-size: 76px;
  }

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

  .hero__proof > * {
    padding: 15px 0;
  }

  .hero__proof > * + * {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .hero__proof > :nth-child(2) {
    display: none;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: 60px;
    padding-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section-head,
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-head > p,
  .page-hero__intro {
    grid-column: 1;
  }

  .page-hero__grid {
    padding-block: 48px 62px;
  }

  .breadcrumb {
    margin-bottom: 18px;
  }

  .page-hero__title h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .service-row {
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 14px;
    padding-block: 25px;
  }

  .service-row h3 {
    font-size: 29px;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

  .service-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .fact {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-rail {
    grid-auto-columns: 88%;
  }

  .review-card {
    min-height: 280px;
    padding: 30px 22px;
  }

  .post-card {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }

  .post-card__category {
    grid-column: 1 / -1;
  }

  .post-card__meta {
    align-self: start;
  }

  .contact-band__inner {
    min-height: 360px;
    align-items: flex-start;
    padding: 38px 24px;
    flex-direction: column;
  }

  .contact-band .button-row {
    min-width: 0;
    justify-content: flex-start;
  }

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

  .price-card,
  .price-card--head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-card--head {
    display: none;
  }

  .price-card {
    padding-block: 26px;
  }

  .price-card__amount {
    justify-self: start;
    margin-top: 6px;
    text-align: left;
  }

  .price-card__amount small {
    display: inline;
    margin-right: 5px;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-card__portrait {
    min-height: 210px;
  }

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

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

  .form-card {
    padding: 28px 20px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .contact-band,
  .button-row,
  .review-controls {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .section--ink {
    color: #000;
    background: #fff;
  }
}
