@font-face {
  font-family: Lora;
  src: url("/assets/fonts/lora-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #111c20;
  --forest: #204e49;
  --ochre: #d2973f;
  --peach: #f1caa5;
  --paper: #faf7ef;
  --rule: #ded9ce;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  /* Allow content to reflow when text is enlarged independently of the viewport. */
  overflow-wrap: anywhere;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button {
  font: inherit;
}
img,
svg {
  max-width: 100%;
  display: block;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3 {
  font-family: Lora, Georgia, serif;
  font-weight: 600;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}
h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
}
h3 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.wrap {
  width: calc(100% - 128px);
  max-width: 1200px;
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 24px;
}
.accent-line {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--ochre);
  margin-right: 10px;
  vertical-align: middle;
}
a,
button {
  transition:
    color 0.18s,
    background-color 0.18s;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--paper);
}
.skip-link {
  position: absolute;
  z-index: 5;
  top: -100px;
  left: 24px;
  background: var(--paper);
  padding: 16px;
}
.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 34px;
  border-bottom: 1px solid var(--rule);
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 160px;
  flex-shrink: 0;
}
.wordmark > span:first-child {
  font:
    600 29px/1.15 Lora,
    Georgia,
    serif;
  letter-spacing: -1px;
}
.wordmark-sub {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 10px;
  margin-top: 7px;
  padding-left: 3px;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
  order: 3;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  color: var(--forest);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 2px;
  text-decoration: none;
}
.lang-switch a:hover {
  text-decoration: underline;
}
.lang-switch a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ochre);
  text-underline-offset: 6px;
}
.lang-switch span {
  color: var(--rule);
}
#navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
}
.site-header #navigation {
  margin-left: auto;
}
#navigation a {
  font-size: 14px;
  text-decoration: none;
  padding-block: 12px;
}
#navigation a:hover {
  color: var(--forest);
  text-decoration: underline;
}
.nav-contact {
  border: 1px solid var(--forest);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--forest);
  font-weight: 600;
}
.nav-contact span {
  margin-left: 16px;
}
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding-block: 78px 66px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero h1 span {
  color: var(--forest);
}
.hero-intro {
  font-size: 18px;
  max-width: 52ch;
  margin-block: 28px 30px;
  padding-right: 30px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 52px;
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  text-decoration: none;
}
.button:hover {
  background: var(--ink);
}
.button span {
  font-size: 21px;
  font-weight: 400;
}
.hero-secondary {
  display: block;
  width: fit-content;
  font-size: 14px;
  margin-top: 22px;
  padding-block: 6px;
  color: var(--forest);
}
.hero-secondary span {
  display: inline-block;
  margin-left: 10px;
}
.hero-art {
  margin-left: -10px;
  align-self: center;
}
.illustration {
  position: relative;
  container-type: inline-size;
}
.illustration img {
  width: 100%;
  height: auto;
}
/* The blank sign is part of the image; its lettering stays real HTML.
   Three centered lines over a softened plank seam. */
.sign-text {
  position: absolute;
  top: 25%;
  left: 17%;
  width: 39%;
  font:
    600 3.9cqw/1.15 Inter,
    Arial,
    sans-serif;
  letter-spacing: 0.6px;
  text-align: center;
  transform: rotate(-7deg);
}
.hero-art figcaption {
  font-family: Lora, Georgia, serif;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  color: var(--forest);
}

/* Principles */
.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 24px;
  padding-inline: 0;
  margin-block: 0;
  gap: 20px;
  list-style: none;
  font-size: 14px;
}
.principles > li:not(:last-child):before {
  content: "+";
  color: var(--forest);
  margin-right: 12px;
  font-size: 18px;
}
.tiny-note {
  font-size: 11px;
  letter-spacing: 1.4px;
}
.tiny-note span {
  font-size: 18px;
  margin-left: 10px;
}
/* Hit area grows to 44px without changing the row height. */
.tiny-note a {
  display: inline-block;
  padding-block: 12px;
  margin-block: -12px;
  text-decoration: none;
}
.tiny-note a:hover {
  text-decoration: underline;
}

/* Sections */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 44px;
}
.section-heading > .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p {
  font-size: 16px;
  max-width: 46ch;
  line-height: 1.75;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 28px;
}
.card-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card h3 {
  margin-bottom: 18px;
}
.service-card > p:not(.card-label) {
  font-size: 16px;
  line-height: 1.7;
}
.service-card ul {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--forest);
}
.service-card li {
  padding-block: 4px;
}
.service-card li:before {
  content: "—";
  margin-right: 9px;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
}
.service-card .text-link {
  margin-top: auto;
}
.text-link:hover {
  color: var(--ink);
}
.approach {
  background: #eef0e8;
  border-block: 1px solid var(--rule);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0;
  margin: 56px 0 0;
  list-style: none;
}
.step-number {
  display: block;
  font:
    600 17px Lora,
    Georgia,
    serif;
  color: var(--forest);
  border-top: 1px solid #9daea3;
  padding-top: 18px;
  margin-bottom: 28px;
}
.steps h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.steps p {
  font-size: 16px;
}
.step-result {
  display: block;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: var(--forest);
}
.approach-note {
  margin-top: 52px;
  font-size: 14px;
}
.approach-note span {
  font-size: 26px;
  margin-right: 14px;
  color: var(--forest);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.about-statement h2 {
  max-width: 450px;
}
.about-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ochre);
  margin-top: 32px;
}
.signature {
  font:
    600 18px/1.5 Lora,
    Georgia,
    serif;
  color: var(--forest);
  margin-top: 20px;
}
.about-copy {
  padding-top: 36px;
}
.about-copy p {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 60ch;
}
.about-copy .lead {
  font:
    600 26px/1.4 Lora,
    Georgia,
    serif;
  margin-bottom: 24px;
}
.contact {
  background: var(--forest);
  color: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact .eyebrow {
  color: var(--paper);
}
.contact h2 {
  margin-bottom: 24px;
}
.contact p {
  font-size: 17px;
  max-width: 54ch;
}
.contact-action {
  justify-self: end;
}
.button-light {
  background: var(--paper);
  color: var(--forest);
}
.button-light:hover {
  background: var(--peach);
  color: var(--ink);
}
.contact-email {
  display: block;
  margin-top: 24px;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.contact-action p {
  margin-top: 8px;
  font-size: 13px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 42px;
}
.footer .wordmark > span:first-child {
  font-size: 24px;
}
.footer .wordmark-sub {
  font-size: 9px;
}
.footer > p {
  font-family: Lora, Georgia, serif;
  font-size: 16px;
}
.footer-meta {
  font-size: 12px;
}
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.error-page p {
  font-size: 18px;
}
/* Grid and flex children may shrink below their content width when text is enlarged. */
.hero > *,
.service-grid > *,
.steps > *,
.about > *,
.contact-grid > * {
  min-width: 0;
}

/* Breakpoints */
@media (min-width: 1500px) {
  .hero {
    padding-block: 96px;
  }
  .hero-art {
    margin-left: 0;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 96px);
  }
  #navigation {
    gap: 24px;
  }
  .service-card {
    padding: 24px;
  }
  .steps {
    gap: 28px;
  }
  .about {
    gap: 56px;
  }
  .hero-intro {
    padding-right: 16px;
  }
}
@media (max-width: 959px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
    gap: 30px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    max-width: 640px;
  }
  .hero-intro {
    padding-right: 0;
    max-width: 60ch;
  }
  .hero-art {
    width: 85%;
    max-width: 560px;
    margin-inline: auto;
  }
  .section {
    padding-block: 64px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: 1 / -1;
  }
  .service-card:last-child h3 br {
    display: none;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading > p br {
    display: none;
  }
  .principles {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 30px;
  }
  .tiny-note {
    margin-left: auto;
  }
  .about {
    gap: 40px;
  }
  .contact-grid {
    gap: 40px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer-meta {
    width: 100%;
  }
  #navigation {
    gap: 20px;
  }
}
@media (max-width: 639px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .section {
    padding-block: 56px;
  }
  .site-header {
    padding-block: 26px;
    gap: 22px;
  }
  .wordmark > span:first-child {
    font-size: 26px;
  }
  .wordmark-sub {
    font-size: 9px;
    letter-spacing: 4.5px;
  }
  .header-tools {
    order: 0;
    margin-left: auto;
  }
  .menu-toggle:not([hidden]) {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    border: 0;
    padding: 10px 0 10px 10px;
    background: none;
    color: var(--forest);
    font-size: 14px;
  }
  #navigation {
    width: 100%;
    gap: 12px 24px;
  }
  .site-header #navigation {
    margin-left: 0;
  }
  #navigation a {
    font-size: 16px;
  }
  .js #navigation:not(.is-open) {
    display: none;
  }
  .hero {
    padding-block: 48px 36px;
    gap: 24px;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.1px;
  }
  .hero-intro {
    font-size: 16px;
    margin-block: 24px;
  }
  .hero-art {
    width: 100%;
  }
  .hero-art figcaption {
    font-size: 14px;
    margin-top: 10px;
  }
  .hero-secondary {
    font-size: 13px;
  }
  .principles {
    gap: 12px;
    font-size: 12px;
    padding-block: 22px;
  }
  .principles > li {
    width: 100%;
  }
  .tiny-note {
    margin: 4px 0 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: auto;
  }
  .service-card:last-child h3 br {
    display: block;
  }
  .service-card {
    padding: 28px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card h3 {
    font-size: 27px;
  }
  .service-icon {
    margin-bottom: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }
  .step-number {
    margin-bottom: 18px;
  }
  .step-result {
    margin-top: 16px;
  }
  .approach-note {
    margin-top: 30px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-copy {
    padding-top: 0;
  }
  .about-copy p {
    font-size: 16px;
  }
  .about-copy .lead {
    font-size: 25px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-action {
    justify-self: start;
  }
  .contact p {
    font-size: 16px;
  }
  .contact h2 br {
    display: none;
  }
  .footer {
    padding-block: 32px;
    gap: 24px;
  }
  .footer > p {
    font-size: 14px;
  }
  .footer-meta {
    font-size: 11px;
  }
  .button {
    gap: 18px;
    padding-inline: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
