:root {
  --forest-950: #041f18;
  --forest-900: #062a21;
  --forest-850: #0a3328;
  --forest-800: #0f3d30;
  --forest-700: #245442;
  --leaf-700: #416f35;
  --leaf-600: #54813b;
  --leaf-500: #6a9649;
  --leaf-200: #dfe9d9;
  --leaf-100: #edf3e9;
  --ink: #17221d;
  --muted: #5f6f67;
  --muted-2: #7f8b85;
  --line: #dfe5e0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #ffffff;
  --cream: #f7f5ef;
  --cream-2: #eee8dc;
  --sand: #d9c3a0;
  --sand-soft: #f1e8d8;
  --success: #3f7335;
  --danger: #9b3f36;
  --shadow-sm: 0 10px 28px rgba(4, 31, 24, 0.08);
  --shadow-md: 0 24px 60px rgba(4, 31, 24, 0.12);
  --shadow-lg: 0 42px 100px rgba(4, 31, 24, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--forest-950);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.15rem);
  max-width: 12ch;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  max-width: 14ch;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  margin-bottom: 12px;
}

h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--forest-950);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 144px) 0;
  overflow: hidden;
}

.section--tight {
  padding: clamp(62px, 7vw, 96px) 0;
}

.section--soft {
  background:
    radial-gradient(circle at 90% 8%, rgba(106, 150, 73, 0.13), transparent 27%),
    radial-gradient(circle at 6% 88%, rgba(217, 195, 160, 0.26), transparent 30%),
    var(--cream);
}

.section--sage {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.54)),
    var(--leaf-100);
}

.section--dark {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 88% 10%, rgba(106, 150, 73, 0.22), transparent 28%),
    radial-gradient(circle at 4% 92%, rgba(217, 195, 160, 0.12), transparent 25%),
    var(--forest-950);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--leaf-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.section--dark .eyebrow {
  color: #a9c88e;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

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

.small {
  font-size: 0.91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-800);
  font-weight: 750;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  transition: transform 180ms ease;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--paper);
  background: var(--forest-900);
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(6, 42, 33, 0.16);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--paper);
  background: var(--forest-700);
  border-color: var(--forest-700);
  box-shadow: 0 18px 38px rgba(6, 42, 33, 0.22);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button--secondary {
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(6, 42, 33, 0.22);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: var(--forest-900);
  background: var(--paper);
  border-color: rgba(6, 42, 33, 0.35);
}

.button--light {
  color: var(--forest-950);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--forest-950);
  background: var(--leaf-100);
  border-color: var(--leaf-100);
}

.button--ghost-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(84, 129, 59, 0.55);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(4, 31, 24, 0.06);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__type {
  display: grid;
  color: var(--forest-950);
  line-height: 1;
}

.brand__type strong {
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.brand__type span {
  margin-top: 6px;
  color: var(--forest-700);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.38em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav > a:not(.button) {
  padding: 10px 10px;
  color: #43534b;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 720;
  transition: color 150ms ease, background 150ms ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible,
.primary-nav > a[aria-current="page"]:not(.button) {
  color: var(--forest-900);
  background: var(--leaf-100);
}

.nav-cta {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.84rem;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle__lines {
  display: grid;
  gap: 5px;
}

.nav-toggle__lines span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-900);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle__lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle__lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 108px) 0 clamp(76px, 9vw, 124px);
  background:
    radial-gradient(circle at 8% 15%, rgba(106, 150, 73, 0.12), transparent 25%),
    radial-gradient(circle at 96% 90%, rgba(217, 195, 160, 0.28), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfaf6);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content .lead {
  max-width: 610px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero__note span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--success);
  background: var(--leaf-100);
  border-radius: 50%;
}

.hero__note svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-shell {
  position: relative;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 42, 33, 0.09);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
}

.hero__image-shell::after {
  position: absolute;
  z-index: -1;
  right: -42px;
  bottom: -42px;
  width: 75%;
  height: 72%;
  content: "";
  background: var(--leaf-200);
  border-radius: 42px;
  transform: rotate(-5deg);
}

.hero__image {
  width: 100%;
  border-radius: 33px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 42, 33, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card--top {
  top: 7%;
  left: -9%;
}

.floating-card--bottom {
  right: -5%;
  bottom: 9%;
}

.floating-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 14px;
}

.floating-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--forest-950);
  font-size: 0.88rem;
  line-height: 1.25;
}

.floating-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.trust-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.trust-item__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 50%;
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.trust-item strong {
  display: block;
  color: var(--forest-950);
  font-size: 0.89rem;
  line-height: 1.35;
}

.trust-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.4;
}

/* Section headings and layouts */
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading > div:first-child {
  max-width: 760px;
}

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

.section-heading p {
  max-width: 500px;
  margin-bottom: 5px;
  color: var(--muted);
}

.section-heading--center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2 {
  max-width: none;
  margin-inline: auto;
}

.section-heading--center p {
  max-width: 650px;
  margin: 20px auto 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
}

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

.visual-frame {
  position: relative;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.visual-frame img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 11px);
}

.visual-frame--dark {
  background: var(--forest-900);
  border-color: rgba(255, 255, 255, 0.1);
}

.visual-frame__badge {
  position: absolute;
  right: 7%;
  bottom: 7%;
  max-width: 230px;
  padding: 18px 20px;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 42, 33, 0.08);
  border-radius: 19px;
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
  line-height: 1.45;
}

.visual-frame__badge strong {
  display: block;
  margin-bottom: 5px;
}

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

.problem-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 7px 22px rgba(4, 31, 24, 0.04);
}

.problem-item__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 850;
}

.problem-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest-950);
  font-size: 0.97rem;
}

.problem-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.service-card,
.fit-card,
.principle-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(4, 31, 24, 0.05);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.fit-card:hover,
.principle-card:hover {
  border-color: rgba(65, 111, 53, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.icon-wrap {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 16px;
}

.icon-wrap svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.fit-card p,
.principle-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--forest-800);
  font-size: 0.86rem;
  font-weight: 780;
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 0 30px 0 0;
  counter-increment: steps;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 18px;
  left: 67px;
  height: 1px;
  content: "";
  background: var(--line-dark);
}

.step-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--forest-950);
  background: #bad09f;
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.step-number::before {
  content: counter(steps, decimal-leading-zero);
}

.process-step p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.91rem;
  line-height: 1.6;
}

/* Feature lists */
.feature-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
}

.feature-list__icon,
.check-list__icon {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--success);
  background: var(--leaf-100);
  border-radius: 50%;
}

.feature-list__icon svg,
.check-list__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
}

.feature-list strong,
.check-list strong {
  color: var(--forest-950);
}

/* Promise */
.dual-promise {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.promise-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promise-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.52;
}

.promise-card--stays {
  color: var(--paper);
  background: var(--forest-900);
}

.promise-card--stays::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, transparent 32%, rgba(106, 150, 73, 0.2));
}

.promise-card--returns {
  background: var(--sand-soft);
}

.promise-card--returns::before {
  background:
    radial-gradient(circle at 85% 13%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(145deg, transparent 35%, rgba(106, 150, 73, 0.12));
}

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

.promise-card__number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  font-weight: 900;
}

.promise-card h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.promise-card--stays h3 {
  color: var(--paper);
}

.promise-card p {
  max-width: 540px;
  margin-bottom: 0;
}

.promise-card--stays p {
  color: rgba(255, 255, 255, 0.72);
}

.promise-card--returns p {
  color: #526058;
}

/* Location */
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
}

.location-copy {
  max-width: 560px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tag {
  padding: 9px 14px;
  color: var(--forest-800);
  background: var(--leaf-100);
  border: 1px solid #d4e2ce;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 760;
}

/* Fee panel */
.fee-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(38px, 6vw, 66px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 90% 0%, rgba(106, 150, 73, 0.25), transparent 27%),
    var(--forest-950);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.fee-panel h2,
.fee-panel h3 {
  color: var(--paper);
}

.fee-number {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 15px;
  color: var(--paper);
  font-weight: 850;
  line-height: 0.86;
}

.fee-number strong {
  font-size: clamp(4.8rem, 11vw, 8.4rem);
  letter-spacing: -0.07em;
}

.fee-number span {
  margin-top: 11px;
  color: #b8d29f;
  font-size: 1.35rem;
  font-weight: 800;
}

.fee-caption {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.fee-details {
  display: grid;
  align-content: center;
  gap: 18px;
}

.fee-detail {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.fee-detail:last-child {
  border-bottom: 0;
}

.fee-detail__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #b8d29f;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.fee-detail__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.fee-detail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 0.94rem;
}

.fee-detail p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(65, 111, 53, 0.32);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 58px 22px 24px;
  color: var(--forest-950);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--forest-800);
  border-radius: 99px;
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

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

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

/* CTA */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(38px, 6vw, 66px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 92% 18%, rgba(106, 150, 73, 0.36), transparent 26%),
    linear-gradient(135deg, var(--forest-900), var(--forest-950));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-panel::after {
  position: absolute;
  top: -60px;
  right: -30px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.035), 0 0 0 96px rgba(255, 255, 255, 0.025);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 14ch;
  margin-bottom: 15px;
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cta-panel p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 225px;
}

/* Inner page hero */
.page-hero {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0 clamp(76px, 9vw, 124px);
  background:
    radial-gradient(circle at 88% 14%, rgba(106, 150, 73, 0.16), transparent 24%),
    radial-gradient(circle at 4% 86%, rgba(217, 195, 160, 0.24), transparent 28%),
    var(--cream);
  overflow: hidden;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 8vw, 98px);
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 6.5vw, 5.8rem);
}

.page-hero__art {
  position: relative;
}

.page-hero__art img {
  width: 100%;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.page-hero__mini {
  position: absolute;
  right: -5%;
  bottom: -6%;
  max-width: 260px;
  padding: 18px 20px;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  line-height: 1.5;
}

.page-hero__mini strong {
  display: block;
  margin-bottom: 3px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--forest-800);
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--leaf-600);
}

/* Services page */
.service-band {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(32px, 6vw, 74px);
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.service-band:last-child {
  border-bottom: 1px solid var(--line);
}

.service-band__title {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.service-band__number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-band__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

.service-item {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

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

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

.notice {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--sand-soft);
  border: 1px solid #e4d5bc;
  border-radius: 20px;
}

.notice__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #7b633d;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
}

.notice__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.notice h3 {
  font-size: 1.15rem;
}

.notice p {
  color: #625a4e;
  font-size: 0.91rem;
}

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

.responsibility-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.responsibility-card--green {
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-900);
  border-color: var(--forest-900);
}

.responsibility-card--green h3,
.responsibility-card--green strong {
  color: var(--paper);
}

.responsibility-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.responsibility-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.91rem;
}

.responsibility-card li::before {
  color: var(--leaf-600);
  content: "-";
  font-weight: 900;
}

.responsibility-card--green li {
  color: rgba(255, 255, 255, 0.65);
}

.responsibility-card--green li::before {
  color: #b9d4a3;
}

/* Owners page */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fit-card__label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--leaf-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
  padding: clamp(38px, 6vw, 64px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}

.not-fit__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-fit__list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.not-fit__list span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--forest-800);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

/* How it works */
.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 920px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 46px;
  width: 2px;
  content: "";
  background: var(--line);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: start;
}

.timeline-step__number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  color: var(--forest-950);
  background: var(--leaf-100);
  border: 10px solid var(--paper);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.timeline-step__card {
  margin-left: 26px;
  padding: 30px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-step__card p {
  color: var(--muted);
}

.timeline-step__outcome {
  display: inline-flex;
  margin-top: 13px;
  padding: 7px 11px;
  color: var(--forest-800);
  background: var(--leaf-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

/* About */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-card__number {
  margin-bottom: 32px;
  color: var(--leaf-600);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.statement {
  padding: clamp(44px, 7vw, 80px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 90% 20%, rgba(106, 150, 73, 0.27), transparent 26%),
    var(--forest-950);
  border-radius: var(--radius-xl);
  text-align: center;
}

.statement blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.statement p {
  max-width: 650px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.62);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1.26fr);
  gap: clamp(46px, 8vw, 96px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.contact-points {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.contact-point__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--leaf-700);
  background: var(--leaf-100);
  border-radius: 13px;
}

.contact-point__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-point strong {
  display: block;
  margin-bottom: 2px;
  color: var(--forest-950);
  font-size: 0.92rem;
}

.contact-point span,
.contact-point a {
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-card {
  padding: clamp(28px, 5vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card__head {
  margin-bottom: 30px;
}

.contact-card__head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-card__head p {
  color: var(--muted);
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--forest-950);
  font-size: 0.84rem;
  font-weight: 760;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid #d8dfda;
  border-radius: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 12px 14px;
}

.field textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--leaf-600);
  box-shadow: 0 0 0 4px rgba(84, 129, 59, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(155, 63, 54, 0.11);
}

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

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.form-status[data-state="success"] {
  display: block;
  color: #2f5b2d;
  background: #eaf3e6;
  border: 1px solid #d3e7cb;
}

.form-status[data-state="error"] {
  display: block;
  color: #7e342e;
  background: #faebe8;
  border: 1px solid #f1d2cd;
}

/* Legal */
.prose {
  color: var(--muted);
}

.prose h2,
.prose h3 {
  max-width: none;
  margin-top: 2.3em;
}

.prose h2 {
  font-size: 2rem;
}

.prose h3 {
  font-size: 1.3rem;
}

.prose a {
  color: var(--forest-800);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose li + li {
  margin-top: 8px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--forest-950);
}

.footer-main {
  padding: 74px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(130px, 0.5fr));
  gap: clamp(32px, 6vw, 74px);
}

.footer-brand {
  max-width: 390px;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-brand__logo img {
  width: 56px;
  height: 56px;
  padding: 5px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 14px;
}

.footer-brand__logo strong,
.footer-brand__logo span {
  display: block;
}

.footer-brand__logo strong {
  color: var(--paper);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.footer-brand__logo span {
  margin-top: 5px;
  color: #a9c88e;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
}

.footer-column h3 {
  margin-bottom: 19px;
  color: var(--paper);
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  transition: color 150ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.77rem;
}

.footer-bottom__links {
  display: flex;
  gap: 18px;
}

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

/* Utility */
.only-mobile {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
.reveal[data-delay="4"] { transition-delay: 360ms; }

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

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

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 24px 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 13px 15px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 8px;
    min-height: 52px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 50px;
  }

  .floating-card--top {
    left: -3%;
  }

  .floating-card--bottom {
    right: -2%;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 24px;
  }

  .process-step:nth-child(2)::after,
  .process-step:last-child::after {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.5fr);
    gap: 36px;
  }
}

@media (max-width: 900px) {
  h1 {
    max-width: 13ch;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .location-layout,
  .fee-panel,
  .not-fit,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 60px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .floating-card--top {
    left: 2%;
  }

  .floating-card--bottom {
    right: 2%;
  }

  .split--reverse > :first-child,
  .split--reverse > :last-child {
    order: initial;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    max-width: 650px;
    margin-top: 22px;
  }

  .page-hero__art {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .service-band__title {
    position: static;
  }

  .fee-panel {
    gap: 36px;
  }

  .fee-caption {
    max-width: 560px;
  }

  .contact-aside {
    position: static;
    max-width: 690px;
  }

  .contact-card {
    width: 100%;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__type strong {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
  }

  .brand__type span {
    font-size: 0.59rem;
    letter-spacing: 0.3em;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__grid {
    gap: 52px;
  }

  .hero__image-shell {
    border-radius: 28px;
    transform: none;
  }

  .hero__image-shell::after {
    right: -15px;
    bottom: -22px;
    border-radius: 28px;
  }

  .hero__image {
    border-radius: 21px;
  }

  .floating-card {
    min-width: 0;
    max-width: 205px;
    padding: 12px 14px;
  }

  .floating-card__icon {
    width: 36px;
    height: 36px;
  }

  .floating-card strong {
    font-size: 0.78rem;
  }

  .floating-card span {
    font-size: 0.68rem;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .trust-grid,
  .card-grid,
  .card-grid--2,
  .fit-grid,
  .principles-grid,
  .dual-promise,
  .check-grid,
  .responsibility-grid,
  .service-band__content,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 0;
  }

  .process-step:not(:last-child)::after {
    top: 48px;
    right: auto;
    bottom: -32px;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .process-step:nth-child(2)::after {
    display: block;
  }

  .step-number {
    width: 49px;
    height: 49px;
    margin-bottom: 0;
  }

  .process-step h3 {
    margin-top: 2px;
  }

  .promise-card {
    min-height: 340px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    min-width: 0;
  }

  .page-hero__mini {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -34px 18px 0;
  }

  .service-band {
    padding: 34px 0;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-step {
    grid-template-columns: 62px 1fr;
  }

  .timeline-step__number {
    width: 62px;
    height: 62px;
    border-width: 7px;
    font-size: 0.92rem;
  }

  .timeline-step__card {
    margin-left: 14px;
    padding: 24px;
  }

  .field--full {
    grid-column: auto;
  }

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

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

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

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

  .footer-column:last-child {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .brand__type {
    display: none;
  }

  .hero__note {
    align-items: flex-start;
  }

  .floating-card--top {
    top: 3%;
    left: -1%;
  }

  .floating-card--bottom {
    right: -1%;
    bottom: 3%;
  }

  .floating-card span {
    display: none;
  }

  .floating-card {
    max-width: 175px;
  }

  .service-card,
  .fit-card,
  .principle-card,
  .responsibility-card {
    padding: 24px;
  }

  .fee-panel,
  .cta-panel,
  .not-fit,
  .contact-card {
    border-radius: 26px;
  }

  .faq-list summary {
    padding: 20px 50px 20px 19px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    right: 19px;
  }

  .faq-answer {
    padding: 0 19px 20px;
  }

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
