@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/fraunces.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/manrope-700.woff2") format("woff2");
}

:root {
  --ink: #0b262a;
  --river: #073f49;
  --river-mid: #0f5962;
  --reed: #bedf07;
  --paddle: #ee7651;
  --foam: #f3f7f3;
  --paper: #fcfbf6;
  --sand: #e8dfcf;
  --white: #fff;
  --line: rgba(11, 38, 42, 0.15);
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(100% - 2rem, 76rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--reed) 0 42%, var(--paddle) 42% 58%, var(--river-mid) 58%);
  content: "";
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--paddle);
  outline-offset: 0.2rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.service-header__inner {
  display: grid;
  min-height: 5.6rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  padding: 0.32rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--white);
}

.brand img {
  width: 10.5rem;
  height: auto;
}

.service-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-nav a,
.service-header__phone {
  text-decoration: none;
}

.service-nav a[aria-current="page"] {
  color: var(--reed);
}

.service-header__phone {
  font-size: 0.8rem;
  font-weight: 700;
}

.mobile-menu {
  display: none;
}

.breadcrumb {
  padding-block: 1rem;
  color: rgba(11, 38, 42, 0.62);
  font-size: 0.73rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 0.45rem;
  color: var(--paddle);
  content: "→";
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  background: var(--river);
}

.service-hero::after {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(190, 223, 7, 0.35);
  border-radius: 45% 55% 62% 38%;
  content: "";
  transform: rotate(24deg);
}

.service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--reed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.service-hero__lead {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  color: var(--ink);
  border: 0;
  background: var(--reed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.button--quiet {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.service-hero__media {
  position: relative;
  margin: 0;
}

.service-hero__media::before {
  position: absolute;
  z-index: -1;
  inset: -1.2rem 1.2rem 1.2rem -1.2rem;
  border: 1px solid rgba(190, 223, 7, 0.48);
  content: "";
}

.service-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 17rem;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
}

.river-thread {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 6%;
  width: min(62rem, 72vw);
  height: 9rem;
  opacity: 0.32;
}

.river-thread path {
  fill: none;
  stroke: var(--reed);
  stroke-width: 2;
  stroke-dasharray: 8 10;
}

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

.fact-strip dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.fact-strip div {
  padding: 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fact-strip div:last-child {
  border: 0;
}

.fact-strip dt {
  color: var(--reed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-strip dd {
  margin: 0.3rem 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.content-section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.content-section--tint {
  background: var(--foam);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.section-intro {
  max-width: 31rem;
  font-size: 1.06rem;
}

.record-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.record-list > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.4rem;
  padding-block: 1.45rem;
  border-bottom: 1px solid var(--line);
}

.record-list dt {
  color: var(--river-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-list dd {
  margin: 0;
}

.record-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.15;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2.5rem 0 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.steps li {
  min-height: 15rem;
  padding: 1.5rem;
  background: var(--paper);
}

.steps span {
  color: var(--paddle);
  font-size: 0.7rem;
  font-weight: 700;
}

.steps strong {
  display: block;
  margin: 3rem 0 0.6rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.15;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.8rem;
  padding-block: 0.8rem;
  background: var(--ink);
}

.photo-band img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.photo-band picture:last-child img {
  filter: saturate(0.86);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-block: 1.25rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--paddle);
  content: "+";
}

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

.faq-list details p {
  max-width: 50rem;
  padding: 0 0 1.35rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--river);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.final-cta h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.site-footer {
  padding-block: 3rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 0.78rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer p {
  margin: 0.75rem 0 0;
}

@media (hover: hover) {
  .service-nav a:hover,
  .service-header__phone:hover,
  .site-footer a:hover {
    color: var(--reed);
  }

  .button:hover {
    color: var(--white);
    background: var(--paddle);
  }
}

@media (max-width: 52rem) {
  .service-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .service-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 0.5rem;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 1rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - 2rem));
    padding: 0.7rem;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
  }

  .mobile-menu nav a {
    padding: 0.8rem;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
  }

  .service-hero__grid,
  .section-grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__media {
    width: min(100%, 31rem);
    margin-left: auto;
  }

  .fact-strip dl {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip div:nth-child(2) {
    border-right: 0;
  }

  .fact-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .steps li {
    min-height: 0;
  }

  .steps strong {
    margin-top: 1.5rem;
  }
}

@media (max-width: 36rem) {
  .service-header__inner {
    min-height: 4.8rem;
    gap: 0.65rem;
  }

  .brand img {
    width: 8.5rem;
  }

  .service-header__phone {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .service-hero__media::before {
    display: none;
  }

  .fact-strip dl,
  .photo-band,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .record-list > div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .photo-band img {
    min-height: 16rem;
  }

  .actions {
    align-items: stretch;
    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;
  }
}
