:root {
  --ink: #202229;
  --ink-soft: #555966;
  --brand: #536291;
  --brand-deep: #3f4d7c;
  --brand-light: #dfe3f0;
  --lavender: #8b79d6;
  --paper: #f7f6f3;
  --white: #ffffff;
  --mist: #ececea;
  --sand: #e8e0d4;
  --line: rgba(32, 34, 41, 0.14);
  --shadow: 0 24px 70px rgba(49, 54, 77, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 3px;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.lede {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  color: var(--brand-deep);
}

.button-secondary:hover {
  background: var(--brand-light);
  color: var(--brand-deep);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-deep);
}

.button-light:hover {
  background: var(--brand-light);
  color: var(--brand-deep);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-title {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 84px));
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 43, 76, 0.93) 0%, rgba(45, 54, 86, 0.72) 39%, rgba(45, 54, 86, 0.06) 72%),
    linear-gradient(0deg, rgba(39, 47, 78, 0.38), transparent 35%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(820px, calc(100vh - 84px));
  align-items: center;
  padding: 100px 0;
}

.hero-content {
  max-width: 720px;
}

.hero .eyebrow,
.hero .lede {
  color: rgba(255, 255, 255, 0.84);
}

.hero .lede {
  max-width: 590px;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  min-height: 112px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

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

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.split-top {
  align-items: start;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 330px);
  margin-inline: auto;
}

.portrait-wrap::before {
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--brand);
  content: "";
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 2px 2px / 32% 32% 2px 2px;
  object-fit: cover;
  object-position: center top;
}

.statement {
  background: var(--brand);
  color: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 50px;
}

.statement h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
}

.statement .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: rgba(83, 98, 145, 0.5);
  transform: translateY(-4px);
}

.card-number {
  display: block;
  margin-bottom: 54px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.service-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.service-item span {
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.service-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 10px 16px;
  border: 1px solid rgba(83, 98, 145, 0.28);
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: 0.82rem;
}

.quote {
  position: relative;
  padding: 56px;
  background: var(--mist);
}

.quote::before {
  color: var(--brand);
  content: "\201c";
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
}

.quote blockquote {
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.quote cite {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.testimonial-card blockquote {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.38;
}

.testimonial-card cite {
  color: var(--brand);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: 110px 0 84px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1000px;
}

.page-hero .lede {
  max-width: 760px;
}

.page-hero-brand {
  background: var(--brand);
  color: var(--white);
}

.page-hero-brand .eyebrow,
.page-hero-brand .lede {
  color: rgba(255, 255, 255, 0.78);
}

.credentials {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.credential {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.credential span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: process;
}

.process-step {
  padding: 38px;
  border: 1px solid var(--line);
  border-right: 0;
  counter-increment: process;
}

.process-step:last-child {
  border-right: 1px solid var(--line);
}

.process-step::before {
  display: block;
  margin-bottom: 48px;
  color: var(--brand);
  content: "0" counter(process);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.pricing-card {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.pricing-card.featured {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-16px);
}

.pricing-card .eyebrow {
  min-height: 38px;
}

.pricing-card.featured .eyebrow,
.pricing-card.featured .price-detail {
  color: rgba(255, 255, 255, 0.74);
}

.price {
  margin: 18px 0 5px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.price-detail {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card.featured .feature-list {
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.pricing-card .button {
  margin-top: auto;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 44px 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 26px;
  right: 4px;
  color: var(--brand);
  content: "+";
  font-family: var(--sans);
}

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

.faq-list details p {
  max-width: 800px;
  padding: 0 44px 26px 0;
  color: var(--ink-soft);
}

.form-card,
.scheduler-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.notice {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--brand);
  background: var(--brand-light);
  color: var(--brand-deep);
  font-size: 0.88rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  margin: 26px 0;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--brand);
}

.checkbox label {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.scheduler-frame {
  width: 100%;
  height: 860px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.scheduler-fallback {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 44px;
  background: var(--mist);
  text-align: center;
}

.scheduler-frame[hidden],
.scheduler-fallback[hidden] {
  display: none;
}

.scheduler-fallback div {
  max-width: 580px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.contact-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--brand);
}

.cta-band {
  padding: 82px 0;
  background: var(--brand-deep);
  color: var(--white);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  padding: 62px 0 30px;
  background: #272d43;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-title,
.footer-brand p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand p {
  margin: 22px 0 0;
}

.footer-column h2 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 84px);
    align-content: start;
    padding: 32px 20px;
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(32, 34, 41, 0.12);
    overflow-y: auto;
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 12px 0;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav .button {
    width: fit-content;
    margin-top: 12px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 250px;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 40px), var(--max));
  }

  .section {
    padding: 52px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  body {
    line-height: 1.55;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 13vw, 3.65rem);
    line-height: 1;
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  h3 {
    font-size: 1.4rem;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.76rem;
    letter-spacing: 0.07em;
  }

  .brand-title {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    min-height: calc(100dvh - 72px);
    padding: 26px 20px;
  }

  .site-nav > a:not(.button) {
    padding: 10px 0;
    font-size: 1.55rem;
  }

  .button-row {
    gap: 10px;
    margin-top: 24px;
  }

  .portrait-wrap {
    width: min(calc(100% - 34px), 250px);
  }

  .portrait-wrap::before {
    inset: 14px -14px -14px 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: 620px;
    align-items: end;
    padding: 76px 0 64px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(35, 43, 75, 0.96) 4%, rgba(40, 49, 80, 0.76) 52%, rgba(40, 49, 80, 0.08) 100%);
  }

  .hero .button-row {
    margin-top: 26px;
  }

  .hero .button {
    min-width: 210px;
  }

  .hero .button-secondary,
  .hero-note {
    display: none;
  }

  .trust-item {
    min-height: 82px;
    padding: 16px 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .trust-item strong {
    margin-bottom: 2px;
    font-size: 1.08rem;
  }

  .trust-item span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .split {
    gap: 38px;
  }

  .home-intro {
    padding-top: 58px;
  }

  .home-page .statement,
  .home-page .audience-section,
  .home-page .mobile-optional-copy {
    display: none;
  }

  .trust-grid,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading .text-link {
    margin-top: 16px;
  }

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

  .card {
    display: grid;
    min-height: 0;
    grid-template-columns: 38px 1fr;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }

  .card:hover {
    transform: none;
  }

  .card-number {
    grid-row: 1 / 3;
    margin: 2px 0 0;
    font-size: 1.05rem;
  }

  .card h3 {
    margin-bottom: 7px;
  }

  .card p {
    font-size: 0.86rem;
  }

  .service-item,
  .service-item:nth-child(even) {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 22px 0;
    border-left: 0;
  }

  .service-item h3 {
    margin-bottom: 7px;
    font-size: 1.3rem;
  }

  .service-item p {
    font-size: 0.86rem;
  }

  .home-page .service-item p {
    display: none;
  }

  .process-step,
  .process-step:last-child {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    border-top: 1px solid var(--line);
  }

  .process-step::before {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .process-step p {
    margin-bottom: 0;
    font-size: 0.88rem;
  }

  .page-hero {
    padding: 66px 0 52px;
  }

  .page-hero .button-row {
    margin-top: 24px;
  }

  .credential {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 17px 0;
  }

  .credential span {
    font-size: 0.66rem;
  }

  .credential strong {
    font-size: 1.12rem;
  }

  .pricing-grid {
    gap: 14px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-card h2 {
    font-size: 2rem !important;
  }

  .feature-list {
    gap: 11px;
    margin: 24px 0;
    padding-top: 22px;
  }

  .feature-list li {
    font-size: 0.84rem;
  }

  .faq-list summary {
    padding: 20px 36px 20px 0;
    font-size: 1.2rem;
  }

  .faq-list summary::after {
    top: 20px;
  }

  .faq-list details p {
    padding: 0 30px 20px 0;
    font-size: 0.9rem;
  }

  .form-card,
  .scheduler-card {
    padding: 24px 20px;
  }

  .scheduler-fallback {
    min-height: 320px;
    padding: 28px 20px;
  }

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

  .quote,
  .testimonial-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .quote::before {
    font-size: 4.5rem;
  }

  .quote blockquote {
    margin: 12px 0 22px;
    font-size: 1.55rem;
  }

  .testimonial-card blockquote {
    font-size: 1.25rem;
  }

  .cta-band {
    padding: 54px 0;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .cta-band h2 {
    font-size: 2.25rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-brand p,
  .footer-grid > .footer-column:nth-child(2) {
    display: none;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 32px;
    padding-top: 20px;
  }
}
