@font-face {
  font-family: "Source Serif 4";
  src: url("../brand/source-serif-4-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}

@font-face {
  font-family: "Manrope";
  src: url("../brand/manrope-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --ink: #16251f;
  --ink-soft: #415149;
  --forest: #173a2e;
  --forest-deep: #102a22;
  --sage: #dfe9df;
  --sage-deep: #b9cdbd;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --line: #d8d9cf;
  --orange: #e36e3b;
  --orange-dark: #b94f25;
  --white: #ffffff;
  --shadow: 0 20px 54px rgba(21, 45, 36, 0.11);
  --shadow-soft: 0 12px 30px rgba(21, 45, 36, 0.08);
  --shell: min(1280px, calc(100vw - 40px));
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --brand-sans: var(--sans);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: clamp(2.5rem, 4vw, 4rem);
  --space-3xl: clamp(3.5rem, 6vw, 5.5rem);
  --space-4xl: clamp(4.5rem, 7vw, 6.5rem);
  --section-space: clamp(4.5rem, 7vw, 5.5rem);
  --section-space-compact: clamp(3.5rem, 5vw, 4.5rem);
  --layout-gap: clamp(2rem, 4vw, 4rem);
  --card-padding: clamp(1.35rem, 2.2vw, 2rem);
  --measure-body: 68ch;
  --measure-lead: 62ch;
  --measure-display: 19ch;
  --radius-small: 12px;
  --radius-medium: 18px;
  --radius-large: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-synthesis: none;
  font-weight: 400;
  font-kerning: normal;
  font-optical-sizing: auto;
  letter-spacing: 0;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

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

button,
input,
select,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--forest);
  font-weight: 700;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 58, 46, 0.12);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
}

.utility-bar {
  background: var(--forest-deep);
  color: #e9f1eb;
  font-family: var(--brand-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-block: 7px;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: var(--space-lg);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  width: clamp(214px, 20vw, 244px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(14px, 2vw, 27px);
  font-family: var(--brand-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-small);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(227, 110, 59, 0.2);
  color: var(--forest-deep);
  font-family: var(--brand-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.3;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(185, 79, 37, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-secondary {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(23, 58, 46, 0.16);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--forest-deep);
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  box-shadow: none;
  color: var(--forest-deep);
}

.button-light:hover {
  background: var(--white);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mobile-menu[open] summary span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 40px rgba(23, 58, 46, 0.14);
}

.mobile-menu nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--brand-sans);
  font-weight: 700;
}

.mobile-menu nav .mobile-menu-cta {
  justify-content: center;
  margin: 12px;
  padding: 13px 18px;
  border: 0;
  border-radius: 11px 11px 11px 3px;
  background: var(--orange);
  color: var(--forest-deep);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  max-width: 100%;
  margin-bottom: var(--space-md);
  color: var(--orange-dark);
  font-family: var(--brand-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #f1b798;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.004em;
}

h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.12;
}

h3 {
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

p {
  color: var(--ink-soft);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(185, 205, 189, 0.7), transparent 28%),
    linear-gradient(135deg, #f7f1e7 0%, #fffdf8 58%, #e8eee5 100%);
}

.home-hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -230px;
  border: 1px solid rgba(23, 58, 46, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  align-items: center;
  gap: var(--layout-gap);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.hero-copy h1 {
  max-width: 13ch;
  margin-bottom: var(--space-lg);
  color: var(--forest-deep);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.004em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-lead {
  max-width: var(--measure-lead);
  margin-bottom: var(--space-xl);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 58, 46, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link-light {
  color: var(--cream);
  text-decoration-color: rgba(247, 241, 231, 0.4);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin: var(--space-xl) 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 0;
}

.hero-card {
  border: 1px solid rgba(23, 58, 46, 0.12);
  border-radius: var(--radius-large);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.hero-card-main {
  position: relative;
  padding: var(--card-padding);
}

.hero-card-top,
.hero-card-footer {
  display: flex;
  align-items: center;
}

.hero-card-top {
  gap: 9px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-card-top b {
  margin-left: auto;
  color: var(--orange-dark);
  font-size: 13px;
}

.hero-card-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d9b69;
  box-shadow: 0 0 0 5px rgba(77, 155, 105, 0.12);
}

.hero-card h2 {
  max-width: 18ch;
  margin: var(--space-lg) 0;
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -0.004em;
  line-height: 1.1;
  text-wrap: balance;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  min-height: 175px;
}

.photo-placeholder {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 80px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(23, 58, 46, 0.12);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, #edf2ec, #dbe7dc);
}

.photo-placeholder::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: linear-gradient(
    180deg,
    rgba(16, 42, 34, 0.2) 0%,
    rgba(16, 42, 34, 0.42) 48%,
    rgba(16, 42, 34, 0.9) 100%
  );
  content: "";
}

.photo-card-image {
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(16, 42, 34, 0.45);
}

.photo-placeholder b {
  position: relative;
  z-index: 1;
  color: #ffc3a4;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.photo-wide {
  grid-row: span 2;
}

.hero-card-footer {
  justify-content: space-between;
  margin-top: var(--space-lg);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.round-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--white);
  font-size: 19px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: grid;
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 16px 40px rgba(16, 42, 34, 0.18);
}

.hero-note-top {
  top: 0;
  right: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 19px;
  background: var(--orange);
  color: var(--white);
  transform: rotate(1deg);
}

.hero-note-top strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.hero-note-top span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-note-bottom {
  right: 7px;
  bottom: 4px;
  padding: 17px 21px;
  background: var(--forest);
  color: var(--white);
  transform: rotate(0.4deg);
}

.hero-note-bottom .note-kicker {
  color: #bcd2c1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-note-bottom strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.hero-note-bottom span:last-child {
  color: #d8e4da;
  font-size: 10px;
}

.hero-local {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-top: 1px solid rgba(23, 58, 46, 0.16);
  color: var(--forest);
  font-size: 12px;
}

.hero-local > span:first-child {
  margin-right: auto;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-local strong {
  font-size: 13px;
}

.hero-local-line {
  width: 17px;
  height: 1px;
  background: rgba(23, 58, 46, 0.25);
}

.section {
  padding-block: var(--section-space);
}

.section-intro {
  background: var(--paper);
}

.section-team-story {
  padding-top: 0;
  background: var(--paper);
}

.team-story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: var(--layout-gap);
  padding: var(--card-padding);
  border: 1px solid rgba(23, 58, 46, 0.11);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 92% 10%, rgba(185, 205, 189, 0.36), transparent 30%),
    var(--cream);
}

.team-story-media {
  min-width: 0;
  margin: 0;
}

.team-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 24px 7px;
  box-shadow: 0 24px 56px rgba(16, 42, 34, 0.16);
}

.team-story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.team-story-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 42, 34, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 20px rgba(16, 42, 34, 0.12);
  color: var(--forest-deep);
  font-family: var(--brand-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-story-media figcaption {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 12px;
}

.team-story-copy h2 {
  max-width: var(--measure-display);
  margin-bottom: var(--space-lg);
  color: var(--forest-deep);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.004em;
  line-height: 1.12;
  text-wrap: balance;
}

.team-story-copy > p {
  max-width: var(--measure-body);
  margin-bottom: var(--space-lg);
  font-size: 18px;
}

.team-story-list {
  display: grid;
  gap: 0;
  margin: 0 0 var(--space-xl);
  padding: 0;
  border-top: 1px solid rgba(23, 58, 46, 0.18);
  list-style: none;
}

.team-story-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(23, 58, 46, 0.18);
}

.team-story-list span {
  color: var(--orange-dark);
  font-family: var(--brand-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.team-story-list strong {
  color: var(--forest);
  font-size: 14px;
  line-height: 1.45;
}

.team-story-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.two-column-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: var(--layout-gap);
  align-items: end;
  margin-bottom: var(--space-2xl);
}

.two-column-heading h2,
.section-heading h2 {
  max-width: var(--measure-display);
  margin-bottom: 0;
  color: var(--forest-deep);
  text-wrap: balance;
}

.two-column-heading p {
  max-width: var(--measure-body);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

.service-card:hover {
  border-color: var(--sage-deep);
  box-shadow: 0 20px 45px rgba(23, 58, 46, 0.09);
  transform: translateY(-5px);
}

.card-index {
  margin-bottom: var(--space-xl);
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.service-card h3 {
  max-width: 22ch;
  min-height: 2.56em;
  margin-bottom: var(--space-sm);
  font-family: var(--sans);
  font-size: clamp(21px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  text-wrap: balance;
}

.service-card p {
  margin-bottom: var(--space-lg);
  font-size: 15px;
}

.service-card .text-link {
  margin-top: auto;
}

.section-dark {
  background: var(--forest-deep);
  color: var(--white);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: var(--layout-gap);
  align-items: center;
}

.feature-statement blockquote {
  max-width: 15ch;
  margin-bottom: var(--space-lg);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.004em;
  line-height: 1.07;
  text-wrap: balance;
}

.feature-statement p {
  max-width: var(--measure-body);
  margin-bottom: var(--space-xl);
  color: #c7d5cb;
  font-size: 18px;
}

.factor-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.factor-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.factor-row > span {
  color: #f2ad89;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.factor-row h3 {
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.25;
}

.factor-row p {
  margin-bottom: 0;
  color: #b9cabe;
  font-size: 14px;
}

.section-heading {
  margin-bottom: var(--space-2xl);
}

.centered-heading {
  max-width: 860px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading p {
  max-width: 720px;
  margin: var(--space-lg) auto 0;
  font-size: 18px;
}

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

.process-grid article {
  position: relative;
  padding: var(--space-lg);
}

.process-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  padding-right: 0;
}

.process-grid article > span {
  display: block;
  margin-bottom: var(--space-xl);
  color: var(--orange-dark);
  font-family: var(--serif);
  font-weight: 600;
}

.process-grid h3 {
  min-height: 58px;
  margin-bottom: var(--space-sm);
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.25;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.section-action {
  margin-top: var(--space-2xl);
  text-align: center;
}

.section-sage {
  background: var(--sage);
}

.location-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--space-lg);
  border-top: 1px solid rgba(23, 58, 46, 0.2);
}

.location-link-grid a {
  display: flex;
  min-height: 144px;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(23, 58, 46, 0.2);
}

.location-link-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-link-grid a > span:first-child {
  display: grid;
  align-content: space-between;
}

.location-link-grid strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.22;
}

.location-link-grid small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.location-link-grid a > span:last-child {
  color: var(--orange-dark);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.74fr) minmax(500px, 1.26fr);
  gap: var(--layout-gap);
}

.editorial-main h2 {
  max-width: var(--measure-display);
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.editorial-main p {
  max-width: var(--measure-body);
  margin-bottom: var(--space-xl);
  font-size: 18px;
}

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

.guide-list a {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--line);
}

.guide-list a > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
}

.guide-list h3 {
  margin-bottom: var(--space-xs);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.24;
}

.guide-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.guide-list b {
  color: var(--orange-dark);
  font-size: 18px;
}

.section-faq {
  background: #f2eee6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: var(--layout-gap);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  max-width: var(--measure-display);
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.faq-heading p {
  max-width: var(--measure-body);
  margin-bottom: var(--space-lg);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 8px var(--space-lg) 0;
  color: var(--forest-deep);
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(19px, 1.8vw, 21px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  list-style: none;
}

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

.faq-plus {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

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

.faq-answer {
  max-width: var(--measure-body);
  padding: 0 55px var(--space-lg) 0;
}

.faq-answer p {
  margin: 0;
}

.contact-band {
  padding-block: var(--section-space-compact);
  background: var(--forest-deep);
  color: var(--white);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.contact-band h2 {
  max-width: 15ch;
  margin-bottom: var(--space-md);
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 54px);
  letter-spacing: -0.004em;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #c9d7cd;
  font-size: 18px;
}

.contact-band .eyebrow {
  color: #f1a178;
}

.contact-band-actions {
  display: grid;
  flex: 0 0 auto;
  gap: var(--space-sm);
  justify-items: center;
}

.site-footer {
  padding-top: var(--section-space-compact);
  background: var(--forest-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: var(--space-2xl);
  padding-bottom: var(--section-space-compact);
}

.footer-brand-link {
  display: inline-flex;
  line-height: 0;
}

.footer-logo {
  width: min(293px, 100%);
  height: auto;
}

.footer-brand > p {
  max-width: 390px;
  margin: var(--space-lg) 0 var(--space-sm);
  color: #b9cabe;
  font-size: 14px;
}

.footer-brand .footer-claim {
  color: #f2b493;
  font-family: var(--serif);
  font-size: 17px;
}

.site-footer h2 {
  margin-bottom: var(--space-md);
  color: #f3b28f;
  font-family: var(--brand-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #dbe5dd;
  font-size: 13px;
  list-style: none;
}

.site-footer p {
  color: #c4d2c8;
  font-size: 13px;
}

.site-footer p a {
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: 11px 11px 11px 3px;
  background: rgba(247, 241, 231, 0.08);
  color: var(--white);
  font-family: var(--brand-sans);
  font-weight: 700;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.footer-contact:hover {
  border-color: var(--orange) !important;
  background: rgba(227, 110, 59, 0.13);
  text-decoration: none !important;
}

.footer-contact b {
  color: var(--orange);
  font-size: 18px;
}

.footer-contact-box {
  display: grid;
  gap: 9px;
  margin: 13px 0 15px;
}

.footer-contact-box > span {
  color: #aebfb4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  max-width: 260px;
  font-size: 11px !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9eb1a4;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Inner pages */

.page-hero {
  padding: var(--space-xl) 0 var(--section-space-compact);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(185, 205, 189, 0.62), transparent 26%),
    var(--cream);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: clamp(24px, 3vw, 36px);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.breadcrumbs span {
  display: inline-flex;
  gap: 8px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: rgba(65, 81, 73, 0.28);
  text-underline-offset: 3px;
}

.breadcrumbs b {
  color: var(--forest);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.64fr);
  gap: var(--layout-gap);
  align-items: end;
}

.page-hero-narrow {
  grid-template-columns: minmax(0, 960px);
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: var(--space-lg);
  color: var(--forest-deep);
  font-size: clamp(46px, 6.2vw, 72px);
  letter-spacing: -0.004em;
  line-height: 1.05;
  text-wrap: balance;
}

.page-hero .lead {
  max-width: var(--measure-lead);
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.page-hero-aside {
  padding: var(--card-padding);
  border: 1px solid rgba(23, 58, 46, 0.14);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.78);
}

.page-hero-aside h2 {
  max-width: 18ch;
  margin-bottom: var(--space-sm);
  font-size: clamp(25px, 2.5vw, 29px);
  letter-spacing: -0.004em;
  line-height: 1.18;
  text-wrap: balance;
}

.page-hero-aside p,
.page-hero-aside li {
  font-size: 14px;
}

.page-hero-aside p:last-child {
  margin-bottom: 0;
}

.page-hero-aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero-aside li {
  display: flex;
  gap: 8px;
  color: var(--ink-soft);
}

.page-hero-aside li::before {
  color: var(--orange-dark);
  content: "✓";
  font-weight: 900;
}

.content-section {
  padding-block: var(--section-space);
}

.content-section.alt {
  background: var(--sage);
}

.content-section.soft {
  background: #f2eee6;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: var(--layout-gap);
}

.content-heading h2 {
  max-width: var(--measure-display);
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.content-heading p {
  max-width: var(--measure-body);
  font-size: 18px;
}

.content-body > :last-child {
  margin-bottom: 0;
}

.content-body p {
  max-width: var(--measure-body);
  font-size: 18px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  min-height: 86px;
  padding: 19px 20px 19px 53px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 15px;
}

.check-grid li::before {
  position: absolute;
  top: 19px;
  left: 20px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.plain-list {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

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

.mini-card {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: 17px 17px 17px 5px;
  background: var(--white);
}

.mini-card > span {
  display: block;
  margin-bottom: var(--space-xl);
  color: var(--orange-dark);
  font-family: var(--serif);
}

.mini-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.24;
}

.mini-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: #fff4ed;
  color: var(--ink-soft);
  font-size: 15px;
}

.notice strong {
  color: var(--forest-deep);
}

.price-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.price-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.price-card.featured {
  background: var(--forest);
  color: var(--white);
}

.price-card .card-index {
  margin-bottom: var(--space-xl);
}

.price-card h3 {
  min-height: 2.6em;
  margin-bottom: var(--space-sm);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.price-range {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.004em;
  line-height: 1.1;
}

.price-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.price-context {
  max-width: 900px;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.price-context p {
  margin-bottom: 0;
  font-size: 14px;
}

.price-context .price-sources {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.price-sources summary {
  width: fit-content;
  color: var(--forest-deep);
  cursor: pointer;
  font-weight: 750;
}

.price-sources p {
  max-width: var(--measure-body);
  margin-top: 10px;
}

.price-sources a {
  color: var(--forest-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-card.featured h3 {
  color: var(--white);
}

.price-card.featured p {
  color: #c8d7cc;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.price-card.featured ul {
  color: #dce7df;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.timeline {
  display: grid;
}

.timeline-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--line);
}

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

.timeline-step > span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.timeline-step h3 {
  margin-bottom: var(--space-xs);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.004em;
  line-height: 1.24;
}

.timeline-step p {
  margin-bottom: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.area-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: 17px 17px 17px 5px;
  background: var(--white);
}

.area-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.24;
}

.area-card p {
  font-size: 14px;
}

.area-card .text-link {
  align-self: flex-start;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid var(--sage-deep);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.article-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: 19px 19px 19px 5px;
  background: var(--white);
}

.article-card > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
}

.article-card h2,
.article-card h3 {
  max-width: 22ch;
  margin: var(--space-xl) 0 var(--space-sm);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 27px);
  font-weight: 600;
  letter-spacing: -0.004em;
  line-height: 1.22;
  text-wrap: balance;
}

.article-card p {
  font-size: 15px;
}

.article-card .text-link {
  margin-top: auto;
}

.article-shell {
  width: min(780px, calc(100vw - 40px));
  margin-inline: auto;
}

.article-content {
  padding-block: var(--section-space);
}

.article-content h2 {
  max-width: 24ch;
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--forest-deep);
  font-size: clamp(34px, 3.8vw, 44px);
  letter-spacing: -0.004em;
  line-height: 1.14;
  text-wrap: balance;
}

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

.article-content p,
.article-content li {
  font-size: 18px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 35px;
  padding-left: 22px;
}

.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

/* Form */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: var(--layout-gap);
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: var(--space-lg);
}

.form-section {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-section-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 700;
}

.form-section-heading h2 {
  max-width: 24ch;
  margin-bottom: var(--space-xs);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 29px);
  font-weight: 600;
  letter-spacing: -0.004em;
  line-height: 1.18;
  text-wrap: balance;
}

.form-section-heading p {
  margin-bottom: 0;
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

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

.form-optional {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--line);
}

.form-optional summary {
  min-height: 48px;
  padding: 14px 2px;
  color: var(--forest-deep);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.form-optional[open] summary {
  margin-bottom: var(--space-md);
}

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

.field label,
.fieldset-label {
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bfc7c0;
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field small,
.form-help {
  color: var(--ink-soft);
  font-size: 11px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid #bfc7c0;
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.choice input:checked + span {
  border-color: var(--forest);
  background: var(--sage);
  color: var(--forest);
}

.choice input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.dropzone {
  position: relative;
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 25px;
  border: 2px dashed var(--sage-deep);
  border-radius: 14px;
  background: #f7faf5;
  text-align: center;
}

.dropzone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.dropzone strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
}

.dropzone span {
  color: var(--ink-soft);
  font-size: 12px;
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 11px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--forest);
  font-size: 12px;
}

.file-list li span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.file-list li span:last-child {
  flex: 0 0 auto;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 12px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.privacy-check a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
}

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

.form-submit-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.form-submit-row p {
  max-width: 430px;
  margin: 0;
  font-size: 11px;
}

.form-status {
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  background: #deeee2;
  color: #1c6336;
}

.form-status.error {
  background: #fbe1d8;
  color: #893a1e;
}

.contact-aside {
  position: sticky;
  top: 130px;
  display: grid;
  gap: var(--space-lg);
}

.contact-option {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.contact-option.featured {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.contact-option h2 {
  max-width: 18ch;
  margin-bottom: var(--space-sm);
  font-size: clamp(25px, 2.5vw, 29px);
  letter-spacing: -0.004em;
  line-height: 1.18;
  text-wrap: balance;
}

.contact-option.featured h2 {
  color: var(--white);
}

.contact-option p {
  margin-bottom: 18px;
  font-size: 13px;
}

.contact-option.featured p {
  color: #c6d7cb;
}

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

.contact-option .pending-contact {
  display: inline-block;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #d5e3d8;
  font-size: 12px;
  font-weight: 700;
}

.contact-address {
  margin: 14px 0 0;
  color: #d9e4dc !important;
  overflow-wrap: anywhere;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.founder-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.founder-card > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.founder-card h3,
.founder-card p {
  margin-bottom: 0;
}

.founder-card h3 {
  font-size: 19px;
  font-weight: 700;
}

.founder-card p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
}

.founder-note {
  max-width: var(--measure-body);
  margin: var(--space-lg) 0 0;
}

.founder-panel {
  display: grid;
  gap: var(--space-xl);
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-large);
  background: var(--forest-deep);
  box-shadow: var(--shadow-soft);
  color: var(--cream);
}

.founder-panel-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.founder-panel-brand img {
  width: 92px;
  height: auto;
  padding: 10px;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.founder-panel-brand span {
  max-width: 22ch;
  color: #d7e2da;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.founder-panel > p {
  margin: 0;
  color: #d7e2da;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.28;
}

.founder-panel-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(247, 241, 231, 0.18);
  list-style: none;
}

.founder-panel-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 241, 231, 0.18);
  color: #d7e2da;
  font-size: 13px;
  font-weight: 700;
}

.founder-panel-list li::before {
  margin-right: 10px;
  color: #f1b798;
  content: "✓";
}

.legal-card {
  padding: 24px;
  border: 1px solid #e2bca8;
  border-radius: 14px;
  background: #fff5ef;
}

.legal-card h2 {
  margin-bottom: 12px;
  color: #7d3218;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.legal-card p,
.legal-card li {
  color: #6d4b3c;
  font-size: 14px;
}

.legal-card ul {
  margin-bottom: 0;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.004em;
  line-height: 1.18;
}

.legal-content h3 {
  margin: 30px 0 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--sage);
  color: var(--forest);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 38px;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-lg);
    border-top: 0;
  }

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:last-child,
  .process-grid article:not(:last-child) {
    grid-column: span 2;
    margin-right: 0;
    padding: var(--space-lg);
    border: 1px solid var(--line);
    border-radius: var(--radius-medium);
  }

  .process-grid article:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .process-grid article:nth-child(5) {
    grid-column: 4 / span 2;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .editorial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(760px, calc(100vw - 32px));
    --section-space: clamp(72px, 10vw, 88px);
    --section-space-compact: clamp(56px, 8vw, 72px);
    --layout-gap: clamp(30px, 6vw, 48px);
    --card-padding: clamp(21px, 4vw, 28px);
  }

  body {
    font-size: 16px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 214px;
  }

  .hero-grid,
  .two-column-heading,
  .split-feature,
  .editorial-grid,
  .faq-layout,
  .page-hero-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .home-hero {
    padding-top: 56px;
  }

  .hero-grid {
    gap: var(--space-xl);
    padding-bottom: var(--section-space-compact);
  }

  .hero-local {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 15px;
    padding-block: 18px;
  }

  .hero-local > span:first-child {
    grid-column: 1 / -1;
    margin-right: 0;
  }

  .hero-local-line {
    display: none;
  }

  .two-column-heading {
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:last-child,
  .process-grid article:not(:last-child),
  .process-grid article:nth-child(4),
  .process-grid article:nth-child(5) {
    grid-column: auto;
    margin-right: 0;
    padding: var(--space-lg) 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

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

  .faq-heading,
  .contact-aside {
    position: static;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-band-actions {
    justify-items: start;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding-top: 24px;
  }

  .page-hero-grid {
    gap: var(--space-xl);
  }

  .mini-card-grid,
  .article-list {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 24px);
    --section-space: 72px;
    --section-space-compact: 56px;
    --layout-gap: 28px;
    --card-padding: 20px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-logo {
    width: 202px;
  }

  .home-hero {
    padding-top: 44px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(44px, 14vw, 58px);
    line-height: 1.05;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .page-hero-actions,
  .page-hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: auto;
  }

  .trust-list {
    display: grid;
  }

  .team-story-grid {
    padding: var(--card-padding);
    border-radius: var(--radius-large);
  }

  .team-story-image {
    border-radius: 17px 17px 17px 5px;
  }

  .team-story-copy > p {
    font-size: 16px;
  }

  .team-story-actions,
  .team-story-actions .button {
    width: 100%;
  }

  .hero-card-main {
    padding: var(--card-padding);
  }

  .hero-card h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .photo-grid {
    min-height: 140px;
  }

  .section {
    padding-block: var(--section-space);
  }

  .section-team-story {
    padding-top: 0;
  }

  .service-grid,
  .founder-grid,
  .process-grid,
  .location-link-grid,
  .check-grid,
  .price-promise,
  .area-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 265px;
  }

  .service-card h3,
  .price-card h3 {
    min-height: 0;
  }

  .process-grid article > span {
    margin-bottom: 20px;
  }

  .location-link-grid a {
    min-height: 118px;
  }

  .guide-list a {
    grid-template-columns: 48px 1fr 18px;
    gap: 12px;
  }

  .guide-list h3 {
    font-size: 21px;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 1.08;
  }

  .timeline-step {
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }

  .form-section {
    padding: var(--card-padding);
  }
}

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