:root {
  --ink: #20252b;
  --ink-soft: #2a3137;
  --slate: #59636e;
  --slate-light: #79838c;
  --accent: #d6a861;
  --accent-deep: #795827;
  --paper: #f5f6f3;
  --warm: #eee9df;
  --surface: #ffffff;
  --line: #cbd1cf;
  --line-dark: #4a535a;
  --max: 1180px;
  --shadow: 0 16px 40px rgba(32, 37, 43, .08);
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

body,
button,
input,
textarea {
  font-family: inherit;
}

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

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

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

button {
  cursor: pointer;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 32px;
  padding: 7px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.preview-bar__label,
.preview-bar__context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-bar__context {
  color: #c9d0cf;
  font-weight: 500;
  letter-spacing: .1em;
}

.preview-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 168, 97, .15);
}

.site-header {
  position: relative;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav phone";
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.wordmark__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
}

.wordmark__text {
  display: grid;
  gap: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.wordmark__text strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .08em;
}

.header-phone {
  grid-area: phone;
  display: inline-grid;
  gap: 0;
  justify-items: end;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.header-phone__label {
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  grid-area: nav;
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 7px 0;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  grid-area: cta;
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.button span {
  font-size: 17px;
  font-weight: 400;
  line-height: .7;
}

.button--small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 10px;
}

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

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

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

.button--accent:hover {
  color: var(--ink);
  background: #e2ba7e;
  border-color: #e2ba7e;
}

.button--outline-light {
  color: var(--paper);
  background: transparent;
  border-color: #899197;
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span,
.card-link span {
  font-size: 17px;
  font-weight: 400;
  line-height: .7;
  transition: transform .2s ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--dark {
  color: var(--ink);
}

.text-link--light {
  color: var(--paper);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.045em;
}

h1 em,
h2 em {
  color: var(--accent-deep);
  font-style: normal;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.55rem);
  line-height: .94;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  line-height: .99;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.05;
}

p {
  color: var(--slate);
}

.body-large {
  max-width: 500px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
}

.body-large--light {
  color: #cbd1d0;
}

.section {
  padding: 126px 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
}

.section--warm {
  background: var(--warm);
}

/* Home */
.hero {
  overflow: hidden;
}

.hero--home {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 134px);
  padding-bottom: 92px;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 35px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 28px;
}

.hero__aside-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 26px 26px 25px;
  color: var(--paper);
  background: var(--ink-soft);
  border: 1px solid #3f494f;
  box-shadow: 24px 24px 0 var(--accent);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
  content: "";
}

.hero-visual::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-visual::after {
  right: 16px;
  bottom: 16px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-visual__topline,
.hero-visual__labels,
.hero-visual__caption {
  position: relative;
  z-index: 1;
}

.hero-visual__topline {
  display: flex;
  justify-content: space-between;
  color: #b7c0c0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-visual img {
  width: min(100%, 430px);
  margin: 33px auto 26px;
}

.hero-visual__labels {
  display: grid;
  gap: 10px;
  width: 160px;
  margin-left: auto;
}

.hero-visual__labels span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8dddd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-visual__labels i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.hero-visual__caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-top: 15px;
  color: #c8cfce;
  border-top: 1px solid #505b61;
  font-size: 12px;
  line-height: 1.4;
}

.hero-bottomline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-bottomline > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding-right: 18px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-bottomline > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.metric {
  color: var(--accent-deep);
  font-size: 10px;
  letter-spacing: .12em;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .56fr);
  gap: 60px;
  align-items: end;
}

.section-heading h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.section-heading__side {
  max-width: 400px;
  margin: 0;
}

.section-heading__side p {
  margin-bottom: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 425px;
  padding: 28px;
  border: 1px solid var(--line);
}

.service-card--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card--light {
  background: var(--surface);
}

.service-card--outlined {
  background: transparent;
  border-color: var(--slate);
}

.service-card__number {
  color: var(--slate-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-card--dark .service-card__number {
  color: #9ea8aa;
}

.service-card__icon {
  position: relative;
  height: 80px;
  margin: 24px 0 26px;
}

.icon-lines {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 57px;
  height: 52px;
  border: 2px solid var(--accent);
  border-left-width: 7px;
}

.icon-lines::before,
.icon-lines::after {
  position: absolute;
  background: var(--accent);
  content: "";
}

.icon-lines::before {
  top: 14px;
  right: 8px;
  left: 10px;
  height: 2px;
}

.icon-lines::after {
  right: 8px;
  bottom: 12px;
  left: 10px;
  height: 2px;
}

.icon-square {
  position: absolute;
  top: 0;
  left: 47px;
  width: 24px;
  height: 24px;
  background: var(--accent);
}

.icon-sun {
  position: absolute;
  top: 14px;
  left: 10px;
  width: 47px;
  height: 47px;
  border: 6px solid var(--accent);
  border-radius: 50%;
}

.icon-sun::after {
  position: absolute;
  right: -15px;
  bottom: -12px;
  width: 32px;
  height: 5px;
  background: var(--accent);
  content: "";
  transform: rotate(-45deg);
}

.icon-sun__ray {
  position: absolute;
  width: 17px;
  height: 5px;
  background: var(--accent);
}

.ray-one {
  top: 11px;
  left: 70px;
  transform: rotate(-28deg);
}

.ray-two {
  top: 46px;
  left: 77px;
  transform: rotate(24deg);
}

.icon-block {
  position: absolute;
  width: 37px;
  height: 37px;
  border: 2px solid var(--slate);
}

.icon-block--one {
  top: 8px;
  left: 3px;
}

.icon-block--two {
  top: 27px;
  left: 30px;
  background: var(--accent);
  border-color: var(--accent);
}

.icon-block--three {
  top: 4px;
  left: 56px;
  border-color: var(--accent-deep);
}

.service-card h3 {
  max-width: 260px;
}

.service-card--dark h3 {
  color: var(--paper);
}

.service-card p {
  max-width: 300px;
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.6;
}

.service-card--dark p {
  color: #c9d0d0;
}

.card-link {
  margin-top: auto;
}

.service-card .card-link {
  position: relative;
  top: 10px;
}

.card-link--light {
  color: var(--accent);
}

.service-ribbon {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.service-ribbon__intro {
  display: grid;
  gap: 8px;
}

.service-ribbon__intro .eyebrow {
  margin-bottom: 0;
  font-size: 9px;
}

.service-ribbon__intro strong {
  font-size: 14px;
  line-height: 1.3;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.inline-list li {
  color: var(--slate);
  font-size: 12px;
}

.inline-list li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  vertical-align: 2px;
}

.area-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, .72fr);
  gap: 80px;
  align-items: start;
}

.area-section h2 {
  max-width: 630px;
  color: var(--paper);
}

.area-section .button {
  margin-top: 20px;
}

.area-list-wrap {
  padding-top: 8px;
}

.area-list__label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.area-list__label--counties {
  padding-top: 25px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.area-list,
.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li,
.county-list li {
  padding: 10px 12px;
  color: #dfe4e2;
  border: 1px solid #59636a;
  font-size: 12px;
}

.county-list li {
  color: #bec8c7;
  border-color: #4a545a;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, .96fr);
  gap: 80px;
  align-items: center;
}

.about-teaser__stamp,
.story-stamp {
  display: grid;
  place-items: center;
  align-content: center;
  width: min(100%, 250px);
  aspect-ratio: 1;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  box-shadow: 10px 10px 0 rgba(121, 88, 39, .12);
  transform: rotate(-7deg);
}

.about-teaser__stamp span,
.story-stamp__overline,
.story-stamp__underline {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
}

.about-teaser__stamp strong,
.story-stamp strong {
  margin: 7px 0;
  font-size: 48px;
  letter-spacing: -.08em;
  line-height: 1;
}

.about-teaser__copy {
  max-width: 700px;
}

.about-teaser__copy h2 {
  max-width: 680px;
}

.about-teaser__copy p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.7;
}

.contact-band {
  border-top: 1px solid var(--line);
}

.contact-band__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .88fr);
  gap: 100px;
  align-items: start;
}

.contact-band h2 {
  max-width: 550px;
}

.contact-actions {
  border-top: 1px solid var(--line);
}

.contact-action {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "label arrow" "value arrow";
  gap: 6px 18px;
  padding: 18px 0 17px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-action:hover strong {
  color: var(--accent-deep);
}

.contact-action__label {
  grid-area: label;
  color: var(--slate);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-action strong {
  grid-area: value;
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -.03em;
  transition: color .2s ease;
}

.contact-action > span:last-child {
  grid-area: arrow;
  align-self: center;
  font-size: 22px;
}

.contact-action--primary {
  padding: 21px 18px;
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.contact-action--primary .contact-action__label {
  color: #5d472a;
}

/* Inner page heroes */
.inner-hero {
  padding: 112px 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 82px;
}

.inner-hero h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7.4vw, 6.8rem);
}

.inner-hero__intro {
  max-width: 400px;
  padding-bottom: 5px;
}

.inner-hero__intro p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
}

.page-index {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 65px;
  border-top: 1px solid var(--line);
}

.page-index__label {
  flex: 0 0 auto;
  margin: 0;
  color: var(--accent-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-index nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.page-index nav a {
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.page-index nav a:hover {
  color: var(--accent-deep);
}

/* Services page */
.service-detail {
  padding: 115px 0;
}

.service-detail--ink {
  color: var(--paper);
  background: var(--ink);
}

.service-detail--paper {
  background: var(--paper);
}

.service-detail--warm {
  background: var(--warm);
}

.service-detail--outline {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(350px, .74fr);
  gap: clamp(55px, 10vw, 150px);
}

.service-detail__intro h2 {
  max-width: 600px;
}

.service-detail--ink h2 {
  color: var(--paper);
}

.service-detail__intro > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.65;
}

.service-detail--ink .service-detail__intro > p:not(.eyebrow) {
  color: #cbd1d0;
}

.service-detail__list {
  padding-top: 10px;
}

.list-label {
  padding-bottom: 13px;
  margin-bottom: 0;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-detail--ink .list-label {
  color: var(--accent);
  border-color: var(--line-dark);
}

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

.service-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.service-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.service-list--light li {
  color: var(--paper);
  border-color: var(--line-dark);
}

.service-detail__note {
  padding-top: 18px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.55;
}

.service-detail--ink .service-detail__note {
  color: #aeb8b8;
}

.service-list--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
}

.detail-callout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding-top: 24px;
}

.detail-callout__mark {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.detail-callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.area-strip {
  padding: 72px 0;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.area-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .8fr);
  gap: 80px;
  align-items: end;
}

.area-strip h2 {
  margin-bottom: 0;
}

.area-strip__grid > div:last-child p {
  margin-bottom: 23px;
  font-size: 15px;
}

.cta-section,
.about-close {
  padding: 110px 0;
  color: var(--paper);
  background: var(--ink-soft);
}

.cta-section__inner,
.about-close__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr);
  gap: 80px;
  align-items: end;
}

.cta-section h2,
.about-close h2 {
  max-width: 650px;
  color: var(--paper);
}

.cta-section p:not(.eyebrow),
.about-close p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: #cbd1d0;
  font-size: 17px;
  line-height: 1.6;
}

.cta-section__actions,
.about-close__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 26px;
  justify-content: flex-start;
}

/* About page */
.story-section {
  padding: 126px 0;
  background: var(--warm);
}

.story-section__grid {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, .95fr);
  gap: 100px;
  align-items: center;
}

.story-stamp {
  width: min(100%, 270px);
  justify-self: center;
}

.story-section__copy {
  max-width: 700px;
}

.story-section__copy h2 {
  max-width: 640px;
}

.story-section__copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}

.principles-section {
  padding: 126px 0;
  background: var(--paper);
}

.section-heading__side--standalone {
  align-self: end;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 290px;
  padding: 26px 26px 32px 0;
}

.principle + .principle {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.principle__number {
  display: block;
  margin-bottom: 56px;
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.principle h3 {
  max-width: 210px;
  font-size: 1.45rem;
}

.principle p {
  max-width: 230px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
}

.property-section {
  padding: 126px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.property-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .85fr);
  gap: 100px;
  align-items: start;
}

.property-section h2 {
  max-width: 600px;
}

.property-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.property-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.property-list li:nth-child(odd) {
  margin-right: 22px;
}

.property-list li:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.property-list span {
  color: var(--accent-deep);
  font-size: 9px;
  letter-spacing: .12em;
}

/* Contact page */
.contact-details {
  padding: 60px 0 112px;
  background: var(--paper);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-detail-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  text-decoration: none;
}

.contact-detail-card__label {
  margin-bottom: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-detail-card strong {
  max-width: 100%;
  margin: 30px 0 12px;
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.contact-detail-card--dark {
  color: var(--paper);
  background: var(--ink);
}

.contact-detail-card--dark .contact-detail-card__label,
.contact-detail-card--gold .contact-detail-card__label {
  color: #5c472a;
}

.contact-detail-card--dark .contact-detail-card__label {
  color: var(--accent);
}

.contact-detail-card--dark strong {
  color: var(--paper);
}

.contact-detail-card--dark:hover strong,
.contact-detail-card--gold:hover strong {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-detail-card--gold {
  background: var(--accent);
}

.contact-detail-card--outline {
  background: transparent;
  border: 1px solid var(--line);
}

.contact-detail-card--outline strong {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.contact-detail-card > span:not(.contact-detail-card__label):not(.contact-detail-card__action) {
  color: var(--slate);
  font-size: 14px;
}

.contact-detail-card--dark > span:not(.contact-detail-card__label):not(.contact-detail-card__action) {
  color: #cbd1d0;
}

.contact-detail-card__action {
  margin-top: 25px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-section {
  padding: 126px 0;
  background: var(--warm);
  border-top: 1px solid var(--line);
}

.quote-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(400px, .95fr);
  gap: 100px;
  align-items: start;
}

.quote-section__intro h2 {
  max-width: 550px;
}

.quote-section__intro > p:not(.eyebrow) {
  max-width: 500px;
  font-size: 17px;
  line-height: 1.65;
}

.quote-note {
  display: flex;
  gap: 13px;
  max-width: 470px;
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.quote-note__icon {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.quote-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.quote-note strong {
  color: var(--ink);
}

.form-panel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-panel__index,
.form-panel__status {
  color: var(--accent-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-panel__status {
  color: var(--slate);
}

.form-note {
  margin: 17px 0 23px;
  color: var(--slate);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 15px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.form-grid textarea {
  min-height: 134px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  background: var(--surface);
  border-color: var(--accent-deep);
  outline: none;
}

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

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  grid-template-areas: none;
  gap: 10px !important;
  align-items: flex-start;
  color: var(--slate) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.checkbox-label input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.form-button {
  width: 100%;
  margin-top: 23px;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--accent-deep);
  font-size: 12px;
  line-height: 1.45;
}

.contact-follow {
  padding: 82px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-follow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.contact-follow h2 {
  margin-bottom: 0;
}

.contact-follow__links {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-follow__links a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.contact-follow__links a:hover {
  color: var(--accent-deep);
}

/* Footer */
.site-footer {
  color: #c5cdcb;
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr .65fr 1.25fr .55fr;
  gap: 40px;
  padding-top: 62px;
  padding-bottom: 62px;
}

.wordmark--footer {
  color: var(--paper);
}

.wordmark--footer .wordmark__mark {
  color: var(--ink);
  background: var(--accent);
}

.footer-brand p {
  max-width: 220px;
  margin: 20px 0 0;
  color: #9fa9a8;
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-heading {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span:not(.footer-heading) {
  color: #c5cdcb;
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 16px;
  padding-bottom: 18px;
  color: #899493;
  border-top: 1px solid #414b51;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (min-width: 1040px) {
  .header-cta {
    display: inline-flex;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "brand nav phone cta";
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand phone phone" "nav nav nav";
    gap: 13px 22px;
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .header-phone {
    justify-self: end;
  }

  .site-nav {
    justify-self: start;
  }

  .site-nav ul {
    gap: 15px 24px;
  }

  .hero__grid,
  .inner-hero__grid,
  .section-heading--split,
  .area-section__grid,
  .about-teaser__grid,
  .contact-band__grid,
  .service-detail__grid,
  .area-strip__grid,
  .cta-section__inner,
  .about-close__inner,
  .story-section__grid,
  .property-section__grid,
  .quote-section__grid {
    gap: 52px;
  }

  h1 {
    font-size: clamp(3.1rem, 8vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 5.8vw, 3.8rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  }

  .hero-visual {
    min-height: 470px;
    box-shadow: 14px 14px 0 var(--accent);
  }

  .hero-bottomline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bottomline > div:nth-child(3) {
    border-left: 0;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .principle:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .principle:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1.4fr;
  }

  .footer-links:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 34px), var(--max));
  }

  .preview-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 17px;
  }

  .preview-bar__context {
    font-size: 8px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand phone" "nav nav";
    gap: 15px 12px;
  }

  .wordmark__text strong {
    font-size: 17px;
  }

  .header-phone {
    font-size: 12px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav ul {
    width: max-content;
    gap: 18px;
  }

  .site-nav a {
    padding-bottom: 5px;
    font-size: 10px;
  }

  .section,
  .service-detail,
  .story-section,
  .principles-section,
  .property-section,
  .quote-section {
    padding: 78px 0;
  }

  .hero__grid,
  .inner-hero__grid,
  .section-heading--split,
  .area-section__grid,
  .about-teaser__grid,
  .contact-band__grid,
  .service-detail__grid,
  .area-strip__grid,
  .cta-section__inner,
  .about-close__inner,
  .story-section__grid,
  .property-section__grid,
  .quote-section__grid,
  .contact-follow__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: .94;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .hero__lead,
  .body-large,
  .inner-hero__intro p {
    font-size: 16px;
  }

  .hero__grid {
    padding-top: 74px;
    padding-bottom: 68px;
  }

  .hero__actions,
  .cta-section__actions,
  .about-close__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__aside-note {
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 430px;
    padding: 22px;
    box-shadow: 8px 8px 0 var(--accent);
  }

  .hero-visual img {
    margin-top: 27px;
  }

  .hero-bottomline {
    grid-template-columns: 1fr;
  }

  .hero-bottomline > div,
  .hero-bottomline > div + div {
    min-height: 55px;
    padding: 0;
    border-left: 0;
  }

  .hero-bottomline > div + div {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .section-heading--split {
    margin-bottom: 36px;
  }

  .section-heading__side {
    max-width: 470px;
  }

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

  .service-card,
  .service-card:last-child {
    min-height: 350px;
    grid-column: auto;
  }

  .service-ribbon {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .area-section__grid {
    gap: 30px;
  }

  .area-section .button {
    width: 100%;
  }

  .area-list-wrap {
    padding-top: 0;
  }

  .about-teaser__stamp,
  .story-stamp {
    width: 210px;
    justify-self: start;
  }

  .about-teaser__copy p:not(.eyebrow),
  .story-section__copy p:not(.eyebrow),
  .service-detail__intro > p:not(.eyebrow),
  .cta-section p:not(.eyebrow),
  .about-close p:not(.eyebrow),
  .quote-section__intro > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .inner-hero__grid {
    padding-bottom: 56px;
  }

  .inner-hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .page-index {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .page-index nav {
    gap: 10px 17px;
  }

  .service-detail__grid {
    gap: 36px;
  }

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

  .area-strip {
    padding: 60px 0;
  }

  .cta-section,
  .about-close {
    padding: 78px 0;
  }

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

  .principle,
  .principle + .principle,
  .principle:nth-child(3),
  .principle:nth-child(4) {
    min-height: auto;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle:first-child {
    border-top: 0;
  }

  .principle__number {
    margin-bottom: 26px;
  }

  .principle h3,
  .principle p {
    max-width: 100%;
  }

  .property-list {
    grid-template-columns: 1fr;
  }

  .property-list li:nth-child(odd),
  .property-list li:nth-child(even) {
    margin-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .contact-details {
    padding: 34px 0 78px;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail-card {
    min-height: 185px;
  }

  .form-panel {
    padding: 20px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 37px 24px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
