:root {
  --ink: #29213b;
  --ink-soft: #40384f;
  --muted: #686174;
  --violet: #6558ff;
  --violet-dark: #4e42df;
  --violet-pale: #eeecff;
  --sky: #c9e7ff;
  --sky-pale: #eff8ff;
  --paper: #faf9ff;
  --paper-2: #f4f2fa;
  --mist: #ebeaf2;
  --line: rgba(41, 33, 59, 0.14);
  --white: #ffffff;
  --max-width: 1320px;
  --shadow: 0 24px 70px rgba(41, 33, 59, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

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

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

button,
input,
select,
textarea {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--wp--preset--font-family--system-sans);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.25rem, 6.3vw, 6.55rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.site-shell {
  min-width: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 96% 10%, rgba(201, 231, 255, 0.42), transparent 27rem),
    var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 96px;
  max-width: calc(var(--max-width) + 96px);
  margin: 0 auto;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 255, 0.88);
  backdrop-filter: blur(18px);
  font-family: var(--wp--preset--font-family--system-sans);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-name {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 36px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 11px 0 9px;
  border-bottom: 2px solid var(--violet);
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  padding: 9px 0;
  border-bottom: 2px solid var(--violet);
  font-size: 0.76rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.mobile-nav summary::after {
  margin-left: 8px;
  color: var(--violet);
  content: "+";
}

.mobile-nav[open] summary::after {
  content: "−";
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  display: grid;
  width: min(330px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  color: var(--violet-dark);
}

.header-cta span,
.button span,
.text-link span,
.service-card a span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.header-cta:hover span,
.button:hover span,
.text-link:hover span,
.service-card a:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--violet-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  flex: 0 0 26px;
  border-radius: 3px;
  background: var(--violet);
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow-light::before {
  background: var(--sky);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-accent {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(101, 88, 255, 0.2);
}

.button-accent:hover {
  background: var(--violet-dark);
  box-shadow: 0 16px 34px rgba(101, 88, 255, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 0;
  border-bottom: 1px solid currentColor;
  color: var(--violet-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

/* Homepage */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(430px, 0.8fr);
  gap: clamp(44px, 4vw, 64px);
  min-height: min(720px, calc(100svh - 96px));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(52px, 5vw, 68px) 48px clamp(52px, 4.8vw, 64px);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 18px 0 auto 52%;
  z-index: -1;
  width: min(620px, 47vw);
  height: 580px;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(101, 88, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 88, 255, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom right, black, transparent 78%);
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 4.15vw, 4.5rem);
  text-wrap: balance;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

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

.trust-strip {
  display: flex;
  gap: 0;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-strip span {
  padding: 0 15px;
  border-right: 1px solid var(--line);
}

.trust-strip span:first-child {
  padding-left: 0;
}

.trust-strip span:last-child {
  border-right: 0;
}

.service-map {
  position: relative;
  display: grid;
  row-gap: 24px;
  align-content: center;
  align-self: center;
  min-height: 500px;
}

.service-map::before {
  position: absolute;
  top: 26px;
  right: 8%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(101, 88, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.service-map::after {
  position: absolute;
  bottom: 14px;
  left: 10%;
  z-index: -1;
  width: 220px;
  height: 120px;
  background: var(--sky);
  content: "";
  clip-path: polygon(16% 0, 100% 0, 83% 100%, 0 75%);
}

.service-map-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  width: min(430px, 78%);
  min-height: 124px;
  padding: 24px 28px;
  border: 1px solid rgba(41, 33, 59, 0.1);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(41, 33, 59, 0.1);
  clip-path: polygon(0 0, 91% 0, 100% 31%, 100% 100%, 0 100%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-map-card:hover {
  z-index: 4;
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(41, 33, 59, 0.16);
}

.service-map-card-01 {
  justify-self: start;
  margin-left: 2%;
}

.service-map-card-02 {
  justify-self: end;
  background: var(--violet);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 9% 100%, 0 69%);
}

.service-map-card-03 {
  justify-self: start;
  margin-left: 8%;
  background: var(--sky-pale);
}

.service-map-number {
  align-self: start;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-map-card-02 .service-map-number {
  color: var(--sky);
}

.service-map-card strong,
.service-map-card small {
  display: block;
}

.service-map-card strong {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.035em;
}

.service-map-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.service-map-card-02 small {
  color: rgba(255, 255, 255, 0.76);
}

.service-map-card i {
  font-size: 1.25rem;
  font-style: normal;
}

.map-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.map-line-one {
  top: 26%;
  left: 24%;
  width: 52%;
  height: 24%;
  background: linear-gradient(
    to bottom left,
    transparent calc(50% - 0.75px),
    var(--violet) calc(50% - 0.75px),
    var(--violet) calc(50% + 0.75px),
    transparent calc(50% + 0.75px)
  );
}

.map-line-two {
  top: 50%;
  left: 22%;
  width: 56%;
  height: 29%;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.75px),
    var(--violet) calc(50% - 0.75px),
    var(--violet) calc(50% + 0.75px),
    transparent calc(50% + 0.75px)
  );
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 48px;
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  column-gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 56px;
}

.section-lead .eyebrow {
  grid-column: 1 / -1;
}

.section-lead h2 {
  margin-bottom: 0;
}

.section-lead > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
}

.section-lead.compact {
  display: block;
  max-width: 780px;
}

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

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

.service-card {
  position: relative;
  min-height: 375px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  z-index: 0;
  box-sizing: border-box;
  width: 210px;
  height: 210px;
  border: 30px solid var(--violet-pale);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(2) {
  background: var(--violet);
  color: var(--white);
}

.service-card:nth-child(2)::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.service-card:nth-child(3) {
  background: var(--sky-pale);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  margin-bottom: 52px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-card:nth-child(2) .card-number {
  color: var(--sky);
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
}

.service-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card a {
  position: absolute;
  bottom: 34px;
  left: 36px;
  z-index: 2;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 750;
}

.friction-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 160px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 48px;
  border-top: 1px solid var(--line);
}

.friction-section h2 {
  max-width: 600px;
}

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

.friction-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.friction-list span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 10vw, 150px);
  align-items: center;
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.about-section > * {
  width: 100%;
  max-width: 590px;
}

.about-section > :first-child {
  justify-self: end;
}

@media (min-width: 781px) {
  .about-section > .portrait-frame {
    max-width: 500px;
  }
}

.portrait-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 50%, rgba(201, 231, 255, 0.13) 50%),
    linear-gradient(45deg, rgba(101, 88, 255, 0.36), rgba(201, 231, 255, 0.1));
  color: var(--white);
  clip-path: polygon(0 0, 89% 0, 100% 15%, 100% 100%, 0 100%);
}

.portrait-placeholder::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -72%);
}

.portrait-placeholder::after {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 300px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50% 50% 0 0;
  content: "";
  transform: translateX(-50%);
}

.portrait-placeholder span,
.portrait-placeholder small {
  position: relative;
  z-index: 2;
}

.portrait-placeholder span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portrait-placeholder small {
  color: rgba(255, 255, 255, 0.62);
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.about-copy .about-intro {
  color: var(--white);
  font-size: 1.16rem;
}

.about-copy .text-link {
  margin-top: 10px;
  color: var(--sky);
}

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

.process-step {
  min-height: 270px;
  padding: 28px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  display: block;
  margin-bottom: 70px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 13px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 130px) 48px;
  border-top: 1px solid var(--line);
}

.local-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(rgba(101, 88, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 88, 255, 0.07) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
}

.local-marker span {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 5px 9px;
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.local-marker span:last-child {
  align-self: flex-end;
}

.local-marker i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  border: 1px solid var(--violet);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.local-marker i::before,
.local-marker i::after {
  position: absolute;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.local-marker i::before {
  top: 25%;
  left: 22%;
  width: 13px;
  height: 13px;
  box-shadow: 4px 4px 0 var(--sky);
}

.local-marker i::after {
  right: 19%;
  bottom: 21%;
  width: 9px;
  height: 9px;
}

.local-copy h2 {
  margin-bottom: 24px;
}

.local-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.faq-section .section-lead {
  margin-bottom: 0;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 2px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet);
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 54px 23px 2px;
  color: var(--muted);
}

.closing-cta,
.page-cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) max(48px, calc((100vw - var(--max-width)) / 2 + 48px));
  overflow: hidden;
  background: var(--violet);
  color: var(--white);
}

.closing-cta::after,
.page-cta::after {
  position: absolute;
  top: -130px;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 0 140px rgba(255, 255, 255, 0.025);
}

.closing-cta > *,
.page-cta > * {
  position: relative;
  z-index: 2;
}

.closing-cta h2,
.page-cta h2 {
  max-width: 820px;
  margin-bottom: 24px;
}

.closing-cta > p:not(.eyebrow),
.page-cta > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.closing-cta .button,
.page-cta .button {
  margin-top: 16px;
  background: var(--white);
  color: var(--violet-dark);
  box-shadow: none;
}

/* Internal pages */

.internal-main {
  min-width: 0;
}

.internal-hero {
  position: relative;
  min-height: 560px;
  padding: clamp(50px, 5vw, 76px)
    max(48px, calc((100vw - var(--max-width)) / 2 + 48px))
    clamp(72px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 20%, rgba(201, 231, 255, 0.24), transparent 23rem),
    var(--ink);
  color: var(--white);
}

.internal-hero::after {
  position: absolute;
  right: 4%;
  bottom: -160px;
  width: min(520px, 40vw);
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(101, 88, 255, 0.09),
    0 0 0 140px rgba(201, 231, 255, 0.04);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(72px, 9vw, 124px);
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.74rem;
}

.breadcrumbs a:hover {
  color: var(--sky);
}

.internal-hero > .eyebrow,
.internal-hero > h1,
.internal-hero > p,
.internal-hero > .button {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.internal-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.internal-hero h1 span {
  display: block;
  color: var(--sky);
}

.internal-hero > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero-index {
  position: absolute;
  right: max(48px, calc((100vw - var(--max-width)) / 2 + 48px));
  bottom: 56px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.8;
}

.content-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(50px, 10vw, 150px);
  row-gap: clamp(20px, 2vw, 28px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px, 5vw, 80px) 48px;
}

.content-intro > h2 {
  grid-column: 1;
  max-width: 560px;
}

.tax-intro-title {
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.content-intro > .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.content-intro .prose {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  max-width: 680px;
}

.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.deliverables-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 126px) 48px;
  border-top: 1px solid var(--line);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.check-list li:first-child {
  border-top: 1px solid var(--line);
}

.check-list li span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-dark,
.split-copy {
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(68px, 7vw, 104px);
}

.split-dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  padding-left: max(
    48px,
    calc((100vw - var(--max-width)) / 2 + 48px)
  );
  background: var(--ink);
  color: var(--white);
}

.split-dark > * {
  align-self: flex-end;
  width: min(100%, calc(var(--max-width) / 2 - 72px));
}

.split-dark h2 {
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: max(
    48px,
    calc((100vw - var(--max-width)) / 2 + 48px)
  );
  padding-left: 48px;
  background: var(--sky-pale);
}

.split-copy > * {
  width: min(100%, 500px);
}

.split-copy p {
  color: var(--muted);
}

.split-copy .text-link {
  width: fit-content;
  max-width: 500px;
  margin-top: 16px;
}

.steps-section,
.outcome-section,
.maintenance-section,
.experience-section,
.principles-section,
.page-faq,
.seo-reality,
.automation-process,
.about-story,
.about-local {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 48px;
}

.numbered-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 56px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.numbered-steps li {
  min-height: 250px;
  padding: 28px 26px 20px 0;
  border-right: 1px solid var(--line);
}

.numbered-steps li + li {
  padding-left: 26px;
}

.numbered-steps li:last-child {
  border-right: 0;
}

.numbered-steps span {
  display: block;
  margin-bottom: 58px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.numbered-steps p {
  color: var(--muted);
  font-size: 0.92rem;
}

.page-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.signal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 140px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 48px;
  border-top: 1px solid var(--line);
}

.signal-heading {
  padding: 40px;
  border-radius: 14px;
  background: var(--violet);
  color: var(--white);
  clip-path: polygon(0 0, 91% 0, 100% 14%, 100% 100%, 0 100%);
}

.signal-heading .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.signal-heading .eyebrow::before {
  background: var(--sky);
}

.signal-section .check-list {
  align-self: center;
}

.outcome-section,
.maintenance-section,
.experience-section,
.principles-section,
.about-local {
  border-top: 1px solid var(--line);
}

.outcome-grid,
.maintenance-grid,
.experience-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

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

.outcome-grid article,
.maintenance-grid article,
.experience-grid article,
.principles article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.outcome-grid span,
.experience-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.outcome-grid p,
.maintenance-grid p,
.experience-grid p,
.principles p {
  color: var(--muted);
  font-size: 0.92rem;
}

.automation-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.automation-sticky {
  position: sticky;
  top: 40px;
  height: fit-content;
}

.automation-process .numbered-steps {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.automation-process .numbered-steps li {
  display: grid;
  grid-template-columns: 52px minmax(160px, 0.55fr) 1fr;
  gap: 24px;
  min-height: 0;
  padding: 27px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.automation-process .numbered-steps li + li {
  padding-left: 0;
}

.automation-process .numbered-steps span {
  margin: 7px 0 0;
}

.automation-process .numbered-steps h3,
.automation-process .numbered-steps p {
  margin-bottom: 0;
}

.seo-reality {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 140px);
  background: var(--ink);
  color: var(--white);
  max-width: none;
  padding-right: max(48px, calc((100vw - var(--max-width)) / 2 + 48px));
  padding-left: max(48px, calc((100vw - var(--max-width)) / 2 + 48px));
}

.seo-label {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(201, 231, 255, 0.3) 0 3px, transparent 4px),
    rgba(101, 88, 255, 0.16);
  background-size: 24px 24px;
  color: var(--sky);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
}

.seo-reality > div:last-child {
  align-self: center;
}

.seo-reality > div:last-child p {
  color: rgba(255, 255, 255, 0.7);
}

.about-hero {
  min-height: 680px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
}

.story-lead {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.45;
}

.about-story > div:last-child > p:not(.eyebrow):not(.story-lead) {
  color: var(--muted);
}

.portrait-large {
  min-height: 560px;
  background: transparent;
}

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

.experience-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.principles-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 140px);
}

.principles-section > div:first-child {
  align-self: start;
}

.principles-section .principles {
  margin-top: 0;
}

.about-local {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.about-local > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
}

/* Contact and legal */

.contact-hero {
  padding: clamp(50px, 5vw, 76px)
    max(48px, calc((100vw - var(--max-width)) / 2 + 48px))
    clamp(72px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.contact-hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
}

.contact-hero > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 5.5vw, 84px);
  align-items: start;
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) clamp(40px, 5vw, 72px);
}

.contact-aside {
  align-self: start;
}

.contact-aside h2 {
  margin-bottom: 26px;
  text-wrap: balance;
}

.contact-aside p:not(.eyebrow) {
  color: var(--muted);
}

.contact-aside dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.contact-aside dl div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside dt {
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-aside dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(101, 88, 255, 0.2);
  border-radius: 10px;
  background: var(--violet-pale);
  color: var(--ink-soft) !important;
  font-size: 0.85rem;
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-wrap > h2 {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-field label {
  font-size: 0.78rem;
  font-weight: 750;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 13px 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(101, 88, 255, 0.1);
  outline: 0;
}

.form-field textarea {
  resize: vertical;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-field input {
  margin-top: 5px;
  accent-color: var(--violet);
}

.contact-form .button {
  width: fit-content;
}

.form-privacy {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-privacy a {
  color: var(--violet-dark);
  text-decoration: underline;
}

.form-success {
  margin: 0;
  padding: 17px 19px;
  border-left: 3px solid var(--violet);
  border-radius: 7px;
  background: var(--violet-pale);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 48px;
}

.legal-page .breadcrumbs {
  margin-bottom: 64px;
  color: var(--muted);
}

.legal-page .breadcrumbs a:hover {
  color: var(--violet-dark);
}

.legal-page h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.legal-intro {
  margin-bottom: 50px;
  padding: 22px 24px;
  border: 1px solid rgba(101, 88, 255, 0.22);
  border-radius: 10px;
  background: var(--violet-pale);
  color: var(--ink-soft);
}

.legal-page h2 {
  margin-top: 52px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.6fr));
  gap: 44px;
  padding: 72px max(48px, calc((100vw - var(--max-width)) / 2 + 48px)) 30px;
  background: var(--ink);
  color: var(--white);
}

.site-footer > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--sky);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

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

.footer-brand span {
  display: block;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-brand p {
  max-width: 380px;
}

.footer-local p {
  margin-bottom: 4px;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
    gap: 32px;
    padding-right: 32px;
    padding-left: 32px;
  }

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

  .service-map-card {
    width: min(390px, 90%);
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .process-list,
  .numbered-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2),
  .numbered-steps li:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3),
  .numbered-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .outcome-grid,
  .maintenance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .hero-copy,
  .hero h1 {
    max-width: 800px;
  }

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

  .service-map {
    width: min(640px, 100%);
    min-height: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.4rem);
  }

  .site-header {
    min-height: 78px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 62px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.5vw, 4rem);
  }

  .hero-grid {
    inset: auto -20px 0 15%;
    width: 100%;
    height: 420px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .trust-strip {
    flex-wrap: wrap;
    row-gap: 9px;
  }

  .service-map {
    min-height: 420px;
    margin-top: 56px;
  }

  .service-map-card {
    width: 88%;
    min-height: 108px;
    padding: 21px;
  }

  .service-map-card-01 {
    margin-left: 0;
  }

  .section,
  .friction-section,
  .local-section,
  .content-intro,
  .deliverables-section,
  .steps-section,
  .signal-section,
  .outcome-section,
  .maintenance-section,
  .experience-section,
  .principles-section,
  .page-faq,
  .seo-reality,
  .automation-process,
  .about-story,
  .about-local,
  .contact-layout,
  .legal-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-lead,
  .friction-section,
  .about-section,
  .local-section,
  .faq-section,
  .content-intro,
  .deliverables-section,
  .signal-section,
  .page-faq,
  .automation-process,
  .seo-reality,
  .about-story,
  .about-local,
  .principles-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-lead {
    display: block;
  }

  .section-lead h2 {
    margin-bottom: 24px;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }

  .friction-section,
  .faq-section {
    gap: 42px;
  }

  .about-section {
    padding: 76px 20px;
  }

  .about-section > * {
    max-width: none;
  }

  .about-section > :first-child {
    justify-self: auto;
  }

  .portrait-placeholder {
    min-height: 420px;
  }

  .process-list,
  .numbered-steps,
  .outcome-grid,
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step,
  .numbered-steps li,
  .numbered-steps li + li {
    min-height: 0;
    padding: 25px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step > span,
  .numbered-steps span,
  .outcome-grid span,
  .experience-grid span {
    margin-bottom: 25px;
  }

  .local-section {
    gap: 48px;
  }

  .closing-cta,
  .page-cta {
    padding: 78px 20px;
  }

  .internal-hero,
  .contact-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .breadcrumbs {
    margin-bottom: 70px;
  }

  .hero-index {
    right: 20px;
    bottom: 38px;
  }

  .content-intro > h2,
  .content-intro > .eyebrow,
  .content-intro .prose {
    grid-row: auto;
    grid-column: auto;
  }

  .content-intro > .eyebrow {
    margin-bottom: 0;
  }

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

  .split-dark,
  .split-copy {
    padding: 72px 20px;
  }

  .split-dark > *,
  .split-copy > * {
    align-self: auto;
    width: auto;
  }

  .automation-sticky {
    position: static;
  }

  .automation-process .numbered-steps li {
    grid-template-columns: 42px 1fr;
  }

  .automation-process .numbered-steps p {
    grid-column: 2;
  }

  .seo-reality {
    max-width: none;
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 62px 20px 28px;
  }

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

/* Nimmo Administratieservice v2 */

.related-services,
.tax-grid-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 140px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 126px) 48px;
  border-top: 1px solid var(--line);
}

.related-service-links {
  display: grid;
  gap: 16px;
}

.related-service-links > a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 120px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.related-service-links > a::after {
  color: var(--violet);
  content: "→";
  font-size: 1.2rem;
}

.related-service-links > a:hover {
  border-color: rgba(101, 88, 255, 0.34);
  box-shadow: 0 18px 42px rgba(41, 33, 59, 0.09);
  transform: translateY(-3px);
}

.related-service-links span {
  align-self: start;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.related-service-links strong,
.related-service-links small {
  display: block;
}

.related-service-links strong {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.related-service-links small {
  color: var(--muted);
  font-size: 0.8rem;
}

.tax-grid-section {
  display: block;
}

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

.tax-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.tax-grid article:nth-child(2) {
  background: var(--violet);
  color: var(--white);
}

.tax-grid article:nth-child(3) {
  background: var(--sky-pale);
}

.tax-grid article > span {
  display: block;
  margin-bottom: 46px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.tax-grid article:nth-child(2) > span {
  color: var(--sky);
}

.tax-grid h3 {
  margin-bottom: 16px;
}

.tax-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.tax-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.76);
}

.home-blog {
  border-top: 1px solid var(--line);
}

.blog-overview-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--violet-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.blog-hero {
  padding: clamp(64px, 8vw, 112px)
    max(48px, calc((100vw - var(--max-width)) / 2 + 48px));
  background:
    radial-gradient(circle at 84% 15%, rgba(201, 231, 255, 0.25), transparent 24rem),
    var(--ink);
  color: var(--white);
}

.blog-hero h1 {
  max-width: 960px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.blog-hero > p:not(.eyebrow),
.blog-hero .archive-description {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.blog-index {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 126px) 48px;
}

.blog-index-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  column-gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 54px;
}

.blog-index-intro .eyebrow {
  grid-column: 1 / -1;
}

.blog-index-intro h2 {
  margin-bottom: 0;
}

.blog-index-intro > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
}

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

.blog-card {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:nth-child(2) {
  background: var(--sky-pale);
}

.blog-card:hover {
  border-color: rgba(101, 88, 255, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.blog-card-meta,
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-card-meta {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.blog-card-meta span {
  color: var(--violet-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.45vw, 2.15rem);
  text-wrap: balance;
}

.blog-card h2 a,
.blog-card h3 a {
  outline-offset: 7px;
}

.blog-card > p {
  margin-bottom: 32px;
  color: var(--muted);
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.blog-card-footer a {
  color: var(--violet-dark);
  font-weight: 750;
}

.article-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) 48px clamp(96px, 10vw, 150px);
}

.article-header {
  max-width: 960px;
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 6vw, 5.7rem);
  text-wrap: balance;
}

.article-lead {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.article-byline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-byline a {
  color: var(--violet-dark);
  font-weight: 750;
}

.article-body {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 1.07rem;
  line-height: 1.78;
}

.article-body h2 {
  margin-top: 54px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding-left: 22px;
}

.article-body li::marker {
  color: var(--violet);
}

.article-cta {
  position: relative;
  max-width: 920px;
  margin: clamp(76px, 10vw, 128px) auto 0;
  padding: clamp(42px, 6vw, 70px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
}

.article-cta::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(101, 88, 255, 0.08);
}

.article-cta > * {
  position: relative;
  z-index: 2;
}

.article-cta h2 {
  max-width: 700px;
  margin-bottom: 20px;
}

.article-cta > p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.72);
}

.article-cta .button {
  margin-top: 14px;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin: 44px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--violet-dark);
  font-size: 0.84rem;
  font-weight: 750;
}

.post-navigation {
  max-width: 920px;
  margin: 32px auto 0;
}

.post-navigation .nav-links {
  margin-top: 0;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.search-submit {
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 9px;
  background: var(--violet);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.search-results-grid {
  margin-top: 18px;
}

.pagination {
  margin-top: 42px;
}

.pagination .nav-links {
  justify-content: center;
  border-top: 0;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pagination .current {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }
}

@media (max-width: 780px) {
  .related-services,
  .tax-grid-section,
  .blog-index,
  .article-page {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .tax-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card:last-child {
    grid-column: auto;
  }

  .blog-hero {
    padding: 72px 20px;
  }

  .blog-index-intro {
    display: block;
  }

  .blog-index-intro h2 {
    margin-bottom: 24px;
  }

  .related-service-links > a {
    grid-template-columns: 36px 1fr;
  }

  .related-service-links > a::after {
    display: none;
  }

  .article-header {
    margin-bottom: 52px;
    padding-bottom: 38px;
  }

  .article-header h1 {
    font-size: clamp(2.75rem, 11vw, 4.2rem);
  }

  .article-body {
    font-size: 1rem;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .blog-card,
  .tax-grid article {
    padding: 26px;
  }

  .search-form {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 1.05rem;
  }

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

  .trust-strip {
    display: grid;
  }

  .trust-strip span,
  .trust-strip span:first-child {
    padding: 0;
    border-right: 0;
  }

  .service-map {
    min-height: 400px;
  }

  .service-map-card {
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: 96%;
  }

  .service-map-card i {
    display: none;
  }

  .service-card,
  .signal-heading,
  .contact-form-wrap {
    padding: 26px;
  }

  .local-marker {
    min-height: 270px;
    padding: 28px;
  }

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

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

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

@keyframes motion-reveal {
  from {
    opacity: 0;
    translate: 0 18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes motion-title {
  from {
    translate: 0 10px;
  }

  to {
    translate: 0 0;
  }
}

@keyframes motion-menu {
  from {
    opacity: 0;
    translate: 0 -8px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header > *,
  .hero-copy > .eyebrow,
  .hero-intro,
  .hero-actions,
  .trust-strip,
  .service-map-card,
  .internal-hero > .breadcrumbs,
  .internal-hero > .eyebrow,
  .internal-hero > p:not(.eyebrow),
  .internal-hero > .button,
  .internal-hero > .hero-index,
  .contact-hero > .breadcrumbs,
  .contact-hero > .eyebrow,
  .contact-hero > p:not(.eyebrow) {
    animation: motion-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy > h1,
  .internal-hero > h1,
  .contact-hero > h1 {
    animation: motion-title 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header > :nth-child(2),
  .hero-copy > h1,
  .internal-hero > .eyebrow,
  .contact-hero > .eyebrow {
    animation-delay: 60ms;
  }

  .site-header > :nth-child(3),
  .hero-intro,
  .internal-hero > h1,
  .contact-hero > h1,
  .service-map-card-01 {
    animation-delay: 120ms;
  }

  .site-header > :nth-child(4),
  .hero-actions,
  .internal-hero > p:not(.eyebrow),
  .contact-hero > p:not(.eyebrow),
  .service-map-card-02 {
    animation-delay: 180ms;
  }

  .trust-strip,
  .internal-hero > .button,
  .internal-hero > .hero-index,
  .service-map-card-03 {
    animation-delay: 240ms;
  }

  .motion-reveal {
    opacity: 0;
    translate: 0 18px;
  }

  .motion-reveal.is-visible {
    animation: motion-reveal 580ms cubic-bezier(0.22, 1, 0.36, 1)
      var(--motion-delay, 0ms) both;
  }

  .mobile-nav[open] nav,
  .desktop-nav.is-open {
    animation: motion-menu 180ms ease-out both;
  }

  .faq-list details[open] > p {
    animation: motion-reveal 260ms ease-out both;
  }
}

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

  .motion-reveal,
  .motion-reveal.is-visible {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
    animation: none !important;
  }

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

/* WordPress integration */

.brand-wrap {
  min-width: 0;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 58px;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .menu-item {
  position: relative;
}

.desktop-nav .menu-item-has-children > a::before {
  margin-right: 5px;
  color: var(--violet);
  content: "+";
}

.desktop-nav .sub-menu {
  position: absolute;
  top: calc(100% - 18px);
  left: -18px;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
  display: grid;
}

.desktop-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
}

.desktop-nav .sub-menu a::after {
  display: none;
}

.desktop-nav .sub-menu a:hover {
  background: var(--violet-pale);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border: 0;
  border-bottom: 2px solid var(--violet);
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}

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

.menu-toggle i::before {
  transform: translateY(-5px);
}

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

.menu-toggle[aria-expanded="true"] i::before {
  transform: rotate(90deg);
}

.portrait-frame {
  width: 100%;
}

.portrait-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  clip-path: polygon(0 0, 89% 0, 100% 15%, 100% 100%, 0 100%);
}

.portrait-frame.portrait-large .portrait-placeholder,
.portrait-frame.portrait-large .portrait-image {
  min-height: 560px;
}

.portrait-frame.portrait-large .portrait-image {
  clip-path: none;
}

.portrait-frame.portrait-large .portrait-placeholder {
  background:
    linear-gradient(135deg, transparent 50%, rgba(201, 231, 255, 0.22) 50%),
    linear-gradient(45deg, var(--ink), var(--violet));
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  margin: 0;
  padding: 17px 19px;
  border-left: 3px solid #b42318;
  border-radius: 7px;
  background: #fff0ee;
  color: #7a271a;
  font-size: 0.86rem;
}

.editorial-index,
.content-page,
.error-page,
.article-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 48px;
}

.editorial-index > header,
.content-page > .entry-header,
.error-page > header {
  margin-bottom: 46px;
}

.editorial-index h1,
.content-page h1,
.error-page h1,
.article-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.entry-content {
  color: var(--muted);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
  color: var(--ink);
}

.entry-content a {
  color: var(--violet-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

.post-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.post-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-image {
  width: 100%;
  height: auto;
  margin-right: 0;
  margin-bottom: 40px;
  margin-left: 0;
  border-radius: 14px;
  overflow: hidden;
}

.article-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.content-page .breadcrumbs,
.editorial-index .breadcrumbs,
.error-page .breadcrumbs {
  color: var(--muted);
}

.content-page .breadcrumbs a:hover,
.editorial-index .breadcrumbs a:hover,
.error-page .breadcrumbs a:hover {
  color: var(--violet-dark);
}

.legal-content a {
  color: var(--violet-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.wp-block-button__link {
  border-radius: 10px;
  background: var(--violet);
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 32px;
    left: 32px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .desktop-nav.is-open {
    display: block;
  }

  .desktop-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .desktop-nav a {
    display: block;
    padding: 13px 12px;
  }

  .desktop-nav a::after {
    display: none;
  }

  .desktop-nav .sub-menu {
    position: static;
    display: grid;
    margin: 0 0 8px 16px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .principles-section {
    grid-template-columns: 1fr;
  }

  .principles-section .principles {
    margin-top: 36px;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    right: 20px;
    left: 20px;
  }

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

  .editorial-index,
  .content-page,
  .error-page,
  .article-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Responsive hardening v2.0.6 */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video,
canvas {
  height: auto;
}

main,
section,
article,
aside,
header,
footer,
nav {
  min-width: 0;
}

.entry-content,
.article-body,
.prose,
.contact-aside,
.site-footer {
  overflow-wrap: anywhere;
}

.entry-content figure {
  max-width: 100%;
}

.entry-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.entry-content pre,
.entry-content code {
  max-width: 100%;
}

.entry-content pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (hover: none) {
  .service-map-card:hover,
  .service-card:hover,
  .related-service-links > a:hover,
  .blog-card:hover {
    box-shadow: none;
    transform: none;
  }
}

@media (pointer: coarse) {
  .button,
  .menu-toggle,
  .desktop-nav a,
  .pagination .page-numbers {
    min-height: 44px;
  }
}

@media (max-width: 1240px) {
  .desktop-nav {
    z-index: 50;
    max-height: calc(100dvh - 116px);
    overscroll-behavior: contain;
  }

  .desktop-nav .menu > li > a {
    font-size: 0.95rem;
  }

  .menu-toggle {
    min-height: 44px;
    padding-right: 4px;
    padding-left: 4px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --mobile-gutter: 20px;
  }

  .site-header {
    min-height: 72px;
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .custom-logo {
    max-width: 160px;
    max-height: 48px;
  }

  .desktop-nav {
    top: calc(100% + 6px);
    right: var(--mobile-gutter);
    left: var(--mobile-gutter);
    max-height: calc(100dvh - 92px);
    padding: 10px;
  }

  .desktop-nav a {
    padding: 13px 12px;
  }

  .hero {
    display: block;
    padding: 48px var(--mobile-gutter) 64px;
  }

  .hero-grid {
    inset: 0 calc(var(--mobile-gutter) * -1) auto 24%;
    width: 100%;
    height: 360px;
    opacity: 0.42;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 11.5vw, 3.75rem);
    line-height: 1;
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 14px;
  }

  .trust-strip {
    display: grid;
    gap: 8px;
    margin-top: 26px;
    padding-top: 16px;
  }

  .trust-strip span,
  .trust-strip span:first-child {
    padding: 0;
    border-right: 0;
  }

  .service-map {
    gap: 14px;
    min-height: 0;
    margin-top: 42px;
  }

  .service-map::before,
  .service-map::after,
  .map-line {
    display: none;
  }

  .service-map-card,
  .service-map-card-01,
  .service-map-card-02,
  .service-map-card-03 {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 20px;
    border-radius: 12px;
    clip-path: none;
  }

  .section,
  .friction-section,
  .about-section,
  .local-section,
  .content-intro,
  .deliverables-section,
  .steps-section,
  .signal-section,
  .outcome-section,
  .maintenance-section,
  .experience-section,
  .principles-section,
  .page-faq,
  .seo-reality,
  .automation-process,
  .about-story,
  .about-local,
  .related-services,
  .tax-grid-section,
  .blog-index,
  .article-page,
  .editorial-index,
  .content-page,
  .error-page,
  .article-content,
  .legal-page {
    padding-top: 64px;
    padding-right: var(--mobile-gutter);
    padding-bottom: 64px;
    padding-left: var(--mobile-gutter);
  }

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

  .section-lead h2 {
    margin-bottom: 20px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 28px;
  }

  .service-card::after {
    right: -62px;
    bottom: -84px;
    width: 150px;
    height: 150px;
    border-width: 26px;
  }

  .service-card:last-child,
  .blog-card:last-child {
    min-height: 0;
  }

  .service-card p {
    flex: 1;
  }

  .service-card a {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-top: 2px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .friction-section {
    gap: 32px;
  }

  .friction-list li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 18px 0;
    font-size: 1rem;
  }

  .about-section {
    gap: 38px;
  }

  .portrait-frame.portrait-large .portrait-placeholder,
  .portrait-frame.portrait-large .portrait-image {
    min-height: clamp(360px, 115vw, 500px);
  }

  .local-section {
    gap: 36px;
  }

  .local-marker {
    min-height: 260px;
    padding: 28px;
  }

  .internal-hero,
  .contact-hero {
    min-height: auto;
    padding: 48px var(--mobile-gutter) 64px;
  }

  .internal-hero h1,
  .contact-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 11.5vw, 3.8rem);
    line-height: 1;
  }

  .internal-hero::after {
    right: -110px;
    bottom: -130px;
    width: 300px;
    height: 300px;
  }

  .hero-index {
    display: none;
  }

  .content-intro,
  .deliverables-section,
  .signal-section,
  .page-faq,
  .about-story,
  .about-local,
  .principles-section,
  .contact-layout {
    gap: 36px;
  }

  .split-dark,
  .split-copy {
    padding: 56px var(--mobile-gutter);
  }

  .numbered-steps {
    gap: 0;
    margin-top: 36px;
  }

  .numbered-steps li,
  .numbered-steps li + li {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    min-height: 0;
    padding: 22px 0;
  }

  .numbered-steps span {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }

  .numbered-steps h3,
  .numbered-steps p {
    grid-column: 2;
    margin-bottom: 0;
  }

  .outcome-grid,
  .maintenance-grid,
  .experience-grid,
  .principles {
    gap: 14px;
    margin-top: 36px;
  }

  .outcome-grid article,
  .maintenance-grid article,
  .experience-grid article,
  .principles article,
  .tax-grid article,
  .blog-card,
  .post-card {
    min-height: 0;
    padding: 26px;
  }

  .outcome-grid span,
  .experience-grid span {
    margin-bottom: 26px;
  }

  .faq-list summary {
    gap: 12px;
    padding: 20px 0;
  }

  .faq-list details p {
    padding: 0 42px 20px 0;
  }

  .closing-cta,
  .page-cta,
  .blog-hero {
    padding: 64px var(--mobile-gutter);
  }

  .contact-layout {
    padding: 56px var(--mobile-gutter) 64px;
  }

  .contact-form-wrap {
    padding: 26px;
    box-shadow: 0 16px 42px rgba(41, 33, 59, 0.09);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  .article-header {
    margin-bottom: 42px;
  }

  .article-meta {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .site-footer {
    padding: 56px var(--mobile-gutter) 24px;
  }
}

@media (max-width: 600px) {
  :root {
    --mobile-gutter: 16px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .desktop-nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-form .button,
  .closing-cta .button,
  .page-cta .button {
    justify-content: center;
    width: 100%;
  }

  .service-map-card {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .service-map-card i {
    display: none;
  }

  .internal-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.2rem);
  }

  .contact-aside dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form-wrap {
    padding: 22px;
  }

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

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

  .site-footer a {
    display: flex;
    align-items: center;
    min-height: 34px;
  }

  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  :root {
    --mobile-gutter: 14px;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    gap: 7px;
    font-size: 0.72rem;
  }

  .hero h1,
  .internal-hero h1,
  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .service-map-card {
    padding: 18px;
  }

  .service-map-card strong {
    font-size: 1.15rem;
  }

  .contact-form-wrap {
    padding: 18px;
  }
}
