/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .table {
    display: table;
  }
}
:root {
  --ink: #0d211f;
  --green: #173d36;
  --sage: #b9c8b6;
  --cream: #f2efe5;
  --orange: #e85d2a;
  --line: #cfd6cc;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial,Helvetica,sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1240px,calc(100% - 64px));
  margin: auto;
}
.nav {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13,33,31,.2);
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: .16em;
}
.brand strong {
  font-size: 14px;
}
.mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-block;
  overflow: hidden;
  background: var(--orange);
  clip-path: polygon(50% 0,100% 100%,0 100%);
}
.mark:after {
  content: "";
  position: absolute;
  background: var(--cream);
  width: 29px;
  height: 29px;
  left: 16px;
  top: 14px;
  transform: rotate(45deg);
}
.mark i {
  position: absolute;
  background: var(--ink);
  width: 12px;
  height: 23px;
  bottom: -3px;
  left: 10px;
  transform: rotate(28deg);
  z-index: 2;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
}
.navCta,.button {
  background: var(--orange);
  color: white;
  padding: 16px 19px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.navCta span,.button span {
  font-size: 17px;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 65px;
  padding-top: 56px;
  padding-bottom: 74px;
}
.eyebrow,.kicker {
  font-size: 11px;
  letter-spacing: .19em;
  font-weight: 700;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange);
}
h1,h2,blockquote {
  font-family: Georgia,'Times New Roman',serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(54px,6.2vw,92px);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 28px 0 30px;
}
h1 em {
  color: var(--orange);
  font-weight: 400;
}
.lede {
  font-family: Georgia,serif;
  font-size: 22px;
  line-height: 1.5;
  max-width: 590px;
  color: #3e4e4b;
}
.actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}
.button {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 13px;
}
.textlink,.lightlink {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.textlink span,.lightlink span {
  margin-left: 12px;
}
.signal {
  background: var(--ink);
  color: white;
  padding: 20px;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 20px 0 var(--sage);
}
.signalTop {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .12em;
  display: flex;
  justify-content: space-between;
  color: #a9b8b5;
}
.online {
  color: #93c9a5;
}
.mountain {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 35px 35px;
  margin: 22px 0;
}
.mountain span {
  position: absolute;
}
.m1 {
  width: 330px;
  height: 330px;
  border: 1px solid #5b7770;
  transform: rotate(45deg);
  left: 65px;
  top: 135px;
}
.m2 {
  width: 230px;
  height: 230px;
  border: 1px solid #5b7770;
  transform: rotate(45deg);
  left: 210px;
  top: 205px;
}
.m3 {
  width: 200px;
  height: 200px;
  border-top: 3px solid var(--orange);
  transform: rotate(45deg);
  left: 105px;
  top: 215px;
}
.horizon {
  left: 0;
  right: 0;
  bottom: 58px;
  border-top: 1px solid #678079;
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  left: 50%;
  top: 46%;
  box-shadow: 0 0 0 9px rgba(232,93,42,.16);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #3a4d49;
  padding-top: 18px;
}
.metrics div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #3a4d49;
  padding-left: 18px;
}
.metrics div:first-child {
  padding-left: 0;
}
.metrics div:last-child {
  border: 0;
}
.metrics b {
  font: 24px Georgia,serif;
}
.metrics small {
  font: 8px monospace;
  letter-spacing: .1em;
  color: #82938f;
  margin-top: 7px;
}
.trust {
  background: #e5e6dd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trustInner {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 55px;
}
.trust p {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #71817d;
  white-space: nowrap;
}
.trustInner div {
  display: flex;
  flex: 1;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
}
.services {
  padding-top: 120px;
  padding-bottom: 130px;
}
.sectionHead {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  margin-bottom: 55px;
}
.kicker {
  color: var(--orange);
  margin: 0 0 18px;
}
.sectionHead h2,.approach h2,.contact h2 {
  font-size: clamp(45px,5vw,68px);
  letter-spacing: -.04em;
  margin: 0;
}
.sectionHead>p {
  font-family: Georgia,serif;
  font-size: 18px;
  line-height: 1.55;
  color: #53615e;
}
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #84918d;
  border-left: 1px solid #84918d;
}
.service {
  min-height: 290px;
  padding: 23px;
  position: relative;
  border-right: 1px solid #84918d;
  border-bottom: 1px solid #84918d;
  transition: .25s;
}
.service:hover {
  background: var(--green);
  color: white;
  transform: translateY(-4px);
}
.service>span {
  font: 10px monospace;
  color: var(--orange);
}
.service h3 {
  font: 21px Georgia,serif;
  line-height: 1.15;
  margin: 46px 0 16px;
  max-width: 190px;
}
.service p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6966;
}
.service:hover p {
  color: #c0ceca;
}
.service i {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--orange);
  font-style: normal;
}
.approach {
  background: var(--green);
  color: white;
  padding: 125px 0;
}
.approachGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.light {
  color: #a9c0b8;
}
.approach h2 {
  margin: 16px 0 30px;
}
.approachCopy>p:not(.kicker) {
  color: #bcc9c5;
  font: 18px Georgia,serif;
  line-height: 1.6;
  max-width: 520px;
}
.lightlink {
  display: inline-block;
  color: white;
  margin-top: 28px;
}
.principles article {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #587069;
}
.principles article:last-child {
  border-bottom: 1px solid #587069;
}
.principles span {
  font: 10px monospace;
  color: #9fb3ad;
}
.principles h3 {
  font: 22px Georgia,serif;
  margin: 0 0 10px;
}
.principles p {
  font-size: 13px;
  color: #aebeba;
  line-height: 1.6;
  margin: 0;
}
.experience {
  padding: 125px 0;
}
.expLine {
  height: 1px;
  background: #9aa6a2;
  margin-bottom: 35px;
}
.expGrid {
  display: grid;
  grid-template-columns: 220px 1fr 340px;
  gap: 55px;
}
.expGrid blockquote {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.025em;
}
.expCopy>p {
  font: 18px Georgia,serif;
  line-height: 1.5;
  margin-top: 0;
}
.expCopy ul {
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
}
.expCopy li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.contact {
  background: var(--orange);
  color: white;
  padding: 110px 0;
}
.contactInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
.contact .light {
  color: #ffd5c6;
}
.contactCopy {
  max-width: 520px;
}
.contactCopy p {
  font: 20px Georgia,serif;
  line-height: 1.55;
  margin: 0 0 30px;
}
.cream {
  background: var(--cream);
  color: var(--ink);
}
.footer {
  background: var(--ink);
  color: white;
  padding: 60px 0;
}
.footerInner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}
.footer .mark:after {
  background: var(--ink);
}
.footerInner>p {
  font: 16px Georgia,serif;
  color: #99aaa6;
  line-height: 1.5;
}
.footerInner>div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-size: 10px;
  color: #7f928d;
}
.footerInner a:last-child {
  color: white;
}
@media (max-width:900px) {
  .shell {
    width: min(100% - 36px,700px);
  }
  .nav {
    height: 86px;
  }
  .navlinks>a:not(.navCta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .signal {
    min-height: 420px;
  }
  .trustInner {
    align-items: flex-start;
    padding: 35px 0;
    flex-direction: column;
    gap: 18px;
  }
  .trustInner div {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  .serviceGrid {
    grid-template-columns: repeat(2,1fr);
  }
  .approachGrid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .expGrid {
    grid-template-columns: 1fr;
  }
  .sectionHead {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contactInner {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .footerInner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footerInner>div {
    align-items: flex-start;
  }
}
@media (max-width:560px) {
  .shell {
    width: calc(100% - 30px);
  }
  .navCta {
    padding: 13px;
  }
  .navCta {
    font-size: 0;
  }
  .navCta span {
    font-size: 18px;
  }
  .hero {
    gap: 40px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 50px;
  }
  .lede {
    font-size: 18px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .signal {
    min-height: 350px;
    padding: 15px;
    box-shadow: 10px 10px 0 var(--sage);
  }
  .metrics b {
    font-size: 18px;
  }
  .metrics small {
    font-size: 6px;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 250px;
  }
  .services,.experience {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .approach {
    padding: 85px 0;
  }
  .expGrid blockquote {
    font-size: 34px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact h2 {
    font-size: 55px;
  }
  .contact .button {
    font-size: 11px;
  }
  .footer {
    padding: 50px 0;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .service {
    transition: none;
  }
}
.brandLogo {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.footer .brandLogo {
  filter: invert(1);
  mix-blend-mode: screen;
}
@media (max-width:560px) {
  .brandLogo {
    width: 52px;
    height: 52px;
  }
}
.latestNotes {
  background: #e5e6dd;
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
}
.latestHead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.latestHead h2,.notesHero h1,.article h1 {
  font-family: Georgia,serif;
  font-weight: 400;
  letter-spacing: -.04em;
}
.latestHead h2 {
  font-size: 58px;
  line-height: 1;
  margin: 0;
}
.latestGrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-left: 1px solid #8d9995;
  border-top: 1px solid #8d9995;
}
.latestCard {
  min-height: 330px;
  border-right: 1px solid #8d9995;
  border-bottom: 1px solid #8d9995;
  padding: 28px;
  position: relative;
  transition: .25s;
}
.latestCard:hover {
  background: var(--cream);
  transform: translateY(-4px);
}
.postMeta {
  font: 10px monospace !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange) !important;
}
.latestCard h3 {
  font: 28px Georgia,serif;
  line-height: 1.08;
  margin: 55px 0 18px;
  max-width: 290px;
}
.latestCard>p:not(.postMeta) {
  font-size: 13px;
  line-height: 1.6;
  color: #586662;
}
.latestCard>span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  font: 10px monospace;
  color: #71817d;
}
.latestCard>i {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--orange);
  font-style: normal;
}
.notesHero {
  padding: 105px 0 95px;
}
.notesHero h1 {
  font-size: clamp(60px,8vw,108px);
  line-height: .9;
  margin: 28px 0;
}
.notesHero h1 em {
  color: var(--orange);
  font-weight: 400;
}
.notesHero>p:last-child {
  font: 21px Georgia,serif;
  line-height: 1.55;
  color: #53615e;
  max-width: 650px;
}
.notesList {
  padding-bottom: 130px;
}
.postRow {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  gap: 30px;
  padding: 42px 10px;
  border-top: 1px solid #8d9995;
  transition: .2s;
}
.postRow:last-child {
  border-bottom: 1px solid #8d9995;
}
.postRow:hover {
  padding-left: 22px;
  background: #e8e6dc;
}
.postNumber {
  font: 11px monospace;
  color: #7e8b87;
}
.postRow h2 {
  font: 40px Georgia,serif;
  letter-spacing: -.025em;
  margin: 10px 0 12px;
}
.postRow div>p:last-child {
  font-size: 14px;
  line-height: 1.6;
  color: #5e6a67;
  max-width: 700px;
}
.postRow i {
  color: var(--orange);
  font-style: normal;
  font-size: 20px;
}
.article {
  padding: 80px 0 120px;
}
.backLink {
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 70px;
  border-bottom: 1px solid;
}
.article>h1 {
  font-size: clamp(54px,7vw,92px);
  line-height: .95;
  max-width: 950px;
  margin: 24px 0 30px;
}
.articleDek {
  font: 24px Georgia,serif;
  line-height: 1.5;
  color: #4c5c58;
  max-width: 780px;
}
.articleRule {
  height: 1px;
  background: #8d9995;
  margin: 65px 0;
}
.articleBody {
  max-width: 760px;
  margin: auto;
}
.articleBody section {
  margin-bottom: 48px;
}
.articleBody h2 {
  font: 36px Georgia,serif;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.articleBody p {
  font: 18px Georgia,serif;
  line-height: 1.75;
  color: #334441;
}
.articleCta {
  max-width: 760px;
  margin: 80px auto 0;
  background: var(--green);
  color: white;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.articleCta p {
  font: 24px Georgia,serif;
  margin: 0;
  max-width: 390px;
}
.articleCta .button {
  white-space: nowrap;
}
@media (max-width:900px) {
  .latestGrid {
    grid-template-columns: 1fr;
  }
  .latestCard {
    min-height: 270px;
  }
  .latestHead {
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }
  .postRow h2 {
    font-size: 32px;
  }
  .articleCta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width:560px) {
  .latestNotes {
    padding: 80px 0;
  }
  .latestHead h2 {
    font-size: 45px;
  }
  .postRow {
    grid-template-columns: 34px 1fr 16px;
    gap: 8px;
    padding: 30px 0;
  }
  .postRow h2 {
    font-size: 27px;
  }
  .notesHero {
    padding: 70px 0;
  }
  .notesHero h1 {
    font-size: 54px;
  }
  .article {
    padding: 55px 0 80px;
  }
  .article>h1 {
    font-size: 48px;
  }
  .articleDek {
    font-size: 20px;
  }
  .articleBody p {
    font-size: 17px;
  }
  .articleCta {
    padding: 25px;
  }
}
