:root {
  --navy: #0b2248;
  --ink: #051436;
  --gold: #c99e60;
  --paper: #fcfbfb;
  --white: #ffffff;
  --text: #20283a;
  --muted: #616a7b;
  --line: rgba(5, 20, 54, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
blockquote,
figure,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.6rem, 6.7vw, 7.2rem);
  line-height: 0.91;
}

h2 {
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  line-height: 1.04;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(252, 251, 251, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(5, 20, 54, 0.05);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--content), calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
  font-size: 0.87rem;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.site-header.is-scrolled .button-small:hover,
.site-header.is-scrolled .button-small:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.button-secondary-light {
  color: var(--ink);
  background: transparent;
  border-color: rgba(5, 20, 54, 0.34);
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.hero {
  min-height: 820px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 9.1% 100%,
    var(--ink);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.68fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
  width: min(var(--content), calc(100% - 48px));
  min-height: 820px;
  margin: 0 auto;
  padding: 150px 0 92px;
}

.hero-copy {
  max-width: 820px;
  min-width: 0;
}

.eyebrow,
.mono,
.section-label p,
.section-label span,
.service-number,
.visual-topline,
.audit-graphic > p,
.audit-graphic span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--gold);
}

.mono {
  color: var(--gold);
}

.hero h1 {
  max-width: 880px;
  color: var(--paper);
}

.hero-intro {
  max-width: 720px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.58;
}

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

.hero-copy .button:not(.button-secondary) {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.hero-copy .button:not(.button-secondary):hover,
.hero-copy .button:not(.button-secondary):focus-visible {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 500px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-visual::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}

.visual-mark {
  display: grid;
  place-items: center;
}

.visual-mark img {
  width: clamp(126px, 14vw, 190px);
  height: auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.market-line {
  width: 100%;
  margin-bottom: 24px;
}

.market-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.market-path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 4;
}

.visual-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
}

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

.credibility-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.credibility p {
  padding: 24px 32px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: center;
}

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

.section {
  padding: clamp(82px, 10vw, 142px) max(24px, calc((100% - var(--content)) / 2));
}

.section-label {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(38px, 5vw, 66px);
  color: var(--muted);
}

.section-label span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.56);
}

.section-label-light span {
  color: var(--paper);
}

.founder {
  background: var(--paper);
}

.founder-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: clamp(50px, 9vw, 132px);
  align-items: start;
}

.founder-content h2 {
  max-width: 760px;
}

.founder-copy {
  display: grid;
  gap: 22px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-weight: 700;
}

.text-link span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.section-ink {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.section-ink h2 {
  color: var(--paper);
}

.problem-grid,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: start;
}

.section-intro {
  max-width: 660px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem .section-intro {
  color: rgba(255, 255, 255, 0.65);
}

.issue-list,
.fit-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.issue-list li {
  position: relative;
  padding: 19px 0 19px 28px;
  border-bottom: 1px solid var(--line-light);
}

.issue-list li::before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  max-width: 420px;
  color: var(--muted);
}

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

.service-grid article {
  display: grid;
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.service-grid article:hover {
  z-index: 1;
  background: var(--paper);
  transform: translateY(-4px);
}

.service-number {
  align-self: start;
  color: var(--gold);
}

.service-grid h3 {
  align-self: end;
  max-width: 420px;
  margin-top: 70px;
}

.service-grid article > p:last-child {
  max-width: 490px;
  margin-top: 18px;
  color: var(--muted);
}

.audit {
  background: var(--paper);
}

.audit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(52px, 9vw, 124px);
  align-items: stretch;
  padding: clamp(42px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(120deg, rgba(201, 158, 96, 0.12), transparent 42%),
    var(--ink);
}

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

.audit-copy h2 {
  max-width: 720px;
  color: var(--paper);
}

.audit-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 34px;
}

.audit-graphic {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 3px solid var(--gold);
}

.audit-graphic > p {
  color: var(--gold);
}

.audit-rule {
  height: 1px;
  margin: 28px 0 8px;
  background: rgba(255, 255, 255, 0.17);
}

.audit-graphic span {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.audit-graphic strong {
  align-self: end;
  margin-top: auto;
  padding-top: 34px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.company-fit {
  background: var(--white);
}

.fit-list {
  border-color: var(--line);
}

.fit-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.testimonials .section-heading {
  display: block;
}

.testimonials .section-heading h2 {
  max-width: 760px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 72px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.testimonial-grid figure {
  display: grid;
  min-height: 380px;
  padding: 32px 0 0 30px;
  border-left: 2px solid rgba(201, 158, 96, 0.65);
}

.quote-mark {
  height: 52px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.testimonial-grid blockquote {
  max-width: 590px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
}

.testimonial-grid figcaption {
  align-self: end;
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-grid figcaption strong {
  color: var(--ink);
}

.testimonial-grid figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.insights {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
  background: #eef0f3;
}

.insights-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: end;
}

.insights h2 {
  max-width: 820px;
}

.insights-inner > div:last-child {
  display: grid;
  gap: 28px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.62fr);
  gap: clamp(58px, 9vw, 132px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.contact h2 {
  max-width: 720px;
  color: var(--paper);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 26px;
}

.contact address {
  display: grid;
  gap: 3px;
  margin-top: 34px;
  font-style: normal;
}

.contact address strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.contact address a {
  width: fit-content;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 20px;
  align-self: start;
  padding: clamp(28px, 4vw, 42px);
  background: var(--paper);
}

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

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

.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(5, 20, 54, 0.28);
  border-radius: 0;
  outline: 0;
}

.field input {
  min-height: 42px;
}

.field textarea {
  min-height: 118px;
  padding: 9px 0;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.contact-form .button {
  margin-top: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: start;
  padding: 54px max(24px, calc((100% - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-light {
  color: var(--paper);
}

.footer-brand > p {
  margin-top: 14px;
  font-size: 0.88rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 12px;
  font-size: 0.86rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

/* Pricing page */
.pricing-cover {
  padding: 34px max(24px, calc((100% - var(--content)) / 2)) 100px;
  color: var(--paper);
  background: var(--ink);
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-cover .cover-brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
}

.pricing-cover .cover-brand img {
  width: 42px;
  height: 42px;
  background: var(--paper);
}

.cover-contact {
  color: var(--gold);
  font-weight: 700;
}

.pricing-hero {
  max-width: 940px;
  padding-top: 120px;
}

.pricing-hero h1 {
  margin: 20px 0 28px;
  color: var(--paper);
}

.pricing-hero > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 max(24px, calc((100% - var(--content)) / 2));
  background: var(--white);
}

.pricing-table article {
  min-height: 580px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-table article:first-child {
  border-left: 1px solid var(--line);
}

.pricing-table h2 {
  margin-top: 32px;
  font-size: 2.3rem;
}

.price {
  margin: 24px 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
}

.pricing-table article > p:not(.mono, .price) {
  color: var(--muted);
}

.pricing-table ul {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-table li {
  position: relative;
  padding-left: 18px;
}

.pricing-table li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  content: "";
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  padding: 90px max(24px, calc((100% - var(--content)) / 2));
}

.pricing-note h2 {
  font-size: 2.5rem;
}

.pricing-note > p:not(.mono) {
  color: var(--muted);
}

.pricing-note > a {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
}

/* 404 page */
.error-page {
  display: grid;
  align-content: space-between;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  color: var(--paper);
  background: var(--ink);
}

.error-page > div {
  max-width: 840px;
  padding: clamp(80px, 14vw, 180px) 0;
}

.error-page h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  color: var(--paper);
}

.error-page > div > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.error-page .text-link {
  margin-top: 30px;
  color: var(--paper);
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.4vw, 6.2rem);
  }

  .founder-content,
  .problem-grid,
  .fit-grid,
  .audit-panel,
  .insights-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .founder-copy,
  .problem-grid .issue-list,
  .fit-list,
  .insights-inner > div:last-child {
    max-width: 760px;
  }

  .audit-graphic {
    min-height: 300px;
  }

  .contact-form {
    max-width: 760px;
  }

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

  .pricing-table article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

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

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
    padding: 100px 28px 50px;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 500;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .site-header:has(.site-nav.is-open) {
    color: var(--paper);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .testimonial-grid figure {
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13.1vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .header-inner,
  .hero-inner,
  .credibility-inner {
    width: min(100% - 28px, var(--content));
  }

  .brand {
    font-size: 1.12rem;
  }

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

  .hero-inner {
    gap: 52px;
    padding: 124px 0 54px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button-row {
    display: grid;
  }

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

  .hero-visual {
    min-height: 400px;
    padding: 20px;
  }

  .visual-pillars {
    font-size: 0.85rem;
  }

  .credibility-inner {
    grid-template-columns: 1fr;
  }

  .credibility p {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .credibility p:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 74px 14px;
  }

  .section-label {
    margin-bottom: 36px;
  }

  .founder-content,
  .problem-grid,
  .fit-grid,
  .audit-panel,
  .insights-inner,
  .contact {
    gap: 42px;
  }

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

  .service-grid article {
    min-height: 270px;
    padding: 26px 22px;
  }

  .service-grid h3 {
    margin-top: 54px;
  }

  .audit-panel {
    padding: 34px 22px;
  }

  .audit-graphic {
    min-height: 320px;
  }

  .fit-list li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .testimonial-grid figure {
    min-height: 0;
    padding-left: 20px;
  }

  .testimonial-grid blockquote {
    font-size: 1.35rem;
  }

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

  .contact-form {
    padding: 26px 20px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 46px 14px;
  }

  .site-footer nav {
    gap: 18px;
    padding-top: 0;
  }

  .pricing-cover,
  .pricing-table,
  .pricing-note {
    padding-right: 14px;
    padding-left: 14px;
  }

  .pricing-hero {
    padding-top: 90px;
  }

  .pricing-table article {
    padding: 28px 22px;
  }

  .error-page {
    padding: 24px 14px;
  }
}

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