:root {
  --bg: #f7f1e8;
  --bg-soft: #fbf7ef;
  --surface: #fffdf8;
  --surface-green: #e7efe7;
  --ink: #202622;
  --muted: #646b63;
  --line: #ded2c0;
  --green: #143f34;
  --green-2: #245f4f;
  --bordeaux: #7c2f3d;
  --terracotta: #b7674a;
  --gold: #c69d62;
  --shadow: 0 18px 50px rgba(31, 38, 32, 0.11);
  --shadow-soft: 0 10px 30px rgba(31, 38, 32, 0.08);
  --shadow-lift: 0 28px 80px rgba(31, 38, 32, 0.16);
  --radius: 8px;
  --max: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6efe6;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

::selection {
  background: rgba(183, 103, 74, 0.22);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.heading-accent {
  color: var(--green);
}

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

.section {
  position: relative;
  padding: 92px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-tight {
  padding-top: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--bordeaux);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(12, 24, 18, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(222, 210, 192, 0.6);
  box-shadow: 0 10px 30px rgba(31, 38, 32, 0.08);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.brand strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.1;
  transition:
    font-size 180ms ease,
    line-height 180ms ease;
}

.brand small {
  display: none;
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.nav-menu {
  position: fixed;
  inset: var(--header-height) 18px auto;
  display: none;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(20, 63, 52, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(31, 38, 32, 0.1);
  backdrop-filter: blur(12px);
}

.nav-menu.is-open {
  display: grid;
  gap: 10px;
}

.nav-menu a {
  position: relative;
  padding: 10px 8px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--green);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 4px;
  left: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .nav-menu:not(.is-open) a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.24);
}

.site-header:not(.is-scrolled) .brand {
  gap: 13px;
}

.site-header:not(.is-scrolled) .brand strong {
  font-size: clamp(1.16rem, 2.8vw, 1.42rem);
  line-height: 1;
}

.site-header:not(.is-scrolled) .brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-header:not(.is-scrolled) .brand-mark {
  background: transparent;
  border-color: transparent;
  filter: brightness(0) invert(1) drop-shadow(0 1px 12px rgba(0, 0, 0, 0.22));
  opacity: 1;
}

.site-header:not(.is-scrolled) .nav-menu.is-open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
}

.site-header:not(.is-scrolled) .nav-menu.is-open a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 12px;
  place-items: center;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(222, 210, 192, 0.68);
  border-radius: var(--radius);
  color: var(--green);
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 63, 52, 0.18);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  backdrop-filter: blur(12px);
}

.site-header:not(.is-scrolled) .menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.34);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: max(680px, calc(100svh - 28px));
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 54px;
  background: #102d26;
  color: #fff;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 45, 38, 0.06) 0%, rgba(16, 45, 38, 0.02) 46%, rgba(16, 45, 38, 0.64) 100%),
    linear-gradient(90deg, rgba(16, 45, 38, 0.16), rgba(16, 45, 38, 0.01) 44%, rgba(16, 45, 38, 0.12));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0), rgba(247, 241, 232, 0.24));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(max(680px, calc(100svh - 28px)) - var(--header-height) - 106px);
  align-items: flex-end;
}

.hero-copy {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.26);
}

.hero-lede {
  max-width: 770px;
  margin-inline: auto;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.26);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 63, 52, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-2);
  box-shadow: 0 16px 34px rgba(20, 63, 52, 0.24);
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.76);
  border-color: var(--line);
  color: var(--green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(20, 63, 52, 0.35);
  background: var(--surface);
}

.hero .btn-primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #fffdf8;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.84);
}

.reassurance {
  max-width: 570px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero-flow {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 28px;
}

.hero-flow span {
  position: relative;
  padding: 12px 14px 12px 38px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(222, 210, 192, 0.82);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(31, 38, 32, 0.05);
}

.hero-flow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 11px;
  height: 11px;
  background: var(--terracotta);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 63, 52, 0), rgba(20, 63, 52, 0.14));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 58% center;
}

.visibility-card {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: min(300px, calc(100% - 32px));
  padding: 16px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(31, 38, 32, 0.16);
  backdrop-filter: blur(14px);
}

.visibility-card span {
  color: var(--bordeaux);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visibility-card strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.05;
}

.visibility-card small {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-note {
  z-index: 2;
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: min(340px, calc(100% - 32px));
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.2;
  box-shadow: 0 14px 40px rgba(31, 38, 32, 0.14);
}

.split {
  display: grid;
  gap: 28px;
}

.image-split {
  align-items: center;
}

.image-frame {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(222, 210, 192, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.problem-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.mini-card,
.option-card,
.proof-card,
.proof-metric,
.process-grid article {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(222, 210, 192, 0.68);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 38, 32, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.mini-card:hover,
.option-card:hover,
.proof-card:hover,
.proof-metric:hover,
.process-grid article:hover {
  border-color: rgba(20, 63, 52, 0.18);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.mini-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.mini-card h3 {
  margin: 0;
  font-size: 1rem;
}

.icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  background: linear-gradient(135deg, var(--surface-green), #fbf7ef);
  border-radius: var(--radius);
  color: var(--green);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-search::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.icon-search::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(8px, 8px) rotate(45deg);
}

.icon-camera::before {
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-camera::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-calendar::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-calendar::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(-6px);
}

.icon-pin::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-pin::after {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.solution {
  background:
    linear-gradient(180deg, rgba(231, 239, 231, 0.45), rgba(247, 241, 232, 0)),
    transparent;
}

.flow-band {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.6), rgba(231, 239, 231, 0.56)),
    transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--green);
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.pillar-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(222, 210, 192, 0.9);
}

.pillar span,
.process-grid span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1;
}

.pillar p,
.process-grid p,
.option-card p,
.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-band {
  overflow: hidden;
  background:
    linear-gradient(135deg, #102d26 0%, var(--green) 48%, #6b2d3a 100%);
  color: #fff;
}

.offer-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.offer-band > .shell {
  position: relative;
  z-index: 1;
}

.offer-band .section-label,
.offer-band .price,
.offer-band h2,
.offer-band h3 {
  color: #fff;
}

.offer-band .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  overflow: hidden;
  background: rgba(251, 247, 239, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.price-featured {
  background: #fffdf8;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.price-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--green-2));
}

.plan-label {
  width: max-content;
  max-width: 100%;
  margin: 0 0 2px;
  padding: 8px 10px;
  background: rgba(20, 63, 52, 0.08);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-top {
  display: grid;
  gap: 14px;
}

.price-top p {
  margin: 0;
  color: var(--muted);
}

.price-card h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.commitment {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  background: rgba(231, 239, 231, 0.92);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
}

.price span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #414940;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.not-included {
  padding: 16px;
  background: linear-gradient(135deg, rgba(124, 47, 61, 0.08), rgba(183, 103, 74, 0.08));
  border: 1px solid rgba(124, 47, 61, 0.14);
  border-radius: var(--radius);
  color: #56463e;
}

.option-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.option-card,
.proof-card,
.proof-metric {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.option-card::before,
.proof-card::before,
.proof-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--terracotta));
  opacity: 0;
  transition: opacity 180ms ease;
}

.option-card:hover::before,
.proof-card:hover::before,
.proof-metric:hover::before {
  opacity: 1;
}

.option-price {
  margin-bottom: 12px;
  color: var(--bordeaux);
  font-weight: 900;
}

.audience-band {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(231, 239, 231, 0.42)),
    transparent;
}

.client-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.client-grid span {
  padding: 15px 16px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(222, 210, 192, 0.68);
  border-radius: var(--radius);
  color: #414940;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(31, 38, 32, 0.04);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.client-grid span:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.funnel-section {
  align-items: center;
}

.funnel {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: funnel;
  list-style: none;
}

.funnel li {
  position: relative;
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: 14px 18px 14px 54px;
  background: var(--surface);
  border: 1px solid rgba(222, 210, 192, 0.7);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(31, 38, 32, 0.07);
  counter-increment: funnel;
}

.funnel li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 27px;
  width: 2px;
  height: 10px;
  background: rgba(20, 63, 52, 0.24);
}

.funnel li::before {
  content: counter(funnel);
  position: absolute;
  left: 14px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
}

.method {
  background:
    linear-gradient(180deg, #fffaf1, rgba(255, 253, 248, 0.96)),
    #fffaf1;
}

.method .section-head p:not(.section-label) {
  max-width: 720px;
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 22px;
}

.process-grid h3 {
  margin-top: 18px;
}

.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(183, 103, 74, 0.12);
  border-radius: 50%;
  font-size: 1.05rem;
}

.reverse .image-frame {
  order: -1;
}

.quiet-quote {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--bordeaux);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.proof {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.52), rgba(231, 239, 231, 0.28)),
    transparent;
}

.proof-head {
  max-width: 980px;
}

.proof-layout {
  display: grid;
  gap: 18px;
}

.proof-metrics {
  display: grid;
  gap: 14px;
}

.proof-metric {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 182px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(231, 239, 231, 0.42)),
    var(--surface);
}

.metric-number {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 500;
  line-height: 0.92;
}

.proof-metric h3 {
  margin-bottom: 0;
  color: var(--green);
  font-size: 1rem;
}

.proof-media-card {
  display: grid;
  gap: 18px;
  padding: 0;
  background: rgba(255, 253, 248, 0.9);
}

.proof-media-card img {
  width: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
  border-bottom: 1px solid rgba(222, 210, 192, 0.7);
}

.proof-media-card > div {
  padding: 0 22px 22px;
}

.proof-kicker {
  margin-bottom: 10px;
  color: var(--bordeaux);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.proof-before-after {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    linear-gradient(145deg, rgba(20, 63, 52, 0.05), rgba(183, 103, 74, 0.07)),
    rgba(255, 253, 248, 0.9);
}

.comparison-grid {
  display: grid;
  gap: 16px;
}

.comparison-grid > div {
  padding-top: 14px;
  border-top: 1px solid rgba(222, 210, 192, 0.82);
}

.comparison-grid h3 {
  color: var(--green);
}

.comparison-grid ul,
.tracking-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li,
.tracking-list li {
  position: relative;
  padding-left: 20px;
  color: #414940;
  font-size: 0.95rem;
}

.comparison-grid li::before,
.tracking-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

.tracking-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(20, 63, 52, 0.96), rgba(36, 95, 79, 0.94)),
    var(--green);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.tracking-panel h3,
.tracking-panel .proof-kicker {
  color: #fff;
}

.tracking-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.tracking-list {
  gap: 10px 18px;
}

.tracking-list li {
  color: rgba(255, 255, 255, 0.9);
}

.tracking-list li::before {
  background: var(--gold);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid rgba(222, 210, 192, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(31, 38, 32, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(20, 63, 52, 0.2);
  box-shadow: var(--shadow-soft);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--green);
  font-weight: 850;
  cursor: pointer;
}

summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--surface-green);
  border-radius: 50%;
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #102d26, var(--green) 58%, #7c2f3d);
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.07) 1px, transparent 1px);
  background-size: 72px 100%;
  opacity: 0.26;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.contact-copy {
  max-width: 610px;
}

.contact-copy .section-label,
.contact-copy .quiet-quote,
.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-direct-link {
  display: inline-grid;
  gap: 2px;
  max-width: 100%;
  margin: 6px 0 22px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-direct-link:hover,
.contact-direct-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}

.contact-direct-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-direct-link strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.96);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  gap: 7px;
}

.two-col {
  gap: 16px;
}

label {
  color: #354039;
  font-size: 0.87rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 203, 184, 0.9);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 63, 52, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  padding: 34px 0;
  background: #102d26;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 12px;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: #fff;
}

.reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

@media (min-width: 560px) {
  .shell {
    width: min(100% - 52px, var(--max));
  }

  .brand small {
    display: block;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-grid,
  .option-grid,
  .proof-grid,
  .proof-metrics,
  .comparison-grid,
  .process-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  :root {
    --header-height: 82px;
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    min-height: max(720px, calc(100svh - 30px));
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 64px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    text-align: center;
  }

  .nav-menu {
    position: static;
    display: flex;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    gap: 2px;
    justify-self: start;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-height: 40px;
    align-items: center;
    padding: 10px 14px;
    background: var(--green);
    border-radius: 999px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 850;
    transition:
      background 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .site-header:not(.is-scrolled) .nav-cta {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: var(--green-2);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
  }

  .site-header:not(.is-scrolled) .nav-cta:hover,
  .site-header:not(.is-scrolled) .nav-cta:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  }

  .hero-grid {
    min-height: calc(max(720px, calc(100svh - 30px)) - var(--header-height) - 122px);
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-media {
    min-height: min(64vh, 640px);
  }

  .hero-media img {
    min-height: min(64vh, 640px);
  }

  .split {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: 56px;
  }

  .image-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .reverse .image-frame {
    order: 0;
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mini-card {
    display: grid;
    align-content: start;
    min-height: 154px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: start;
  }

  .price-card {
    padding: 34px;
  }

  .price-top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

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

  .option-card:nth-child(2),
  .option-card:nth-child(3) {
    min-height: 260px;
  }

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .funnel-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  }

  .process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -8px;
    width: 16px;
    height: 2px;
    background: rgba(20, 63, 52, 0.2);
  }

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

  .proof-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .proof-metrics,
  .tracking-panel {
    grid-column: 1 / -1;
  }

  .proof-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-media-card,
  .proof-before-after {
    grid-column: span 4;
  }

  .proof-media-card img {
    min-height: 250px;
  }

  .tracking-panel {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    align-items: center;
  }

  .tracking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 0.78fr);
    align-items: start;
  }

  .contact-form {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1240px) {
  .nav-menu a {
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.84fr);
  }

  .hero h1 {
    font-size: 5.4rem;
  }
}

/* Editorial refinement: extend the hero's clean brand language across the page. */
main > .section:not(.hero) {
  border-top: 0;
}

main > .section:not(.hero)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -62px;
  left: 50%;
  width: 100vw;
  height: clamp(68px, 9vw, 118px);
  pointer-events: none;
  background-image: url("assets/separateur-courbe-vert.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.74;
  transform: translateX(-50%);
}

.section-label {
  gap: 14px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-label::before {
  width: 46px;
}

.section-head {
  max-width: 1020px;
  margin-bottom: 42px;
}

.section-head p:not(.section-label),
.section-text {
  max-width: 740px;
  color: #555f56;
  font-size: 1.08rem;
}

.section-head h2,
.split h2 {
  max-width: 980px;
}

.image-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-frame img {
  min-height: 430px;
  border-radius: 0;
}

.problem {
  background: #f6efe6;
}

.problem-grid {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.18);
}

.mini-card,
.option-card,
.proof-card,
.proof-metric,
.process-grid article {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mini-card:hover,
.option-card:hover,
.proof-card:hover,
.proof-metric:hover,
.process-grid article:hover {
  border-color: rgba(20, 63, 52, 0.18);
  box-shadow: none;
  transform: none;
}

.mini-card {
  min-height: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.14);
}

.mini-card h3 {
  font-size: 1.08rem;
  text-transform: none;
}

.icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 253, 248, 0.34);
  border: 1px solid rgba(20, 63, 52, 0.18);
  color: var(--green);
}

.solution,
.flow-band,
.audience-band,
.method,
.proof {
  background: transparent;
}

.solution .image-split,
.about .image-split {
  align-items: stretch;
}

.pillar-list {
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(20, 63, 52, 0.15);
}

.pillar {
  padding: 24px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
}

.pillar span,
.process-grid span {
  color: var(--green);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.funnel {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.16);
}

.funnel li {
  min-height: 72px;
  padding: 18px 0 18px 58px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.13);
  border-radius: 0;
  box-shadow: none;
}

.funnel li:not(:last-child)::after {
  display: none;
}

.funnel li::before {
  left: 0;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(20, 63, 52, 0.32);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.offer-band {
  background:
    linear-gradient(180deg, rgba(16, 45, 38, 0.96), rgba(20, 63, 52, 0.98)),
    var(--green);
  color: #fff;
}

.offer-band::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
}

.offer-band .section-head p:not(.section-label) {
  color: #fff;
}

.pricing-grid {
  gap: 18px;
}

.price-card {
  gap: 24px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.price-featured {
  background: #fffdf8;
  box-shadow: none;
}

.price-featured::before {
  height: 1px;
  background: rgba(20, 63, 52, 0.22);
}

.plan-label,
.commitment {
  padding: 0;
  background: transparent;
  border-radius: 0;
  letter-spacing: 0.08em;
}

.price-card h3 {
  color: var(--green);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--green);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.9;
}

.price span {
  font-weight: 700;
}

.offer-band .price {
  color: var(--green);
}

.offer-band .price span {
  color: #596259;
}

.offer-band .price span:first-child {
  color: var(--green);
}

.check-list {
  gap: 12px;
}

.check-list li::before {
  top: 0.6em;
  width: 10px;
  height: 6px;
}

.not-included {
  background: rgba(183, 103, 74, 0.08);
  border-color: rgba(183, 103, 74, 0.18);
  border-radius: 0;
}

.option-grid {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.16);
}

.option-card {
  padding: 26px 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  will-change: transform;
}

.option-card::before,
.proof-card::before,
.proof-metric::before {
  display: none;
}

.option-card h3,
.proof-card h3,
.proof-metric h3,
.process-grid h3 {
  color: var(--green);
  font-size: 1.04rem;
}

.option-price {
  color: var(--terracotta);
}

.option-card:hover {
  background: rgba(255, 253, 248, 0.78);
  border-bottom-color: rgba(20, 63, 52, 0.22);
  box-shadow: 0 18px 44px rgba(31, 38, 32, 0.1);
  transform: translateY(-6px);
}

.option-card:hover .option-price {
  color: var(--green);
}

.client-grid {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.16);
}

.client-grid span {
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.client-grid span:hover {
  background: transparent;
  color: var(--green);
  transform: none;
}

.process-grid {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.16);
}

.process-grid article {
  min-height: 0;
  padding: 26px 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
}

.process-grid h3 {
  margin-top: 16px;
}

.process-grid span {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(20, 63, 52, 0.28);
  border-radius: 50%;
}

.quiet-quote {
  color: var(--green);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.proof-layout {
  gap: 22px;
}

.proof-metrics {
  gap: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.16);
}

.proof-metric {
  min-height: 0;
  padding: 26px 0;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
}

.metric-number {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.15rem;
  font-weight: 900;
}

.proof-media-card {
  gap: 0;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
}

.proof-media-card img {
  max-height: none;
  border-bottom: 1px solid rgba(20, 63, 52, 0.12);
}

.proof-media-card > div {
  padding: 24px;
}

.proof-before-after {
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
}

.tracking-panel {
  background: var(--green);
  border-radius: 0;
  box-shadow: none;
}

details {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(20, 63, 52, 0.14);
  border-radius: 0;
  box-shadow: none;
}

details:last-child {
  border-bottom: 1px solid rgba(20, 63, 52, 0.14);
}

details[open] {
  border-color: rgba(20, 63, 52, 0.24);
  box-shadow: none;
}

summary {
  padding: 22px 0;
  color: var(--green);
  font-size: 1.02rem;
}

summary::after {
  background: transparent;
  border: 1px solid rgba(20, 63, 52, 0.22);
}

details p {
  padding: 0 0 22px;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(20, 63, 52, 0.96), rgba(16, 45, 38, 1)),
    var(--green);
}

.contact-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
}

.contact-form {
  background: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  box-shadow: none;
}

input,
textarea {
  background: transparent;
  border-color: rgba(20, 63, 52, 0.18);
  border-radius: 0;
}

.footer {
  background: #0c1d18;
}

@media (min-width: 560px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .mini-card,
  .option-card,
  .proof-metric,
  .client-grid span {
    padding-right: 18px;
  }
}

@media (min-width: 1080px) {
  .section {
    padding: 118px 0;
  }

  .section-tight {
    padding-top: 90px;
  }

  h2 {
    font-size: 4rem;
  }

  .split h2 {
    font-size: 3.35rem;
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid rgba(20, 63, 52, 0.12);
  }

  .mini-card,
  .client-grid span,
  .option-card,
  .proof-metric,
  .process-grid article {
    padding-inline: 22px;
    border-right: 1px solid rgba(20, 63, 52, 0.12);
  }

  .option-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid rgba(20, 63, 52, 0.12);
  }

  .client-grid {
    border-left: 1px solid rgba(20, 63, 52, 0.12);
  }

  .process-grid {
    border-left: 1px solid rgba(20, 63, 52, 0.12);
  }

  .process-grid article {
    min-height: 260px;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .proof-metrics {
    border-left: 1px solid rgba(20, 63, 52, 0.12);
  }

  .price-card {
    padding: 42px;
  }

  .price {
    font-size: 4.4rem;
  }

  .image-frame img {
    min-height: 560px;
  }
}

/* Requested refinements: proof, FAQ, cards, footer and rotating audience word. */
.rotating-word {
  display: inline-block;
  min-width: 11ch;
  color: var(--green);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.rotating-word.is-changing {
  opacity: 0;
  transform: translateY(0.22em);
}

.price-card {
  border-radius: 18px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pricing-grid {
  align-items: stretch;
}

.price-note,
.plan-conclusion {
  margin: -8px 0 0;
  color: #5d665e;
  font-size: 0.92rem;
  line-height: 1.5;
}

.plan-conclusion {
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 63, 52, 0.13);
  color: var(--green);
  font-weight: 750;
}

.price-card .btn {
  margin-top: auto;
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.price-featured:hover,
.price-featured:focus-within {
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.24);
}

.offer-flexibility {
  margin-top: 22px;
}

.offer-flexibility p {
  margin: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.65;
  backdrop-filter: blur(12px);
}

.price-card .btn-secondary {
  border-color: rgba(20, 63, 52, 0.2);
}

.option-grid {
  gap: 16px;
  border-top: 0;
  border-left: 0;
}

.option-card {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.13);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(31, 38, 32, 0.06);
}

.option-card:hover {
  background: #fffdf8;
  border-color: rgba(20, 63, 52, 0.24);
  box-shadow: 0 24px 58px rgba(31, 38, 32, 0.12);
  transform: translateY(-7px);
}

.faq h2 {
  line-height: 1.08;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  width: 30px;
  height: 30px;
  align-self: center;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  border: 1px solid rgba(20, 63, 52, 0.24);
  border-radius: 50%;
}

details[open] summary::after {
  content: "";
  background: linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
}

.contact-section::before {
  display: none;
}

.footer {
  padding: 54px 0;
  background: #0c1d18;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
}

.footer p {
  margin: 0;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact a {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact strong {
  color: #fff;
  font-size: 0.96rem;
}

.footer-note {
  color: #fff;
  font-weight: 850;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.05fr 1.25fr 0.85fr;
  }
}

@media (min-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-card {
    padding: 30px;
  }

  .price-top {
    grid-template-columns: 1fr;
  }

  .pricing-grid .price {
    font-size: clamp(3rem, 4vw, 3.85rem);
  }
}

/* Clean section pass: readable mobile menu, no page separators, refined footer/options/stats. */
main > .section:not(.hero)::after {
  display: none;
}

@media (max-width: 1079px) {
  .nav-menu.is-open,
  .site-header:not(.is-scrolled) .nav-menu.is-open {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.96);
    border-color: rgba(20, 63, 52, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(12, 29, 24, 0.18);
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open a,
  .site-header:not(.is-scrolled) .nav-menu.is-open a {
    padding: 13px 14px;
    color: var(--green);
    text-shadow: none;
  }

  .nav-menu.is-open a::after {
    right: 14px;
    left: 14px;
  }
}

.problem {
  background: #f6efe6;
}

.problem-intro {
  display: grid;
  max-width: 980px;
  gap: 10px;
}

.problem-intro h2 {
  margin-bottom: 6px;
}

.problem-intro .section-text {
  max-width: 760px;
}

.problem-grid {
  gap: 16px;
  margin-top: 34px;
  border: 0;
}

.mini-card {
  min-height: 0;
  align-items: start;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(31, 38, 32, 0.06);
}

.mini-card p {
  margin: 0;
  color: #5b645b;
  font-size: 0.95rem;
}

.mini-card:hover {
  border-color: rgba(20, 63, 52, 0.2);
  box-shadow: 0 24px 60px rgba(31, 38, 32, 0.1);
  transform: translateY(-5px);
}

.icon {
  border-radius: 14px;
  background: rgba(231, 239, 231, 0.72);
}

.options-section {
  background: #fffdf8;
}

.options-section .section-head {
  max-width: 900px;
}

.option-grid {
  gap: 18px;
  border: 0;
}

.option-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(31, 38, 32, 0.07);
}

.option-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.option-card p {
  margin: 0;
}

.option-tag {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  background: rgba(20, 63, 52, 0.08);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.option-price {
  color: var(--terracotta);
  font-size: 1.05rem;
}

.option-card:hover {
  background: #fff;
  border-color: rgba(20, 63, 52, 0.24);
  box-shadow: 0 28px 68px rgba(31, 38, 32, 0.13);
  transform: translateY(-7px);
}

.audience-band {
  background: #f6efe6;
}

.audience-focus {
  display: grid;
  gap: 18px;
  max-width: 1060px;
  overflow: hidden;
}

.audience-focus h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.9;
}

.audience-focus .section-text {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.rotating-word {
  min-width: min(100%, 12ch);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.proof {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(231, 239, 231, 0.82), transparent 34%),
    #fffdf8;
}

.proof-head {
  margin-bottom: 26px;
}

.proof-head h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.google-stats {
  display: grid;
  gap: 18px;
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 286px;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 63, 52, 0.13);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(31, 38, 32, 0.07);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--terracotta));
  opacity: 0;
  transition: opacity 260ms ease;
}

.stat-card .metric-number {
  color: var(--green);
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.82;
}

.stat-card h3 {
  max-width: 520px;
  margin: 0;
  color: var(--green);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.12;
  text-transform: none;
}

.stat-card p {
  margin: 0;
  color: #596259;
  font-size: 1rem;
}

.stat-card.is-active {
  border-color: rgba(20, 63, 52, 0.34);
  box-shadow: 0 30px 78px rgba(31, 38, 32, 0.15);
  transform: translateY(-8px);
}

.stat-card.is-active::before {
  opacity: 1;
}

.stat-source {
  margin-top: 18px;
  color: #6a7169;
  font-size: 0.88rem;
}

.stat-source a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  border-radius: 24px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
}

input,
textarea {
  border-radius: 14px;
}

.footer {
  padding: 64px 0;
  background:
    linear-gradient(180deg, #0c1d18, #07120f),
    #0c1d18;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.footer-logo {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}

.footer-logo img {
  width: 106px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.footer-links a {
  display: grid;
  grid-template-columns: 38px minmax(72px, 0.38fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  color: inherit;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links strong {
  color: #fff;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

@media (min-width: 700px) {
  .google-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .footer-socials {
    justify-self: end;
    width: min(100%, 390px);
  }

  .footer-links:first-child {
    width: min(100%, 360px);
  }
}

@media (min-width: 1080px) {
  .problem-grid {
    border-left: 0;
  }

  .mini-card {
    display: flex;
    min-height: 178px;
    align-items: flex-start;
  }

  .option-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-left: 0;
  }

  .option-card:nth-child(2),
  .option-card:nth-child(3) {
    min-height: 100%;
  }
}

/* Blog pages */
.subpage {
  background: #f6efe6;
}

.subpage .site-header,
.subpage .site-header:not(.is-scrolled) {
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(222, 210, 192, 0.6);
  box-shadow: 0 10px 30px rgba(31, 38, 32, 0.08);
}

.subpage .site-header:not(.is-scrolled) .brand,
.subpage .site-header:not(.is-scrolled) .nav-menu:not(.is-open) a {
  color: var(--ink);
  text-shadow: none;
}

.subpage .site-header:not(.is-scrolled) .brand small {
  color: var(--muted);
}

.subpage .site-header:not(.is-scrolled) .brand-mark {
  filter: none;
}

.subpage .site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(222, 210, 192, 0.68);
  color: var(--green);
}

@media (min-width: 1080px) {
  .subpage .site-header:not(.is-scrolled) .nav-cta {
    background: var(--green);
    border-color: transparent;
    color: #fff;
  }
}

.blog-hero,
.article-hero {
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(246, 239, 230, 0.98)),
    #f6efe6;
}

.blog-hero-grid {
  display: grid;
  gap: 28px;
  align-items: end;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(3.6rem, 8vw, 7rem);
  text-transform: uppercase;
}

.blog-hero p,
.article-hero p {
  max-width: 720px;
  color: #4f594f;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.blog-hero-note {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(31, 38, 32, 0.07);
}

.blog-hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.1rem;
}

.blog-section {
  padding-top: 34px;
  background: #f6efe6;
}

.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(31, 38, 32, 0.07);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(20, 63, 52, 0.24);
  box-shadow: 0 28px 70px rgba(31, 38, 32, 0.13);
  transform: translateY(-6px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(20, 63, 52, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(31, 38, 32, 0.08);
  transition: transform 280ms ease;
}

.blog-card:hover .blog-card-image,
.blog-card:focus-within .blog-card-image {
  transform: scale(1.025);
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.blog-card p {
  margin: 0;
  color: #596259;
}

.blog-card a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
}

.blog-card a::after,
.article-back::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.article-back::before {
  order: -1;
}

.article-layout {
  display: grid;
  gap: 34px;
  padding-top: 38px;
}

.article-cover {
  width: min(100%, 1040px);
  aspect-ratio: 16 / 8.8;
  margin-top: 34px;
  object-fit: cover;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.14);
  border-radius: 30px;
  box-shadow: 0 26px 72px rgba(31, 38, 32, 0.14);
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-body h3 {
  margin-top: 30px;
  color: var(--green);
  font-size: 1.28rem;
}

.article-body p,
.article-body li {
  color: #485248;
  font-size: 1.06rem;
}

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

.article-body strong {
  color: var(--green);
}

.article-aside {
  align-self: start;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(31, 38, 32, 0.07);
}

.article-aside h2 {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 1.2rem;
}

.article-aside a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(20, 63, 52, 0.12);
  color: #485248;
  font-weight: 800;
}

.article-cta {
  margin-top: 48px;
  padding: 28px;
  background: var(--green);
  border-radius: 24px;
  color: #fff;
}

.article-cta h2,
.article-cta p {
  color: #fff;
}

.article-cta .btn {
  margin-top: 10px;
  background: #fff;
  color: var(--green);
}

@media (min-width: 760px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .blog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  }

  .blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: max(610px, 100svh);
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 38px;
  }

  .hero-grid {
    min-height: calc(max(610px, 100svh) - var(--header-height) - 72px);
  }

  .hero h1 {
    max-width: 12ch;
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 8.8vw, 2.55rem);
    line-height: 1;
  }

  .hero-lede {
    max-width: 34ch;
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-actions .btn {
    width: min(100%, 320px);
    min-height: 46px;
    padding: 12px 16px;
  }

  .reassurance {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .audience-focus,
  .audience-focus h2,
  .audience-focus .section-text {
    max-width: 100%;
    min-width: 0;
  }

  .rotating-word {
    min-width: 0;
  }

  .blog-card {
    padding: 14px;
    border-radius: 20px;
  }

  .blog-card-image {
    border-radius: 16px;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
    margin-top: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.82rem, 8.6vw, 2.12rem);
  }

  .hero-lede {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
  }

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

/* Local SEO pages: pillar, about and legal pages. */
.section-text-compact {
  margin-top: -4px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.inline-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-hero-grid {
  display: grid;
  gap: 30px;
  align-items: end;
}

.about-portrait {
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: start;
  object-fit: cover;
  border: 1px solid rgba(20, 63, 52, 0.14);
  border-radius: 30px;
  box-shadow: 0 26px 72px rgba(31, 38, 32, 0.14);
}

.page-card-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 8px;
}

.page-card-grid article {
  padding: 22px;
  background: #fffdf8;
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(31, 38, 32, 0.07);
}

.page-card-grid h3 {
  margin-top: 0;
  color: var(--green);
}

.page-card-grid p {
  margin-bottom: 0;
}

.legal-body a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 14px 16px;
  background: rgba(231, 239, 231, 0.72);
  border: 1px solid rgba(20, 63, 52, 0.12);
  border-radius: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

@media (min-width: 760px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  }

  .about-portrait {
    justify-self: end;
  }

  .page-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(1.92rem, 8vw, 2.45rem);
    line-height: 1.05;
    text-transform: none;
  }

  .about-portrait {
    width: min(100%, 330px);
    border-radius: 24px;
  }

  .page-card-grid article,
  .article-aside,
  .article-cta {
    border-radius: 20px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

/* Desktop navigation comfort pass. */
@media (min-width: 1080px) {
  .nav {
    column-gap: clamp(26px, 4vw, 58px);
  }

  .nav-menu {
    gap: clamp(0px, 0.35vw, 6px);
  }

  .nav-menu a {
    padding-inline: clamp(5px, 0.52vw, 9px);
    white-space: nowrap;
  }
}
