@font-face {
  font-family: "Aida Serif";
  src: url("../fonts/aida-serif-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aida Serif";
  src: url("../fonts/aida-serif-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Aida Sans";
  src: url("../fonts/aida-sans-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aida Sans";
  src: url("../fonts/aida-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ivory: #faf5f2;
  --paper: #fffdf9;
  --linen: #e8ded0;
  --linen-dark: #d9cbbb;
  --blue: #78909e;
  --blue-light: #dbe3e5;
  --navy: #0f3251;
  --navy-soft: #194764;
  --gold: #a79260;
  --charcoal: #2e3336;
  --muted: #626a6c;
  --border: rgba(15, 50, 81, 0.16);
  --serif: "Aida Serif", Georgia, "Times New Roman", serif;
  --sans: "Aida Sans", Arial, Helvetica, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 28px 70px rgba(15, 50, 81, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--paper);
}

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

.section {
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
  padding: 10px 16px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(15, 50, 81, 0.1);
  background: rgba(250, 245, 242, 0.94);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand > img {
  width: 45px;
  height: 48px;
  object-fit: contain;
}

.header-logo > img {
  width: 176px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

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

.brand-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 21px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin: 5px 0;
}

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

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

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

.main-nav a {
  position: relative;
  color: #39464c;
  font-size: 14px;
  font-weight: 700;
}

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

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--navy-soft);
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(167, 146, 96, 0.42);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  gap: 10px;
  padding: 9px 17px;
  font-size: 13px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  width: 34px;
  height: 1px;
  margin-left: 13px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 48px;
}

.section-label,
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(54px, 5.7vw, 86px);
  letter-spacing: -0.047em;
}

h1 span {
  display: block;
  color: var(--blue);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.4vw, 66px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 16px;
  font-size: 28px;
  letter-spacing: -0.025em;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
  background:
    radial-gradient(circle at 90% 7%, rgba(120, 144, 158, 0.16), transparent 30%),
    linear-gradient(145deg, var(--ivory) 0%, #fcf8f4 62%, #f1e9df 100%);
}

.hero::before {
  position: absolute;
  top: 48px;
  right: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(167, 146, 96, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
  padding-bottom: 96px;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 20px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-visual {
  position: relative;
  padding: 20px 0 58px;
}

.hero-visual::before {
  position: absolute;
  inset: 70px -36px 24px 42px;
  border-radius: 52% 48% 43% 57% / 58% 35% 65% 42%;
  background: var(--blue);
  content: "";
  opacity: 0.88;
  transform: rotate(-5deg);
}

.ledger-card {
  position: relative;
  z-index: 1;
  min-height: 480px;
  border: 1px solid rgba(15, 50, 81, 0.14);
  background: rgba(255, 253, 249, 0.97);
  box-shadow: var(--shadow);
  padding: 32px;
  transform: rotate(1.4deg);
}

.ledger-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
}

.ledger-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--linen-dark);
  padding-bottom: 16px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ledger-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 280px;
}

.ledger-body img {
  width: 108px;
  margin-inline: auto;
}

.ledger-lines {
  display: grid;
  gap: 25px;
}

.ledger-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--linen-dark);
}

.ledger-lines i:nth-child(2) {
  width: 82%;
}

.ledger-lines i:nth-child(3) {
  width: 93%;
}

.ledger-lines i:nth-child(4) {
  width: 70%;
}

.ledger-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--linen-dark);
}

.ledger-tags span {
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.visual-note {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: 3px;
  width: 245px;
  margin: 0;
  border-left: 2px solid var(--gold);
  background: var(--navy);
  color: white;
  padding: 17px 20px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(250, 245, 242, 0.72);
}

.trust-row > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid var(--border);
  padding: 22px 34px;
}

.trust-row > div:first-child {
  border-left: 1px solid var(--border);
}

.trust-row span,
.contact-details span,
.site-footer span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-row strong {
  color: var(--navy);
  font-size: 15px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(50px, 10vw, 148px);
}

.intro-grid > div {
  max-width: 770px;
}

.large-copy {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.6;
}

.services-section {
  background: var(--linen);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

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

.split-heading > p {
  max-width: 390px;
  margin-bottom: 8px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(15, 50, 81, 0.23);
}

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  min-height: 312px;
  border-bottom: 1px solid rgba(15, 50, 81, 0.23);
  padding: 42px 34px 40px 0;
}

.service-item:nth-child(odd) {
  border-right: 1px solid rgba(15, 50, 81, 0.23);
}

.service-item:nth-child(even) {
  padding-left: 36px;
}

.service-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-item p {
  margin-bottom: 20px;
}

.service-item small {
  display: block;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.audience-section::after {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 10vw, 150px);
}

.audience-copy {
  align-self: center;
}

.audience-copy .section-label {
  color: #f6ecd5;
}

.audience-copy h2,
.audience-copy p,
.text-link-dark {
  color: white;
}

.audience-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
}

.text-link-dark::after {
  background: #f6ecd5;
}

.audience-list {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.audience-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 67px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.audience-list span {
  color: #f6ecd5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.audience-list strong {
  color: white;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

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

.benefit-intro {
  max-width: 900px;
  margin-bottom: 70px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.benefits-grid article {
  position: relative;
  min-height: 290px;
  border-right: 1px solid var(--border);
  padding: 42px 44px 26px 0;
}

.benefits-grid article + article {
  padding-left: 44px;
}

.benefits-grid article:last-child {
  border-right: 0;
}

.benefit-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.process-section::before {
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

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

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

.process-heading h2 {
  color: white;
}

.process-heading p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.steps-grid article {
  min-height: 270px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 30px;
}

.steps-grid article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #d7c99f;
  font-size: 11px;
  font-weight: 700;
}

.steps-grid h3 {
  color: white;
  font-size: 25px;
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.faq-section {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(42px, 4vw, 60px);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 92px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary i {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 670px;
  padding: 0 52px 26px 0;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  box-shadow: var(--shadow);
}

.contact-copy {
  position: relative;
  overflow: hidden;
  background: var(--blue-light);
  padding: clamp(42px, 6vw, 76px);
}

.contact-copy::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(15, 50, 81, 0.14);
  border-radius: 50%;
  content: "";
}

.contact-copy h2 {
  font-size: clamp(44px, 4.5vw, 62px);
}

.contact-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 25px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.contact-details div {
  display: grid;
  gap: 4px;
}

.contact-details strong,
.contact-details a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 22px;
  background: white;
  padding: clamp(42px, 6vw, 76px);
}

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

.contact-form label:not(.consent) {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 50, 81, 0.2);
  border-radius: 0;
  background: var(--paper);
  color: var(--charcoal);
  padding: 15px 16px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.contact-form input {
  min-height: 54px;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8e8f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: white;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.contact-form .button {
  justify-self: start;
  min-width: 190px;
  margin-top: 4px;
}

.prototype-note {
  display: block;
  color: #7f8485;
  font-size: 11px;
}

.form-notice {
  margin: 0 0 2px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  color: var(--navy);
  padding: 13px 16px;
  font-size: 14px;
}

.form-notice.is-error {
  border-left-color: #a9473f;
  color: #762f2a;
}

.aida-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-footer {
  background: var(--linen);
  padding: 66px 0 26px;
}

.content-page {
  min-height: 65vh;
  background: var(--paper);
}

.content-page-inner {
  max-width: 860px;
}

.content-page h1 {
  margin-bottom: 46px;
  font-size: clamp(46px, 6vw, 72px);
}

.entry-content h2 {
  margin-top: 54px;
  font-size: clamp(32px, 4vw, 44px);
}

.entry-content h3 {
  margin-top: 38px;
}

.entry-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.55fr 1.25fr 0.6fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 188px;
  height: auto;
}

.footer-main > div {
  display: grid;
  gap: 5px;
}

.footer-main strong,
.footer-main > div a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-main > div a:hover,
.footer-main > div a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.footer-main nav {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 11px;
}

@media (max-width: 1020px) {
  :root {
    --container: min(100% - 40px, 920px);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 10px 20px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid var(--border);
    padding: 13px 2px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 44px;
  }

  h1 {
    font-size: clamp(50px, 7vw, 70px);
  }

  .ledger-card {
    min-height: 420px;
    padding: 25px;
  }

  .ledger-body {
    grid-template-columns: 86px 1fr;
    gap: 20px;
  }

  .ledger-body img {
    width: 82px;
  }

  .visual-note {
    right: -10px;
  }

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

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

@media (max-width: 780px) {
  :root {
    --container: min(100% - 34px, 650px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand > img {
    width: 38px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .button-small {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  h2 {
    font-size: clamp(39px, 10.5vw, 54px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .ledger-card {
    min-height: 430px;
  }

  .visual-note {
    right: 2px;
  }

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

  .trust-row > div,
  .trust-row > div:first-child {
    min-height: 88px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    padding: 18px 24px;
  }

  .intro-grid,
  .split-heading,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .split-heading {
    margin-bottom: 52px;
  }

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

  .service-item,
  .service-item:nth-child(even) {
    min-height: 0;
    border-right: 0;
    padding: 32px 4px 34px 0;
  }

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

  .benefits-grid article,
  .benefits-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 34px 0;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-main nav {
    justify-items: start;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 540px) {
  :root {
    --container: calc(100% - 28px);
  }

  .site-header .brand {
    gap: 8px;
  }

  .header-inner {
    gap: 8px;
  }

  .header-logo > img {
    width: 126px;
    max-height: 48px;
  }

  .site-header .button-small {
    min-width: 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ledger-card {
    min-height: 380px;
    padding: 22px;
  }

  .ledger-body {
    min-height: 235px;
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .ledger-body img {
    width: 70px;
  }

  .ledger-tags span:last-child {
    display: none;
  }

  .visual-note {
    width: min(235px, 82%);
    font-size: 16px;
  }

  .service-item {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .audience-list > div {
    grid-template-columns: 43px 1fr;
  }

  .audience-list strong {
    font-size: 18px;
  }

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

  .steps-grid article {
    min-height: 0;
  }

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

  .contact-copy,
  .contact-form {
    padding: 36px 25px;
  }

  .contact-form .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
