:root {
  --ink: #312823;
  --muted: #71665f;
  --soft: #93867c;
  --bg: #f7efe6;
  --bg-deep: #eadbd0;
  --paper: #fffaf4;
  --paper-soft: #fbf3ea;
  --accent: #62363a;
  --accent-dark: #432226;
  --terracotta: #aa6653;
  --sage: #a6a68c;
  --line: rgba(49, 40, 35, 0.13);
  --line-strong: rgba(49, 40, 35, 0.24);
  --shadow: 0 28px 70px rgba(54, 34, 31, 0.12);
  --soft-shadow: 0 14px 38px rgba(54, 34, 31, 0.08);
  --max: 1160px;
  --radius: 28px;
  --radius-lg: 38px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 0%, rgba(170, 102, 83, 0.14), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(166, 166, 140, 0.2), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(49, 40, 35, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(49, 40, 35, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 65%);
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
p {
  margin: 0 0 1rem;
}
ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
}
h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.15rem);
  max-width: 11ch;
}
h2 {
  font-size: clamp(1.72rem, 3vw, 2.72rem);
  max-width: 14ch;
}
h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.48rem);
  line-height: 1.16;
}

::selection {
  background: #e7c9c4;
  color: var(--accent-dark);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}
.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.75;
}
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--muted);
  font-weight: 450;
  max-width: 42rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: -0.012em;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 18px 38px rgba(67, 34, 38, 0.18);
}
.button.primary:hover {
  background: #32191c;
}
.button.secondary {
  background: rgba(255, 250, 244, 0.78);
  border-color: var(--line);
  color: var(--accent-dark);
  box-shadow: var(--soft-shadow);
}
.button.secondary:hover {
  background: #fff;
  border-color: var(--line-strong);
}
.button.full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0.8rem auto 0;
  padding: 0.5rem 0.58rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(54, 34, 31, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(54, 34, 31, 0.13);
}
.brand strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}
.nav a,
.nav-cta.standalone {
  padding: 0.68rem 0.82rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.16s ease;
}
.nav a:hover {
  color: var(--accent-dark);
  background: rgba(170, 102, 83, 0.08);
}
.nav .nav-cta,
.nav-cta.standalone {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(67, 34, 38, 0.16);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-dark);
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}
.menu-toggle span:first-child {
  top: 16px;
}
.menu-toggle span:last-child {
  top: 26px;
}

.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 3rem;
  align-items: center;
  padding: 6.3rem 0 5.4rem;
}
.hero-copy {
  padding-top: 0.4rem;
}
.hero-copy .lead {
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}
.hero-points li {
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.6);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}
.hero-media {
  position: relative;
  min-height: 620px;
}
.image-main {
  position: absolute;
  inset: 0 0 0 auto;
  width: 82%;
  height: 100%;
  object-fit: cover;
  border-radius: 52px 52px 52px 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.hero-media::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 8%;
  width: 56%;
  height: 78%;
  border: 1px solid rgba(67, 34, 38, 0.22);
  border-radius: 52px;
  z-index: -1;
}
.image-note {
  position: absolute;
  left: 0;
  bottom: 7%;
  width: min(325px, 58%);
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}
.image-note span {
  display: block;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}
.image-note strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 2.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-band h2 {
  margin-bottom: 0;
}
.intro-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 48rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 5.5rem;
}
.problem-grid article {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  min-height: 215px;
}
.problem-grid span {
  display: block;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
}
.problem-grid p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 6rem;
}
.split-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
  min-height: 540px;
  background: var(--paper);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-copy p {
  color: var(--muted);
}
.quote-card {
  margin-top: 1rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(170, 102, 83, 0.07);
  border-radius: 0 22px 22px 0;
}
.quote-card p {
  margin: 0;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.services,
.proof-section,
.process,
.about-section,
.faq,
.contact-section {
  margin-bottom: 6rem;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 37rem;
}
.section-heading.narrow {
  display: block;
  max-width: 710px;
}
.section-heading.narrow h2 {
  margin-bottom: 1rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.service-card.featured {
  background: linear-gradient(145deg, #fffaf4, #f0d9d4);
  border-color: rgba(98, 54, 58, 0.25);
}
.service-card.soft-card {
  background: linear-gradient(145deg, #fffaf4, #eee4d6);
}
.service-card.wide {
  grid-column: span 1;
}
.service-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-meta span {
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 800;
}
.service-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 1.58rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.025em;
}
.service-card h3 {
  max-width: 14ch;
}
.service-card p {
  color: var(--muted);
}
.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: auto;
  list-style: none;
}
.service-card li {
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  grid-auto-rows: 265px;
}
.proof-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--paper);
}
.proof-gallery .large {
  grid-row: span 2;
}
.proof-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-gallery figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.9);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(54, 34, 31, 0.12);
}

.process {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.54);
  border: 1px solid var(--line);
}
.process-copy {
  padding: 0.55rem;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.process-steps article {
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(54, 34, 31, 0.05);
}
.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 700;
}
.process-steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-section {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.76), rgba(235, 219, 208, 0.65));
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.about-image img {
  width: 315px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 250, 244, 0.75);
}
.about-copy {
  max-width: 710px;
}
.about-copy p {
  color: var(--muted);
}
.signature {
  color: var(--terracotta) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem !important;
  font-style: italic;
  letter-spacing: -0.025em;
  margin-top: 0.7rem !important;
}

.faq {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 2rem;
}
.faq .section-heading {
  display: block;
  margin: 0;
}
.faq-list {
  display: grid;
  gap: 0.75rem;
}
details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: var(--soft-shadow);
  padding: 1rem 1.08rem;
}
summary {
  cursor: pointer;
  list-style: none;
  color: var(--accent-dark);
  font-weight: 750;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-size: 1.2rem;
  line-height: 1;
}
details[open] summary::after {
  content: "−";
}
details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 2.3rem;
  border-radius: var(--radius-lg);
  background: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-section h2,
.contact-section .eyebrow {
  color: #fff;
}
.contact-section .eyebrow::before {
  background: #fff;
}
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 43rem;
}
.contact-card {
  padding: 1.1rem;
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.75rem;
}
.contact-card .secondary {
  background: #fff;
  color: var(--accent-dark);
}
.contact-card .primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
}
.contact-hint {
  margin: 0.35rem 0 0 !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-footer {
  padding: 0 0 2rem;
}
.footer-inner {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.footer-inner address {
  font-style: normal;
}
.footer-inner nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-inner nav a {
  padding: 0.42rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.65);
  font-weight: 650;
}
.footer-inner a:hover {
  color: var(--accent-dark);
  border-color: var(--line-strong);
}

.legal-page {
  padding: 6rem 0;
}
.legal-page h1 {
  max-width: 12ch;
}
.legal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.legal-content article {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.legal-content h2 {
  font-size: 1.35rem;
  max-width: none;
}
.legal-content p {
  color: var(--muted);
}
.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .hero,
  .intro-band,
  .split-section,
  .section-heading,
  .process,
  .about-section,
  .faq,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 2rem;
  }
  .hero-media {
    min-height: 560px;
  }
  .intro-band {
    align-items: start;
  }
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner nav {
    justify-content: flex-start;
  }
  .about-image img {
    width: 250px;
    margin: auto;
  }
  .faq .section-heading {
    margin-bottom: 0.5rem;
  }
  .proof-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .proof-gallery .large {
    grid-row: span 1;
  }
  .legal-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .site-header {
    top: 0.55rem;
    border-radius: 26px;
  }
  .brand small {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 0.82rem 0.92rem;
  }
  .nav .nav-cta {
    text-align: center;
  }
}
@media (max-width: 760px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }
  .hero-media {
    min-height: 440px;
  }
  .image-main {
    width: 92%;
    border-radius: 38px 38px 38px 12px;
  }
  .hero-media::before {
    display: none;
  }
  .image-note {
    width: 72%;
    bottom: 1rem;
  }
  .intro-band,
  .process,
  .about-section,
  .contact-section {
    padding: 1.25rem;
    border-radius: 30px;
  }
  .problem-grid,
  .service-list,
  .process-steps,
  .proof-gallery {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .services,
  .proof-section,
  .process,
  .about-section,
  .faq,
  .contact-section,
  .split-section {
    margin-bottom: 4.2rem;
  }
  .split-image {
    min-height: 360px;
  }
  .split-copy {
    padding: 1.45rem;
    border-radius: 30px;
  }
  .proof-gallery {
    grid-auto-rows: 285px;
  }
  .service-card {
    min-height: auto;
  }
  .section-heading {
    gap: 0.25rem;
  }
  .section-heading p:last-child {
    margin-top: 0.35rem;
  }
  .footer-inner {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .section-shell {
    width: min(var(--max), calc(100% - 1.15rem));
  }
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }
  h2 {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero-points li {
    width: 100%;
    text-align: center;
  }
  .hero-media {
    min-height: 380px;
  }
  .image-note {
    width: 84%;
    padding: 1rem;
  }
  .service-meta {
    display: block;
  }
  .service-meta strong {
    display: block;
    margin-top: 0.3rem;
  }
  .contact-section {
    padding: 1.1rem;
  }
  .legal-page {
    padding: 4rem 0;
  }
}

/* ============ v2 editorial / commercial layer ============ */
:root {
  --terracotta-ink: #8c4a37;
}
.eyebrow,
.service-meta span,
.problem-grid span,
.image-note span {
  color: var(--terracotta-ink);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.nav a.is-active {
  color: var(--accent-dark);
  background: rgba(170, 102, 83, 0.1);
}
.nav .nav-cta.is-active {
  color: #fff;
  background: var(--accent-dark);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .button:hover {
    transform: none;
  }
}

.page-head {
  padding: 5rem 0 3rem;
  max-width: 58rem;
}
.page-head .lead {
  margin-bottom: 1.6rem;
}

.hero-support {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  border-left: 2px solid rgba(170, 102, 83, 0.45);
  padding-left: 1rem;
  margin-bottom: 1.6rem;
}

.start-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  padding: 2.6rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  margin-bottom: 5rem;
}
.start-band h2 {
  margin-bottom: 0;
}
.start-band-body p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 46rem;
}
.start-claim {
  color: var(--accent-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 1.2rem 0 0 !important;
}

.result-section {
  margin-bottom: 5.5rem;
}
.result-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}
.result-list li {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.result-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}
.result-list p {
  margin: 0;
  color: var(--muted);
}

.expertise-section {
  margin-bottom: 5.5rem;
}
.editorial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}
.editorial-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.editorial-list .idx {
  color: var(--terracotta-ink);
  font-weight: 800;
  font-size: 0.85rem;
  padding-top: 0.4rem;
  letter-spacing: 0.06em;
}
.editorial-list h2,
.editorial-list h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  max-width: 22ch;
}
.editorial-list p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.route-list {
  display: grid;
  gap: 0;
  margin-bottom: 1.6rem;
}
.route-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2.4rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line-strong);
}
.route-block:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.route-block h3 {
  margin-bottom: 0.9rem;
  max-width: 16ch;
}
.route-price {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.route-price-value {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-dark);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.route-price-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}
.route-lede {
  color: var(--ink);
  font-size: 1.06rem;
  max-width: 52ch;
}
.route-meta-line {
  color: var(--muted);
  max-width: 56ch;
}
.route-meta-line span {
  display: block;
  color: var(--terracotta-ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.scope-list,
.exclude-list {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  margin: 0 0 1rem;
}
.scope-list li,
.exclude-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 2px;
  background: var(--terracotta-ink);
  border-radius: 2px;
}
.exclude-list li {
  color: var(--soft);
}
.exclude-list li::before {
  content: "niet";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--soft);
}
.exclude-list li {
  padding-left: 2.6rem;
}
.route-cta {
  margin-top: 0.4rem;
}
.route-compare {
  margin-top: 1.2rem;
}

.fit-section {
  margin-top: 1rem;
}
.note-split {
  margin-top: 3rem;
}
.process-section {
  margin-bottom: 5.5rem;
}
.path-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 2.5rem;
  margin-bottom: 1.4rem;
}
.path-list li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 2.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.path-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  color: var(--terracotta-ink);
  font-size: 0.82rem;
  font-weight: 800;
}
.path-note {
  color: var(--muted);
  max-width: 52rem;
  font-size: 0.96rem;
}

.closing-band {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 0;
  margin: 2rem 0 5rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.closing-band h2 {
  margin: 0;
  max-width: 20ch;
}

@media (max-width: 1040px) {
  .start-band,
  .route-block,
  .closing-band {
    grid-template-columns: 1fr;
  }
  .result-list,
  .path-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .page-head {
    padding: 3.2rem 0 2rem;
  }
  .route-block {
    padding: 1.8rem 0;
    gap: 1.2rem;
  }
  .editorial-list > li {
    gap: 1rem;
    grid-template-columns: auto 1fr;
  }
}

/* ============ v2.1 correction layer: rustiger ritme, minder pill ============ */
.button {
  border-radius: 8px 8px 14px 8px;
  padding: 0.82rem 1.25rem;
}
.button:hover {
  transform: none;
}
.button.primary {
  box-shadow: none;
}
.button.secondary {
  box-shadow: none;
}
.site-header {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.92);
}
.nav a,
.nav-cta.standalone {
  border-radius: 6px;
}
.nav .nav-cta,
.nav-cta.standalone {
  border-radius: 8px 8px 14px 8px;
  box-shadow: none;
}
.nav a.is-active {
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--terracotta-ink);
}
.nav .nav-cta.is-active {
  box-shadow: none;
}
.menu-toggle {
  border-radius: 8px;
}
.image-note {
  border-radius: 4px 4px 18px 4px;
  box-shadow: none;
  padding: 1rem 1.1rem;
}
.image-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--accent-dark);
}
.proof-gallery figcaption {
  border-radius: 4px;
  box-shadow: none;
}

/* Compacte routeweergave op de homepage */
.route-block-compact {
  grid-template-columns: 0.62fr 1.38fr;
  gap: 1.8rem;
  padding: 1.6rem 0;
}
.route-block-compact h3 {
  margin-bottom: 0.5rem;
}
.route-block-compact .route-price-value {
  font-size: 1.65rem;
}
.route-block-compact .route-lede {
  font-size: 1rem;
  max-width: 56ch;
}
.route-block-compact .route-meta-line {
  margin-bottom: 0;
}
.route-boundary {
  margin: 0.2rem 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(170, 102, 83, 0.45);
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 56ch;
}
.route-compare {
  margin-top: 1.4rem;
}
.hero {
  padding: 5rem 0 4.2rem;
}
.services {
  margin-bottom: 4.5rem;
}
.result-section,
.expertise-section {
  margin-bottom: 4.5rem;
}

/* Footer: lager en rustiger */
.site-footer {
  padding: 0 0 1.4rem;
}
.footer-inner {
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem 2rem;
  align-items: center;
  padding: 1.15rem 0;
  font-size: 0.88rem;
}
.footer-inner strong {
  font-size: 1.05rem;
}
.footer-id span {
  color: var(--soft);
}
.footer-inner address {
  font-style: normal;
  line-height: 1.5;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.footer-icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--muted);
  font-weight: 650;
}
.footer-icons a:hover {
  color: var(--accent-dark);
}
.footer-icons svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-icons span {
  white-space: nowrap;
}
.footer-privacy {
  color: var(--soft);
  font-weight: 650;
}
.footer-privacy:hover {
  color: var(--accent-dark);
}

@media (max-width: 1040px) {
  .route-block-compact {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-contact {
    justify-content: flex-start;
  }
}
@media (max-width: 520px) {
  .footer-icons {
    gap: 0.7rem 1rem;
  }
  .image-note {
    width: 88%;
  }
}
