:root {
  --ink: #102c35;
  --ink-deep: #081c22;
  --ink-soft: #24434b;
  --accent: #f47b3b;
  --accent-dark: #cf5920;
  --cream: #f4f0e7;
  --paper: #fffdfa;
  --sage: #b9cbbf;
  --text: #26383d;
  --muted: #66767a;
  --line: rgba(16, 44, 53, 0.14);
  --shadow: 0 24px 70px rgba(7, 28, 34, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

.topbar {
  position: relative;
  z-index: 30;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

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

.topbar p {
  display: flex;
  align-items: center;
  margin: 0;
}

.topbar a {
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

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

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #8fdb9c;
  box-shadow: 0 0 0 4px rgba(143, 219, 156, 0.13);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 44, 53, 0.1);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 250, 0.97);
  box-shadow: 0 10px 35px rgba(8, 28, 34, 0.08);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 50px;
  height: 50px;
  overflow: visible;
}

.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.25;
}

.brand__mark .brand__sun {
  stroke: var(--accent);
  stroke-width: 4;
}

.brand__mark .brand__water {
  stroke: var(--accent);
  stroke-width: 2.5;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

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

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
}

.menu-toggle__icon {
  display: grid;
  width: 24px;
  gap: 6px;
}

.menu-toggle__icon i {
  display: block;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 123, 59, 0.42);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 0.88rem;
}

.button--ink {
  background: var(--ink);
  color: #fff;
}

.button--ink:hover {
  box-shadow: 0 12px 28px rgba(16, 44, 53, 0.2);
}

.button--accent {
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(148, 60, 19, 0.24);
  color: var(--ink-deep);
}

.button--accent:hover {
  background: #ff8a4b;
  box-shadow: 0 18px 40px rgba(148, 60, 19, 0.3);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.text-link--light {
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #ffd0b5;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(830px, calc(100vh - 60px));
  align-items: stretch;
  overflow: hidden;
  background: var(--ink-deep);
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 26, 32, 0.96) 0%, rgba(8, 31, 38, 0.86) 35%, rgba(8, 31, 38, 0.2) 67%, rgba(8, 31, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 25, 31, 0.55) 0%, transparent 35%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 8vw;
  align-items: center;
  padding-block: 100px 175px;
}

.hero__copy {
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.4rem, 6.8vw, 7.1rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  color: var(--sage);
  font-weight: 500;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-card {
  align-self: end;
  margin-bottom: 44px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(8, 28, 34, 0.64);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.hero-card__kicker {
  margin-bottom: 12px;
  color: #ffd0b5;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__title {
  margin-bottom: 24px;
  font-size: 1.72rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 7px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  content: "";
}

.check-list--compact {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero__trust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(7, 26, 32, 0.76);
  backdrop-filter: blur(14px);
}

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

.trust-row > div {
  display: grid;
  min-height: 98px;
  align-content: center;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row strong {
  color: #fff;
  font-size: 0.95rem;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section--intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.intro-grid h2 {
  max-width: 820px;
}

.intro-copy {
  padding-bottom: 10px;
}

.intro-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--services {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: block;
  min-height: 420px;
  padding: 34px 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.58);
  text-decoration: none;
  transition: transform 230ms ease, box-shadow 230ms ease, background 230ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card--featured {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.service-card--featured h3,
.service-card--featured .service-card__number {
  color: #fff;
}

.service-card__number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-card__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-block: 52px 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--accent);
}

.service-card__icon svg {
  width: 38px;
  height: 38px;
}

.service-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card__meta {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card--featured .service-card__meta {
  color: rgba(255, 255, 255, 0.36);
}

.section--method {
  overflow: hidden;
  background: var(--ink);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.method-media {
  position: relative;
  margin-left: calc((100vw - var(--shell)) / -2);
}

.method-media::before {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -18px;
  width: 140px;
  height: 140px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
}

.method-media img {
  width: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 60% center;
}

.method-media__badge {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 46px;
  display: grid;
  min-width: 270px;
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--ink-deep);
}

.method-media__badge strong {
  font-size: 1rem;
}

.method-media__badge span {
  font-size: 0.76rem;
}

.method-copy h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.method-copy__lead {
  max-width: 570px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
}

.method-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-points li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-points > li > span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 750;
}

.method-points h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.method-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.section--process {
  background: var(--paper);
}

.process-heading {
  max-width: 800px;
  margin-bottom: 70px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 34px 34px 0 0;
  border-top: 1px solid var(--line);
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.process-list__number {
  display: block;
  margin-bottom: 60px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list h3 {
  max-width: 210px;
  font-size: 1.28rem;
}

.process-list p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section--audience {
  padding-block: 0 clamp(88px, 11vw, 150px);
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.7fr);
  border: 1px solid var(--line);
}

.audience-grid > div {
  min-height: 300px;
  padding: 34px;
}

.audience-intro {
  background: var(--cream);
}

.audience-intro h2 {
  max-width: 520px;
  margin-bottom: 25px;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
}

.audience-intro > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.audience-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
}

.audience-card span {
  margin-bottom: auto;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section--team {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 145px);
  align-items: end;
}

.team-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.team-heading > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.team-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.team-card__number {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.team-card__initials {
  display: grid;
  width: 86px;
  height: 86px;
  margin-block: 62px auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.team-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.team-card:hover h3,
.team-card:hover .team-card__initials {
  color: #fff;
}

.team-card:hover .team-card__initials {
  border-color: rgba(255, 255, 255, 0.25);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 11vw, 160px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.faq-heading > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -8px 56px 30px 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--ink-deep);
  color: #fff;
  isolation: isolate;
}

.contact-section__glow {
  position: absolute;
  z-index: -1;
  top: -300px;
  left: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 59, 0.18), transparent 65%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.contact-copy h2 {
  margin-bottom: 28px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
}

.contact-facts {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

.contact-facts > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-facts svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.contact-facts path,
.contact-facts circle {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-facts span {
  display: grid;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.contact-facts strong {
  color: #fff;
  font-size: 0.94rem;
}

.quote-form {
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
  color: var(--text);
}

.quote-form__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.quote-form__heading p {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.quote-form__heading span {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-row {
  display: grid;
  margin-bottom: 20px;
}

.form-row--split {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row label,
.quote-form > label {
  display: grid;
  gap: 7px;
}

.form-row label > span,
.quote-form > label > span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 44, 53, 0.17);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  min-height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9aa5a7;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 123, 59, 0.1);
}

.form-row + .button {
  margin-top: 4px;
}

.form-note {
  margin: 14px 8px 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: 10px 8px 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.field-error {
  border-color: #b5422f;
}

.site-footer {
  padding-block: 76px 28px;
  background: #06181d;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
  max-width: 280px;
  margin: 26px 0 0;
}

.footer-links,
.footer-company {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links p,
.footer-company p {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-company strong {
  color: #fff;
  font-size: 0.9rem;
}

.footer-company span {
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

.section--guides {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-card {
  display: flex;
  min-height: 360px;
  padding: 34px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.guide-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.guide-card > span {
  margin-bottom: 72px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3 {
  max-width: 310px;
  font-size: 1.85rem;
}

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

.guide-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.84rem;
}

.guides-more {
  margin: 34px 0 0;
  text-align: right;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 94px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 68px;
  gap: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.55fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
}

.page-hero .eyebrow {
  color: #f2a67f;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.page-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-hero__aside {
  padding: 28px 0 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero__aside strong,
.page-hero__aside span {
  display: block;
}

.page-hero__aside strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.04rem;
}

.page-hero__aside span {
  font-size: 0.9rem;
}

.content-section {
  padding-block: clamp(76px, 9vw, 128px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.prose {
  color: #32474d;
  font-size: 1.05rem;
}

.prose > p:first-of-type {
  color: var(--ink);
  font-size: 1.28rem;
}

.prose h2 {
  margin: 72px 0 24px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.prose h3 {
  margin: 42px 0 14px;
  font-size: 1.55rem;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 24px;
}

.prose li + li {
  margin-top: 10px;
}

.prose a {
  color: var(--accent-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}

.prose-callout {
  margin-block: 48px;
  padding: 30px 32px;
  border-left: 4px solid var(--accent);
  background: var(--cream);
  color: var(--ink);
}

.prose-callout strong {
  display: block;
  margin-bottom: 6px;
}

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

.fact-list li {
  min-height: 140px;
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-list strong,
.fact-list span {
  display: block;
}

.fact-list strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.fact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.content-aside h2 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.content-aside p {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-aside .button {
  width: 100%;
  margin-top: 8px;
}

.content-aside__links {
  display: grid;
  margin-top: 28px;
  padding-top: 24px;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.content-aside__links a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.article-meta {
  display: flex;
  margin-top: 32px;
  gap: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.article-index {
  display: grid;
  gap: 24px;
}

.article-index__card {
  display: grid;
  padding: 34px;
  grid-template-columns: 150px 1fr auto;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.article-index__card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 123, 59, 0.65);
}

.article-index__card > span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-index__card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.article-index__card p {
  margin: 0;
  color: var(--muted);
}

.article-index__card > strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.cta-band {
  padding-block: 74px;
  background: var(--accent);
  color: var(--ink);
}

.cta-band__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.cta-band .button {
  flex: 0 0 auto;
}

.byline {
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.byline strong {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    z-index: 50;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: grid;
    width: 100vw;
    height: calc(100dvh - var(--header-height));
    align-content: start;
    gap: 0;
    overflow-y: auto;
    padding: 30px max(20px, calc((100vw - var(--shell)) / 2));
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: var(--paper);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .main-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav > a:not(.button) {
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .main-nav .button {
    margin-top: 26px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 90px 165px;
  }

  .hero-card {
    display: none;
  }

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

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

  .method-media {
    margin-right: -40px;
  }

  .method-media img {
    min-height: 560px;
  }

  .method-copy {
    max-width: 720px;
    padding-bottom: 20px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
  }

  .process-list__number {
    margin-bottom: 36px;
  }

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

  .audience-intro {
    grid-column: 1 / -1;
  }

  .audience-card {
    border-top: 1px solid var(--line);
  }

  .audience-card:nth-child(2) {
    border-left: 0;
  }

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

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

  .contact-copy {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-company {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 1180px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__text strong {
    font-size: 1.32rem;
  }

  .brand__text small {
    font-size: 0.64rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(6, 26, 32, 0.92) 0%, rgba(8, 31, 38, 0.7) 70%, rgba(8, 31, 38, 0.44) 100%),
      linear-gradient(0deg, rgba(6, 25, 31, 0.76) 0%, transparent 50%);
  }

  .hero__inner {
    padding-block: 76px 190px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .trust-row > div {
    min-height: 82px;
    padding: 16px;
  }

  .trust-row > div:nth-child(3) {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

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

  .service-card {
    min-height: 360px;
  }

  .service-card__icon {
    margin-block: 36px 26px;
  }

  .method-media {
    margin-inline: -15px;
  }

  .method-media img {
    min-height: 470px;
    object-position: 65% center;
  }

  .method-media__badge {
    right: 15px;
    bottom: 22px;
    min-width: 240px;
  }

  .method-media::before {
    display: none;
  }

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

  .process-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding-top: 24px;
  }

  .process-list li::after {
    display: none;
  }

  .process-list__number {
    margin: 2px 0 0;
  }

  .process-list h3,
  .process-list p {
    max-width: none;
  }

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

  .audience-grid > div {
    min-height: 250px;
  }

  .audience-card,
  .audience-card:nth-child(2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .team-card {
    min-height: 260px;
  }

  .team-card__initials {
    margin-block: 34px auto;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1rem;
  }

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

  .quote-form__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 25px;
  }

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

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

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

  .guide-card {
    min-height: 300px;
  }

  .guide-card > span {
    margin-bottom: 42px;
  }

  .page-hero__grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__aside {
    max-width: 520px;
  }

  .content-aside {
    position: static;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.05rem;
  }

  .button {
    padding-inline: 20px;
  }

  .trust-row strong {
    font-size: 0.84rem;
  }

  .trust-row span {
    font-size: 0.71rem;
  }

  .page-hero {
    padding-block: 54px 70px;
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

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

  .article-index__card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
