:root {
  --forest: #1c3d32;
  --forest-deep: #122820;
  --forest-soft: #3d5c50;
  --sage: #8a9a84;
  --sage-soft: #d8e0d2;
  --sand: #e6dccb;
  --sand-deep: #cfc3ad;
  --cream: #f6f1e8;
  --paper: #fbf8f2;
  --ink: #1a2a24;
  --muted: #5c6b64;
  --line: rgba(28, 61, 50, 0.1);
  --white: #fffdf9;
  --shadow: 0 20px 48px rgba(18, 40, 32, 0.07);
  --radius: 28px;
  --header-h: 80px;
  --wrap: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --mobile-cta-h: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: clip;
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest);
}

a,
button,
.btn,
.choice,
.nav-toggle,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(28, 61, 50, 0.14);
  tap-highlight-color: rgba(28, 61, 50, 0.14);
}

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.4rem));
  max-width: var(--wrap);
  margin-inline: auto;
  min-width: 0;
}

main#content {
  display: block;
  width: 100%;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-soft);
}

.kicker::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--sage);
  border-radius: 99px;
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--forest-deep);
  margin: 0 0 0.8rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.no-hyphen {
  hyphens: manual;
  -webkit-hyphens: manual;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
.display {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lede {
  font-size: 1.2rem;
  max-width: 40rem;
  line-height: 1.55;
}

.notice {
  background: var(--forest-deep);
  color: #e7efe9;
  font-size: 0.86rem;
  padding-top: var(--safe-top);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.notice .wrap {
  display: flex;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  min-width: 0;
}

.notice a {
  color: var(--sand);
  font-weight: 700;
  text-decoration: none;
  flex: 0 0 auto;
}

.notice p {
  margin: 0;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid transparent;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.nav-open .site-header {
  background: var(--paper);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand img,
.custom-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--forest-deep);
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  margin: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.05rem;
  flex: 0 1 auto;
  min-width: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.86rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--sage-soft);
  color: var(--forest-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  font-weight: 750;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-soft);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line);
}

.btn-sand,
.btn-lime {
  background: var(--sand);
  color: var(--forest-deep);
}

.phone-link {
  color: var(--forest);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
}

.hero,
.statement,
.close-cta,
.section {
  width: 100%;
  max-width: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  min-height: min(92svh, 880px);
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.statement-media,
.close-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media img,
.statement-media img,
.close-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  animation: kenburns 36s ease-in-out infinite alternate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.hero::after,
.close-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 40, 32, 0.12) 0%, rgba(18, 40, 32, 0.72) 78%),
    linear-gradient(90deg, rgba(18, 40, 32, 0.48), transparent 62%);
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 40, 32, 0.22) 0%, rgba(18, 40, 32, 0.55) 46%, rgba(18, 40, 32, 0.74) 100%);
}

.hero-content,
.statement-copy,
.close-copy {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.8rem;
  max-width: 760px;
}

.hero .kicker,
.hero h1,
.statement h2,
.close-cta h2 {
  color: var(--white);
}

.hero p,
.statement p,
.close-cta p {
  color: rgba(255, 253, 249, 0.88);
}

.hero-sub {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--sand) !important;
  margin-bottom: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.mark-line {
  display: block;
  width: 72px;
  height: 18px;
  margin: 0.4rem 0 1.2rem;
  overflow: visible;
}

.mark-line path {
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawline 2.8s ease forwards 0.4s;
}

.section {
  padding: 6.2rem 0;
}

.section.soft {
  background: var(--paper);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.6rem;
  max-width: 720px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.principle {
  padding-top: 0.2rem;
}

.principle .icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 1.15rem;
  color: var(--forest);
  line-height: 0;
}

.principle .icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle h3 {
  margin-bottom: 0.55rem;
}

.statement,
.close-cta {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100svh;
  overflow: hidden;
}

.statement {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.close-cta {
  display: grid;
  place-items: center start;
}

.statement-copy,
.close-copy {
  padding: 4rem 0;
  max-width: 680px;
}

.statement-copy {
  margin-inline: auto;
  text-align: center;
}

.statement-copy .kicker {
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  padding-top: 0.2rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--sage);
  margin-bottom: 0.7rem;
}

.paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.path-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.path-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.path-card .body {
  padding: 1.4rem 1.45rem 1.6rem;
  flex: 1;
}

.path-card h3 {
  margin-bottom: 0.4rem;
}

.path-card span {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 750;
  color: var(--forest);
}

.region {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy map"
    "places places"
    "note note";
  gap: 1.2rem 2.4rem;
  align-items: center;
}

.region-copy {
  grid-area: copy;
}

.region-copy p {
  max-width: 34rem;
}

.region-map {
  grid-area: map;
  position: relative;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: visible;
  min-width: 0;
}

.region-map-svg {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 440 / 360;
  font-family: var(--font);
  overflow: visible;
  padding: 0.35rem 0.55rem 0;
}

.region-map figcaption {
  padding: 0 1.1rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--forest-soft);
}

.map-field {
  fill: var(--paper);
}

.map-land-shadow {
  fill: #c8d2c3;
}

.map-land {
  fill: #d5ddd0;
}

.map-land-inner {
  fill: #e4eadf;
}

.map-contour {
  fill: none;
  stroke: #b7c3b2;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
}

.map-canal,
.map-river {
  fill: none;
  stroke: #b7c4b8;
  stroke-linecap: round;
}

.map-canal {
  stroke-width: 1.4;
  opacity: 0.7;
}

.map-river {
  stroke-width: 1.15;
  opacity: 0.55;
}

.map-hills {
  fill: none;
  stroke: var(--sand-deep);
  stroke-width: 1.3;
  stroke-linecap: round;
  opacity: 0.45;
}

.map-compass line,
.map-compass polygon {
  stroke: var(--forest-soft);
  fill: var(--forest-soft);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.map-compass text {
  fill: var(--forest-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.map-marker {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  outline: none;
}

.map-halo {
  fill: rgba(28, 61, 50, 0.1);
}

.map-ring {
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.6;
}

.map-dot {
  fill: var(--forest);
}

.map-label {
  fill: var(--forest-deep);
  font-size: 12px;
  font-weight: 750;
}

.map-hint {
  fill: var(--forest-soft);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-marker.is-hq .map-dot {
  fill: var(--forest-deep);
}

.region-places {
  grid-area: places;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}

.region-places li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: default;
}

.region-places .is-hq {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.region-places span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.region-note {
  grid-area: note;
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.quote {
  --quote-fill: var(--cream);
  --quote-edge: rgba(28, 61, 50, 0.13);
  position: relative;
  margin: 0 0 2.7rem;
  padding: 1.55rem 1.65rem 1.4rem;
  background: var(--quote-fill);
  border: 1px solid var(--quote-edge);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(18, 40, 32, 0.055);
  min-width: 0;
}

.quote::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--quote-fill);
  border-right: 1px solid var(--quote-edge);
  border-bottom: 1px solid var(--quote-edge);
  transform: rotate(45deg);
  box-shadow: 2px 2px 5px rgba(18, 40, 32, 0.03);
}

.quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.4;
  color: var(--forest-deep);
}

.quote footer {
  position: absolute;
  left: 0.15rem;
  top: calc(100% + 1.05rem);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-soft);
}

.people {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.people img {
  width: 100%;
  border-radius: 36px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.grid-3,
.grid-2,
.team-grid {
  display: grid;
  gap: 1.2rem;
}

.grid-3,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card.quiet {
  background: var(--sage-soft);
}

.icon-dot {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--sand);
  font-weight: 800;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.split img,
.media-frame img {
  width: 100%;
  height: auto;
  max-height: 280px;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
}

.list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li {
  margin: 0.35rem 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--forest-deep);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.75rem 0 0.2rem;
}

.page-hero {
  padding: 4.6rem 0 2.2rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.alert {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.3rem 1.45rem;
}

.alert strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest-deep);
}

.card-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--forest-soft);
  margin-bottom: 0.3rem;
}

.team-card {
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
  background: var(--sage-soft);
}

.team-card .body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.role {
  color: var(--forest-soft);
  font-weight: 750;
  font-size: 0.92rem;
}

.meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.15rem 0;
}

.contact-row {
  margin-top: 0.7rem;
}

.contact-row a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.inquiry-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.choice {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 1.3rem 1.35rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.choice.is-active,
.choice:hover {
  border-color: var(--forest);
  background: var(--white);
}

.choice strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--forest-deep);
  margin-bottom: 0.3rem;
}

.inquiry-panel {
  display: none;
  margin-top: 1.8rem;
}

.inquiry-panel.is-open {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--forest-deep);
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 0.78rem 0.9rem;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  min-height: 44px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.radio-row label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.success {
  background: var(--sage-soft);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.4rem;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  min-width: 0;
}

.cta-band h2,
.cta-band p {
  overflow-wrap: anywhere;
}

.cta-band .btn {
  white-space: normal;
  text-align: center;
}

.site-footer {
  background: var(--forest-deep);
  color: #d5e2db;
  padding: 3.4rem 0 calc(1.3rem + var(--safe-bottom));
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.6rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #c7d6cf;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.hours-note {
  display: block;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--muted);
}

.card .hours-note {
  margin-top: 0.15rem;
}

.site-footer .hours-note {
  color: #9bb0a6;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer .footer-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.nav-cta,
.mobile-cta {
  display: none;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content .alignwide,
.entry-content .alignfull,
.wp-block-group.is-layout-grid,
.wp-block-group:has(> .is-layout-grid) {
  max-width: none;
}

.is-layout-grid:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@keyframes kenburns {
  from {
    transform: translateZ(0) scale(1.04);
  }
  to {
    transform: translateZ(0) scale(1.09);
  }
}

@keyframes drawline {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .statement-media img,
  .close-media img,
  .mark-line path {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (min-width: 1181px) {
  .site-header .wrap {
    width: min(1440px, calc(100% - 1.6rem));
    max-width: 1440px;
  }

  .site-nav a {
    white-space: nowrap;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .brand-text {
    display: none;
  }

  .site-nav a {
    font-size: 0.78rem;
    padding: 0.35rem 0.4rem;
  }

  .header-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .site-nav,
  .header-actions .phone-link {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .mobile-cta {
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .notice {
    visibility: hidden;
  }

  body.nav-open .site-header {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--paper);
    overflow: hidden;
    z-index: 50;
  }

  body.nav-open .header-inner {
    position: static;
    z-index: 61;
    padding-top: var(--safe-top);
  }

  body.nav-open .brand,
  body.nav-open .nav-toggle {
    position: relative;
    z-index: 80;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-h) + var(--safe-top));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    background: var(--paper);
    padding: 0.8rem calc(1.2rem + var(--safe-right)) calc(2rem + var(--safe-bottom)) calc(1.2rem + var(--safe-left));
    align-items: stretch;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.nav-open .site-nav a {
    font-size: 1.15rem;
    padding: 0.85rem 0.4rem;
    min-height: 44px;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  body.nav-open .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
    width: fit-content;
    max-width: 100%;
    color: var(--white);
    background: var(--forest);
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .principles,
  .steps,
  .paths,
  .region,
  .people,
  .quotes,
  .grid-3,
  .team-grid,
  .grid-2,
  .split,
  .footer-grid,
  .form-grid,
  .inquiry-choices,
  .is-layout-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }

  .region {
    grid-template-areas:
      "copy"
      "map"
      "places"
      "note";
    gap: 1.4rem;
  }

  .region-places {
    margin-top: 0;
  }

  .map-label {
    font-size: 13px;
  }

  .is-layout-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr !important;
  }

  .section {
    padding: 4rem 0;
  }

  .path-card img {
    max-height: 200px;
    aspect-ratio: 4 / 3;
  }

  .split img,
  .media-frame img {
    max-height: 220px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 60px;
    --mobile-cta-h: 4.85rem;
  }

  .brand-text {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .brand img,
  .custom-logo {
    width: 46px;
    height: 46px;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .notice p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 0;
  }

  .notice a {
    white-space: normal;
    text-align: right;
  }

  .hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: 100svh;
  }

  .hero-content,
  .statement-copy,
  .close-copy {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: 3.2rem;
  }

  .page-hero h1 {
    max-width: none;
  }

  .quote {
    padding: 1.35rem 1.35rem 1.25rem;
  }

  .quote p {
    font-size: 1.16rem;
  }

  h1,
  .display {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    gap: 0.4rem;
    padding: 0.5rem calc(0.6rem + var(--safe-right)) calc(0.5rem + var(--safe-bottom)) calc(0.6rem + var(--safe-left));
    background: rgba(251, 248, 242, 0.97);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 0.55rem 0.4rem;
    font-size: 0.86rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  body {
    padding-bottom: calc(var(--mobile-cta-h) + var(--safe-bottom));
  }

  .site-footer {
    padding-bottom: calc(1.8rem + var(--safe-bottom));
  }

  .region-map {
    border-radius: 24px;
    overflow: hidden;
  }

  .region-map-svg {
    overflow: visible;
    padding: 0.5rem 0.35rem 0.15rem;
  }

  .map-label {
    font-size: 15px;
  }

  .map-hint {
    font-size: 11px;
  }

  .path-card img,
  .split img,
  .media-frame img {
    max-height: 200px;
  }

  .card,
  .path-card .body,
  .team-card .body {
    min-width: 0;
  }

  .faq summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
  }
}
