@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("/assets/fonts/lora/lora-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("/assets/fonts/lora/lora-latin-italic-variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #f7f3ea;
  --paper-deep: #efe9dd;
  --white: #fffdf8;
  --forest: #173d2f;
  --forest-deep: #0f2f24;
  --forest-soft: #285645;
  --sage: #a8b8a2;
  --sage-light: #dbe3d7;
  --sage-pale: #edf1e9;
  --brass: #7d4f1f;
  --brass-light: #c59a5e;
  --ink: #183129;
  --ink-soft: #53645d;
  --line: rgba(23, 61, 47, 0.16);
  --line-strong: rgba(23, 61, 47, 0.3);
  --danger: #9b2c2c;
  --success: #1f6b43;
  --shadow-sm: 0 8px 28px rgba(20, 47, 37, 0.08);
  --shadow-md: 0 24px 70px rgba(20, 47, 37, 0.13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --header-height: 82px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--forest-deep);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 6vw, 5.65rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

p {
  margin-bottom: 1.15rem;
}

::selection {
  background: var(--sage);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--forest-deep);
  color: var(--white);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.narrow-content {
  max-width: 850px;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #d6b985;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 234, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 10px 30px rgba(15, 47, 36, 0.07);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: min(228px, 54vw);
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list,
.nav-submenu,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list > li > a,
.nav-dropdown__toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list > li > a:hover,
.nav-dropdown__toggle:hover,
.nav-list [aria-current="page"] {
  background: var(--sage-pale);
  color: var(--forest-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  display: grid;
  width: 300px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  background: var(--sage-pale);
}

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

.menu-toggle .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary,
.button--header {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(23, 61, 47, 0.17);
}

.button--primary:hover,
.button--header:hover {
  background: var(--forest-deep);
  box-shadow: 0 14px 32px rgba(23, 61, 47, 0.24);
}

.button--secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--forest);
}

.button--secondary:hover {
  border-color: var(--forest);
  background: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--forest-deep);
}

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

.button--wide {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero--home {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero--service {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy {
  max-width: 660px;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero--home .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.hero--service .hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 4.25vw, 4rem);
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.65rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 0;
  padding: 0;
  color: var(--forest-soft);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-proof .icon {
  color: var(--brass);
}

.hero-shape {
  position: absolute;
  z-index: 0;
  top: -22%;
  right: -10%;
  width: 50vw;
  height: 115%;
  border-radius: 46% 0 0 48%;
  background: linear-gradient(145deg, rgba(168, 184, 162, 0.28), rgba(237, 241, 233, 0.1));
  transform: rotate(-5deg);
}

.media-frame {
  position: relative;
  margin: 0;
}

.media-frame picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage-light);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.media-frame:hover img {
  transform: scale(1.02);
}

.media-frame figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 47, 36, 0.82);
  color: var(--white);
  font-size: 0.66rem;
  line-height: 1.2;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 54%;
  height: 48%;
  border: 1px solid rgba(155, 107, 46, 0.42);
  border-radius: var(--radius-lg);
  content: "";
}

.trust-strip,
.scope-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__inner,
.scope-strip__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-strip span,
.scope-strip span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 750;
}

.trust-strip .icon,
.scope-strip .icon {
  color: var(--brass);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section--compact {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

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

.section--forest {
  background: var(--forest-deep);
  color: rgba(255, 253, 248, 0.82);
}

.section--forest h2,
.section--forest h3 {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section--forest .section-heading > p:last-child {
  color: rgba(255, 253, 248, 0.72);
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 2rem 5rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  grid-column: span 2;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card__media {
  display: block;
  text-decoration: none;
}

.service-card__media .media-frame picture {
  border-radius: 0;
  box-shadow: none;
}

.service-card__media .media-frame img {
  aspect-ratio: 16 / 10;
}

.service-card__media figcaption {
  right: 0.6rem;
  bottom: 0.6rem;
  max-width: calc(100% - 1.2rem);
  font-size: 0.6rem;
}

.service-card__body {
  display: flex;
  height: 100%;
  padding: 1.5rem;
  flex-direction: column;
}

.service-number,
.feature-card__number {
  margin-bottom: 1rem;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.process-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.process-layout .section-heading {
  margin: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-list li {
  display: grid;
  align-items: start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 3rem 1fr;
}

.process-list > li > span {
  color: #d6b985;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.92rem;
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-layout--reverse .split-copy {
  order: 1;
}

.split-layout--reverse .split-media {
  order: 2;
}

.split-copy > p {
  color: var(--ink-soft);
}

.check-list,
.limit-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  font-weight: 650;
}

.check-list .icon {
  margin-top: 0.35rem;
  color: var(--brass);
}

.check-list--columns {
  display: grid;
  gap: 0.2rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.section-heading--sticky {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  margin: 0;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-plus {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brass);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] .faq-plus {
  background: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 68ch;
  padding: 0 3.25rem 1.35rem 0;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(168, 184, 162, 0.35), transparent 32%),
    var(--paper-deep);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-copy--panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: rgba(255, 253, 248, 0.78);
}

.contact-copy--panel h2 {
  color: var(--white);
}

.contact-copy--panel .eyebrow {
  color: #d6b985;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  min-height: 76px;
  min-width: 0;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms ease;
}

.contact-card:hover {
  background: var(--white);
  transform: translateX(4px);
}

.contact-card--static {
  cursor: default;
}

.contact-card--static:hover {
  background: rgba(255, 253, 248, 0.78);
  transform: none;
}

.contact-copy--panel .contact-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.contact-copy--panel .contact-card:hover {
  background: rgba(255, 255, 255, 0.13);
}

.contact-copy--panel .contact-card--static:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  flex: 0 0 auto;
  place-items: center;
}

.contact-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-card small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.contact-copy--panel .contact-card small {
  color: rgba(255, 255, 255, 0.64);
}

.office-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.office-note > div {
  display: flex;
  flex-direction: column;
}

.small-note,
.field-help,
.optional {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.contact-copy--panel .small-note {
  color: rgba(255, 253, 248, 0.62);
}

.contact-form {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form--compact .form-intro h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.form-intro h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

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

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.form-field label {
  margin-bottom: 0.38rem;
  color: var(--forest-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fffefa;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--forest-soft);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 184, 162, 0.45);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.12);
}

.field-error {
  min-height: 1.25rem;
  margin-top: 0.25rem;
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 700;
}

.field-help {
  margin-top: 0.3rem;
}

.form-notice {
  margin: 1.2rem 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.7rem;
  margin-top: 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.form-status--error {
  color: var(--danger);
}

.form-status--success {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: #e4f2e9;
  color: var(--success);
}

.form-status--pending {
  color: var(--forest-soft);
}

.noscript-note,
.form-direct-alternative {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--sage-pale);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.noscript-note {
  margin: 1rem 0;
  border-left: 3px solid var(--brass);
}

.form-direct-alternative {
  margin: 0.9rem 0 0;
  background: transparent;
  text-align: center;
}

.nojs-form-result {
  display: none;
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(28, 105, 71, 0.24);
  border-radius: var(--radius-sm);
  background: #e4f2e9;
  color: var(--success);
}

.nojs-form-result:target {
  display: block;
}

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

.form-anchor {
  scroll-margin-top: 0;
}

.service-inquiry {
  scroll-margin-top: 0;
}

.service-inquiry__direct {
  margin-top: 1.5rem;
  font-weight: 750;
}

.site-footer {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  background: #0b261d;
  color: rgba(255, 253, 248, 0.74);
}

.footer-grid {
  display: grid;
  gap: 3rem 2rem;
  padding-bottom: 3.5rem;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
}

.footer-brand img {
  width: min(230px, 100%);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 36ch;
  font-size: 0.88rem;
}

.image-disclosure {
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.72rem !important;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer address {
  display: flex;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  flex-direction: column;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-link {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #176b4a;
  box-shadow: 0 12px 30px rgba(15, 47, 36, 0.24);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #10553a;
}

.mobile-actions {
  display: none;
}

.breadcrumb {
  padding-top: 1.2rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.4rem;
  color: var(--brass);
  content: "/";
}

.breadcrumb a {
  min-height: 44px;
}

.scope-strip__inner {
  min-height: 70px;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 250px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.steps-grid li {
  position: relative;
  padding: 1.6rem 1.2rem 1.2rem;
  border-top: 2px solid var(--brass);
}

.steps-grid__number {
  display: block;
  margin-bottom: 2rem;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.steps-grid p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.limit-list {
  display: grid;
  gap: 0.75rem;
}

.limit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  border-left: 3px solid var(--brass);
  background: rgba(237, 241, 233, 0.75);
  font-size: 0.88rem;
}

.limit-list .icon {
  margin-top: 0.25rem;
  color: var(--forest);
}

.region-callout {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.region-callout__inner {
  display: grid;
  align-items: center;
  gap: 2rem 4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
}

.region-callout h2,
.region-callout p {
  margin: 0;
}

.region-callout p {
  color: rgba(255, 253, 248, 0.7);
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  display: grid;
  min-height: 190px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.related-card > span {
  font-family: "Lora", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.related-card small {
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.related-card .icon {
  justify-self: end;
}

.related-card--contact {
  background: var(--sage-light);
}

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.page-hero--legal {
  border-bottom: 1px solid var(--line);
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  gap: 0.2rem;
}

.legal-nav strong {
  margin-bottom: 0.6rem;
  color: var(--forest);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-decoration: none;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-content section {
  padding-block: 0.3rem 2.2rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content section + section {
  padding-top: 2.2rem;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content p,
.legal-content li {
  color: #40534b;
}

.legal-content address {
  display: flex;
  margin-bottom: 1rem;
  font-style: normal;
  flex-direction: column;
}

.legal-content a {
  color: var(--forest);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-updated {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .button--header {
    display: none;
  }

  .hero-grid {
    gap: 3rem;
  }

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

  .region-callout__inner {
    grid-template-columns: 1fr 1fr;
  }

  .region-callout__inner .button {
    justify-self: start;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

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

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

  .whatsapp-link {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    display: flex;
    width: min(420px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: stretch;
    padding: 1rem 1rem calc(3rem + env(safe-area-inset-bottom));
    border-left: 1px solid var(--line);
    background: var(--paper);
    box-shadow: -20px 20px 50px rgba(15, 47, 36, 0.16);
    flex-direction: column;
    gap: 1rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-list > li > a,
  .nav-dropdown__toggle {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-submenu {
    position: static;
    width: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 0.8rem;
    border: 0;
    visibility: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 220ms ease, opacity 160ms ease, visibility 220ms;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu {
    max-height: 420px;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav .button--header {
    display: inline-flex;
    margin-top: auto;
  }

  .hero-grid,
  .split-layout,
  .split-layout--reverse,
  .process-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero--home {
    padding-top: 3rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1,
  .hero--service .hero-copy h1 {
    max-width: 15ch;
  }

  .hero-media {
    max-width: 760px;
  }

  .split-layout--reverse .split-copy,
  .split-layout--reverse .split-media {
    order: initial;
  }

  .section-heading--split {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(-n + 2) {
    grid-column: span 3;
  }

  .section-heading--sticky,
  .contact-copy {
    position: static;
  }

  .faq-layout,
  .contact-layout {
    gap: 2.5rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    align-items: center;
    padding: 0.7rem;
    gap: 0.25rem;
    scrollbar-width: thin;
  }

  .legal-nav strong {
    margin: 0 0.6rem 0 0;
    flex: 0 0 auto;
  }

  .legal-nav a {
    min-width: max-content;
    min-height: 44px;
    padding: 0.4rem 0.7rem;
    border: 0;
    border-radius: 999px;
    background: var(--sage-pale);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .brand {
    width: min(205px, 62vw);
  }

  .hero--home,
  .hero--service {
    padding-block: 2.4rem 3.5rem;
  }

  .hero-grid {
    gap: 2.25rem;
  }

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

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

  .hero-proof {
    display: grid;
    gap: 0.45rem;
  }

  .hero-shape {
    top: auto;
    right: -40%;
    bottom: -8%;
    width: 120vw;
    height: 42%;
  }

  .hero-media::before {
    right: -0.6rem;
    bottom: -0.6rem;
  }

  .media-frame picture {
    border-radius: 22px;
  }

  .media-frame figcaption {
    right: 0.45rem;
    bottom: 0.45rem;
    max-width: calc(100% - 0.9rem);
    font-size: 0.58rem;
  }

  .trust-strip__inner,
  .scope-strip__inner {
    display: grid;
    min-height: auto;
    padding-block: 1.2rem;
    gap: 0.65rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section--compact {
    padding-top: 2rem;
  }

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

  .service-card,
  .service-card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .feature-grid,
  .steps-grid,
  .related-grid,
  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 2.25rem 1fr;
  }

  .region-callout__inner {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 1.2rem;
    border-radius: 22px;
  }

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

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

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

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

  .whatsapp-link {
    right: 12px;
    bottom: 76px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-link span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .mobile-actions {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -8px 24px rgba(15, 47, 36, 0.08);
    grid-template-columns: 1fr 1fr;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a span {
    line-height: 1.15;
    text-align: center;
  }

  .mobile-actions a + a {
    border-left: 1px solid var(--line);
    background: var(--forest);
    color: var(--white);
  }

  .page-hero {
    padding: 2.6rem 0 3.2rem;
  }

  .breadcrumb {
    padding-top: 0.65rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    width: 188px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div: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;
  }

  .media-frame:hover img,
  .button:hover,
  .service-card:hover,
  .related-card:hover,
  .contact-card:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .whatsapp-link,
  .mobile-actions,
  .site-footer,
  .button,
  .legal-nav {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  .section {
    padding: 1rem 0;
  }

  a {
    text-decoration: underline;
  }
}
