:root {
  --ink: #193d35;
  --forest: #183b33;
  --paper: #f8f8f2;
  --sage: #dce7bc;
  --muted: #67716a;
  --line: #dce0d5;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

button, a, summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid #79904e;
  outline-offset: 5px;
}

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

[hidden] {
  display: none !important;
}

body .container {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 16px 22px;
  background: var(--sage);
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
}

.site-header > .container {
  height: 96px;
}

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

.brand-mark {
  width: 40px;
  height: 44px;
}

.brand-type {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  letter-spacing: 2.3px;
  line-height: 1.1;
}

.brand-type > span {
  display: block;
  margin-top: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  letter-spacing: 3.1px;
}

.desktop-nav {
  gap: 36px;
  margin-left: 28px;
  font-size: 13px;
}

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

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 13px 20px;
  border: 1px solid #98a49a;
  font-size: 13px;
  transition: background 180ms ease;
}

.header-cta:hover {
  background: var(--sage);
}

.header-cta span {
  font-size: 20px;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 44%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #183b33 0%, #183b33 35%, #183b33f0 43%, #183b3399 53%, #183b3310 72%), linear-gradient(0deg, #122d3260, transparent 40%);
}

.hero-lines {
  position: absolute;
  width: 710px;
  height: 710px;
  left: -325px;
  top: 195px;
  border: 1px solid #dce7bc0c;
  border-radius: 50%;
  box-shadow: 0 0 0 45px #dce7bc04, 0 0 0 90px #dce7bc03;
}

.hero-content {
  position: relative;
  padding-top: 62px;
  padding-bottom: 114px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.65px;
}

.light {
  color: #dde6ce;
}

.small-line {
  width: 26px;
  height: 1px;
  background: #b8c4a7;
}

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

h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(64px, 6.05vw, 88px);
  line-height: 1.04;
  letter-spacing: -3.5px;
}

h1 em {
  color: var(--sage);
  font-weight: 400;
}

.hero-description {
  margin-bottom: 31px;
  color: #e0e4dc;
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  gap: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 53px;
  padding: 15px 23px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

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

.button span, .text-link > span:not(.sr-only) {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.button-sage {
  background: var(--sage);
  color: var(--ink);
}

.button-sage:hover {
  background: #eaf1d5;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: #2b5548;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #93a18e;
  background: none;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.text-link:hover {
  border-bottom-color: currentColor;
}

.light-link {
  color: var(--paper);
  border-color: #708677;
}

.hero-caption {
  position: absolute;
  right: 56px;
  bottom: 49px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  border-left: 1px solid #dce7bc70;
  background: #102c2a45;
  backdrop-filter: blur(10px);
  font-size: 9px;
  line-height: 1.85;
  letter-spacing: 1.6px;
}

.hero-caption strong {
  font-weight: 400;
}

.caption-dot, .status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.caption-dot {
  margin-top: 5px;
}

.hero-scroll {
  position: absolute;
  left: max(56px, calc((100% - 1280px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #bdcbbb;
  font-size: 8px;
  letter-spacing: 2px;
}

.hero-scroll > span:last-child {
  font-size: 21px;
}

.principles {
  border-bottom: 1px solid var(--line);
  background: #f0f2e9;
}

.principles .container {
  padding-block: 28px;
}

.principles .container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid #d4dbcc;
  font-size: 12px;
  line-height: 1.75;
}

.principles .container > div:first-child {
  justify-content: flex-start;
  padding-left: 35px;
}

.principles .container > div:last-child {
  border: 0;
}

.principles strong {
  font-weight: 500;
}

.principles svg {
  width: 31px;
  height: 31px;
  color: #657c55;
}

.principle-symbol {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 41px;
  color: #657c55;
  line-height: 1;
}

.section-space {
  padding-block: 98px;
}

.section-number {
  color: #85917e;
  font-weight: 400;
  letter-spacing: 0;
}

body h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 3.8vw, 54px);
  letter-spacing: -1.8px;
  line-height: 1.13;
}

h2 em {
  color: #657b58;
  font-weight: 400;
}

.about-grid {
  gap: 72px;
}

.about-copy {
  max-width: 555px;
  padding-top: 4px;
}

.about-copy p {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.about-copy .text-link {
  margin-top: 4px;
}

.expertise {
  background: #edf0e6;
  border-top: 1px solid #e5e8df;
}

.section-heading {
  gap: 28px;
  margin-bottom: 40px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-grid {
  gap: 16px;
  align-items: start;
}

.service-card {
  min-height: 358px;
  padding: 29px 26px 25px;
  border: 1px solid #dce1d3;
  background: #f8f9f3;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: #9fad90;
  background: #fcfcf8;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-top svg {
  width: 38px;
  height: 38px;
}

.service-top > span {
  color: #88937e;
  font-size: 10px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -.65px;
}

.service-card > p {
  min-height: 90px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.service-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  cursor: pointer;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-card details[open] summary > span {
  transform: rotate(90deg);
}

.service-detail {
  padding-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #526348;
}

.expertise-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 27px 0 0;
  color: #69785f;
  font-size: 10px;
  letter-spacing: .4px;
}

.expertise-note .status-dot {
  background: #7a8c61;
}

.approach-grid {
  gap: 76px;
  align-items: center;
}

.approach-visual {
  position: relative;
  align-self: stretch;
  min-height: 530px;
  overflow: hidden;
  background: #374534;
}

.approach-visual > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 40px 30px 28px;
  background: linear-gradient(transparent, #142c27cc);
  color: #f2f4e9;
  font-size: 9px;
  line-height: 1.9;
  letter-spacing: 1.5px;
}

.note-line {
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.approach-copy h2 {
  font-size: clamp(36px, 3.2vw, 46px);
}

.approach-intro {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-block: 19px;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li > span {
  margin-top: 3px;
  color: #7f906d;
  font-size: 10px;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.conversation {
  padding-block: 62px;
  background: var(--sage);
  border-top: 1px solid #d2dcba;
}

.conversation .container {
  gap: 30px;
}

.conversation .eyebrow {
  margin-bottom: 19px;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.conversation h2 {
  font-size: clamp(36px, 3.6vw, 50px);
}

.conversation h2 em {
  color: var(--ink);
}

.conversation h2 + p {
  margin: 18px 0 0;
  color: #516345;
  font-size: 12px;
}

.site-footer {
  padding-top: 64px;
  background: #17392f;
  color: var(--paper);
}

.footer-grid {
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand > p {
  margin: 24px 0 0;
  color: #adbfb0;
  font-size: 12px;
  line-height: 1.85;
}

.footer-contact, .footer-address {
  padding-top: 5px;
}

.site-footer .eyebrow {
  margin-bottom: 24px;
  color: #bfcbae;
  font-size: 9px;
  letter-spacing: 1.8px;
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid #5f7762;
  font-size: 14px;
}

.email-link > span {
  font-size: 20px;
}

.email-link:hover, .phone-link:hover {
  color: var(--sage);
}

.phone-link {
  display: inline-block;
  margin-top: 19px;
  font-size: 14px;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #bdcba9;
  font-size: 7px;
  letter-spacing: 1.3px;
}

.site-footer address {
  color: #c5d0c2;
  font-size: 12px;
  line-height: 1.85;
  font-style: normal;
}

.footer-address .text-link {
  margin-top: 15px;
  font-size: 10px;
}

.footer-bottom {
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid #45604b;
  color: #b1c0af;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 17px;
}

.footer-bottom a > span {
  font-size: 18px;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  border: 1px solid #c6d0bd;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 100px #0c231d55;
}

dialog::backdrop {
  background: #102f29b8;
  backdrop-filter: blur(5px);
}

.dialog-content {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 400;
}

.dialog-content .eyebrow {
  margin-bottom: 19px;
  font-size: 9px;
}

.dialog-content h2 {
  font-size: 39px;
}

.dialog-intro {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

#contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
}

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

#contact-form input, #contact-form select, #contact-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 11px 12px;
  border: 1px solid #c6cebe;
  border-radius: 0;
  background: #fffefa;
  color: var(--ink);
  font-size: 13px;
}

#contact-form textarea {
  resize: vertical;
}

#contact-form .button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.form-status {
  padding: 12px;
  margin: 15px 0 0;
  background: #e6edda;
  font-size: 12px;
  line-height: 1.65;
}

#email-fallback {
  margin-top: 8px;
  font-size: 11px;
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1500px) {
  .hero-photo {
    inset-inline-start: 47%;
  }

  .hero-content {
    padding-top: 78px;
  }

  .hero-caption {
    right: max(56px, calc((100% - 1280px) / 2));
  }
}

@media (max-width: 1100px) {
  body .container {
    width: calc(100% - 72px);
  }

  .desktop-nav {
    gap: 25px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 71px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero-caption {
    right: 36px;
    bottom: 29px;
    font-size: 8px;
  }

  .hero-scroll {
    left: 36px;
  }

  .about-grid, .approach-grid {
    gap: 42px;
  }

  .service-card {
    padding-inline: 19px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .footer-grid {
    gap: 35px;
  }

  .email-link {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .approach-visual {
    min-height: 430px;
  }

  .approach-copy {
    max-width: 640px;
  }

  .service-card > p {
    min-height: 66px;
  }

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

  .footer-address {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }

  body .container {
    width: calc(100% - 44px);
  }

  .site-header > .container {
    height: 80px;
  }

  .brand-mark {
    width: 31px;
    height: 36px;
  }

  .brand {
    gap: 9px;
  }

  .brand-type {
    font-size: 19px;
    letter-spacing: 1.8px;
  }

  .brand-type > span {
    margin-top: 6px;
    font-size: 6.5px;
    letter-spacing: 2.3px;
  }

  body .desktop-nav, .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid #c4ccbc;
    background: transparent;
  }

  .menu-toggle > span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav:not([hidden]) {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: block;
    padding: 10px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 16px 30px #12352818;
  }

  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 45px;
    padding-bottom: 278px;
  }

  .hero-photo {
    inset: auto 0 0;
    height: 390px;
  }

  .hero-photo img {
    object-position: center 57%;
  }

  .hero-shade {
    background: linear-gradient(180deg, #183b33 0%, #183b33 48%, #183b33f0 55%, #183b3330 77%, #102e2840);
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(49px, 11.7vw, 77px);
    line-height: 1.04;
    letter-spacing: -2.5px;
  }

  .hero .eyebrow {
    gap: 9px;
    margin-bottom: 26px;
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .small-line {
    width: 18px;
  }

  .hero-description {
    max-width: 350px;
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.8;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    min-height: 49px;
    padding-inline: 18px;
    gap: 25px;
    font-size: 11px;
  }

  .hero-actions .text-link {
    gap: 12px;
    font-size: 11px;
  }

  .hero-caption {
    right: 22px;
    bottom: 24px;
    padding: 14px 18px;
    font-size: 7px;
    letter-spacing: 1.2px;
  }

  .hero-scroll {
    display: none;
  }

  .principles .container {
    padding-block: 8px;
  }

  .principles .container > div,
  .principles .container > div:first-child {
    justify-content: flex-start;
    gap: 20px;
    padding: 17px 22px;
    border: 0;
    border-bottom: 1px solid #d4dbcc;
    font-size: 12px;
  }

  .principles .container > div:last-child {
    border: 0;
  }

  .principles svg, .principle-symbol {
    width: 29px;
    flex-shrink: 0;
  }

  .section-space {
    padding-block: 64px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  body h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .about-grid {
    gap: 29px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .about-copy p {
    font-size: 13px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 28px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 0;
    padding: 25px;
  }

  .service-top {
    margin-bottom: 22px;
  }

  .service-card h3 {
    font-size: 30px;
  }

  .service-card > p {
    min-height: 0;
    font-size: 13px;
  }

  .service-card summary {
    padding-block: 15px 2px;
    font-size: 12px;
  }

  .expertise-note {
    font-size: 9px;
  }

  .approach-grid {
    gap: 38px;
  }

  .approach-visual {
    min-height: 390px;
  }

  .approach-copy h2 {
    font-size: 37px;
  }

  .conversation {
    padding-block: 47px;
  }

  .conversation .eyebrow {
    max-width: 265px;
    font-size: 8px;
    line-height: 1.8;
  }

  .conversation h2 {
    max-width: 360px;
    font-size: 41px;
  }

  .conversation h2 + p {
    max-width: 300px;
    line-height: 1.8;
  }

  .conversation .button {
    width: 100%;
    max-width: 360px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 37px;
    padding-bottom: 39px;
  }

  .footer-brand > p {
    margin-top: 20px;
  }

  .footer-contact, .footer-address {
    max-width: 360px;
  }

  .email-link {
    font-size: 14px;
  }

  .site-footer .eyebrow {
    margin-bottom: 18px;
  }

  .footer-bottom {
    padding-block: 23px;
    font-size: 8px;
    line-height: 1.7;
  }

  .dialog-content {
    padding: 40px 24px 27px;
  }

  .dialog-content h2 {
    font-size: 34px;
  }

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

  #contact-form input, #contact-form select, #contact-form textarea {
    font-size: 16px;
  }
}

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

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
