:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5f6962;
  --paper: #fbfaf7;
  --cream: #fef5e5;
  --linen: #f1eee8;
  --mist: #dfe8e3;
  --green: #27483a;
  --green-dark: #1d372c;
  --green-pastel: #45695a;
  --blue-pastel: #dceaf2;
  --copper: #a7643d;
  --sun: #d8a24b;
  --line: rgba(23, 32, 27, 0.16);
  --shadow: 0 20px 60px rgba(23, 32, 27, 0.14);
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--cream);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(230px, 24vw, 300px);
  height: 64px;
  overflow: hidden;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 200%;
  height: 200%;
  object-fit: cover;
  object-position: center;
  transform: translate(-25%, -25%);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 4px;
  padding: 12px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.secondary:hover {
  background: var(--green);
  color: #fff;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.92fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.hero-copy,
.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 112px) clamp(22px, 6vw, 92px);
}

.page-hero {
  min-height: 52vh;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 22px clamp(22px, 6vw, 92px) 0;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.detail-page .page-hero {
  min-height: 0;
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background: var(--cream);
}

.detail-page .page-hero h1 {
  max-width: 980px;
  font-size: 48px;
  line-height: 1;
}

.detail-page .page-hero .lede {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(17px, 1.6vw, 20px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--muted);
  font-size: 17px;
}

.hero-positioning {
  max-width: 560px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.96;
}

#hero-title {
  border-radius: 5px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.lede {
  max-width: 760px;
  margin-bottom: 28px;
  color: #35413a;
  font-size: clamp(18px, 2vw, 23px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.credibility {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.credibility span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.credibility strong {
  display: block;
  font-size: clamp(19px, 2.2vw, 28px);
}

.hero-visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  height: min(640px, calc(100vh - 140px));
}

.hero-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.section-photo {
  display: block;
  overflow: hidden;
  height: clamp(220px, 27vw, 360px);
}

.section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo-one-hotel img {
  object-position: center 52%;
}

.section-photo-the-well img {
  object-position: center bottom;
}

.visual-note {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 5vw, 56px);
  width: min(380px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-note strong {
  display: block;
  margin-bottom: 8px;
}

.visual-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

section,
.section {
  padding: clamp(56px, 6vw, 72px) clamp(22px, 6vw, 92px);
}

section[id] {
  scroll-margin-top: 100px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: 44px;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
}

.text-link {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.section-head > p .text-link {
  margin-top: 14px;
}

.section-link-row {
  margin: 28px 0 0;
  font-size: 16px;
}

.case-study-audience-link {
  margin-top: 42px;
  text-align: center;
}

#approach .section-head,
#services .section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 2vw, 28px);
}

#approach .section-head > p,
#services .section-head > p {
  max-width: 820px;
}

.dark {
  background: var(--green);
  color: #fff;
}

#approach {
  background: var(--blue-pastel);
}

#about {
  background: var(--blue-pastel);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  grid-template-areas:
    "title ."
    "photo copy";
  column-gap: clamp(40px, 6vw, 92px);
  row-gap: 28px;
  align-items: start;
}

.about-layout h2 {
  grid-area: title;
  margin: 0;
  text-align: left;
}

.about-photo {
  grid-area: photo;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-headshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-copy {
  grid-area: copy;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 780px;
  min-height: 320px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  text-align: left;
}

.about-copy p {
  margin: 0;
}

.about-revenue-copy {
  color: var(--ink);
  font-weight: 400;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.detail-page-link-row {
  margin: 0;
  padding: 0 clamp(22px, 6vw, 92px) clamp(56px, 6vw, 72px);
}

#approach .card {
  background: transparent;
}

#approach .approach-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.approach-accordion {
  min-height: 0;
  padding: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.approach-accordion[open] {
  border-color: var(--green-pastel);
  box-shadow: 0 14px 34px rgba(23, 32, 27, 0.1);
}

.approach-accordion-summary {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.approach-accordion-summary::-webkit-details-marker {
  display: none;
}

.approach-accordion-summary:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: -3px;
}

.approach-accordion-summary h3 {
  max-width: calc(100% - 44px);
}

.approach-accordion-summary .approach-index {
  margin-bottom: 28px;
}

.approach-accordion-summary p {
  max-width: 58ch;
  margin-bottom: 28px;
}

.approach-accordion-summary .approach-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.approach-toggle::after {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 17px;
  line-height: 1;
}

.approach-accordion[open] .approach-toggle::after {
  content: "−";
}

.approach-accordion[open] .approach-toggle {
  font-size: 0;
}

.approach-accordion[open] .approach-toggle::before {
  content: "Hide services";
  font-size: 13px;
}

.approach-accordion-content {
  padding: 0 24px 26px;
  border-top: 1px solid var(--line);
}

.approach-accordion-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.approach-accordion-content li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.approach-accordion-content li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.dark .eyebrow,
.dark .section-head p,
.dark .body-copy {
  color: #d9c3a4;
}

.linen {
  background: var(--linen);
}

#services {
  background: var(--cream);
}

#contact {
  background: var(--cream);
}

.mist {
  background: var(--mist);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 12px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: block;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.card span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-study-hero-cta {
  align-self: flex-start;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.case-study-preview {
  grid-column: span 2;
  border: 1px solid var(--line);
  background: #fff;
}

.case-study-preview:nth-child(4) {
  grid-column: 2 / span 2;
}

.case-study-preview[open] {
  border-color: var(--green-pastel);
  box-shadow: 0 14px 34px rgba(23, 32, 27, 0.1);
}

.case-study-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.case-study-card::-webkit-details-marker {
  display: none;
}

.case-study-card > span {
  display: block;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-study-card h3 {
  margin-bottom: 12px;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
}

.case-study-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-study-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.case-study-link::after {
  margin-left: 8px;
  content: "+";
}

.case-study-preview[open] .case-study-link::after {
  content: "−";
}

.case-study-inline-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.inline-form-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.case-study-inline-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.case-studies-home {
  background: var(--paper);
}

.case-study-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.case-study-home-card {
  display: grid;
  align-content: start;
  gap: 18px;
  text-align: center;
}

.case-study-thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 376 / 270;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  background: var(--cream);
  cursor: pointer;
}

.case-study-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: top center;
  transition: transform 180ms ease;
}

.case-study-thumbnail picture {
  display: block;
  width: 100%;
}

.case-study-thumbnail:hover img,
.case-study-thumbnail:focus-visible img {
  transform: scale(1.015);
}

.case-study-thumbnail:focus-visible,
.case-study-open:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(39, 72, 58, 0.32);
  outline-offset: 3px;
}

.case-study-home-card h3 {
  margin-bottom: 0;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
}

.case-study-home-card h3 a {
  color: inherit;
  text-decoration: none;
}

.case-study-home-card h3 a:hover,
.case-study-home-card h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.case-study-home-card .button {
  justify-self: center;
  cursor: pointer;
}

.case-study-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(28px, 5vw, 52px);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.case-study-dialog::backdrop {
  background: rgba(23, 32, 27, 0.56);
  backdrop-filter: blur(4px);
}

.case-study-dialog-intro > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  padding: 4px 8px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.case-study-request-form {
  display: grid;
  gap: 18px;
}

.case-study-request-form[hidden],
.case-study-dialog-intro[hidden],
.case-study-thank-you[hidden] {
  display: none;
}

.case-study-request-form .button {
  width: 100%;
  cursor: pointer;
}

.case-study-request-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.request-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.case-study-form-status {
  min-height: 24px;
  margin-bottom: 0;
  font-size: 14px;
}

.case-study-form-status.success {
  color: var(--green-dark);
}

.case-study-form-status.error {
  color: #8a382f;
}

.case-study-thank-you {
  padding-block: clamp(20px, 4vw, 40px);
  text-align: center;
}

.case-study-thank-you h2 {
  margin-bottom: 20px;
}

.case-study-thank-you-message {
  margin: 0 auto 28px;
  color: var(--muted);
}

.product-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.services-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.service-path {
  display: flex;
  min-width: 0;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: transparent;
}

.service-path.featured {
  background: transparent;
}

.service-path h3,
.service-accordion-heading {
  display: block;
  max-width: 560px;
  margin-bottom: 24px;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
}

.service-path > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.service-options {
  display: grid;
  width: 100%;
  gap: 16px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-options li {
  display: grid;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-options span {
  color: var(--muted);
  font-size: 14px;
}

.service-options.compact {
  color: var(--muted);
}

.service-path .button {
  margin-top: auto;
}

.service-accordion {
  display: block;
  height: 100%;
  min-height: 0;
}

.service-accordion-summary {
  position: relative;
  display: grid;
  width: 100%;
  gap: 18px;
  padding-right: 150px;
  cursor: pointer;
  list-style: none;
}

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

.service-accordion-summary::after {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.service-accordion[open] .service-accordion-summary::after {
  content: "−";
}

.service-accordion-cta {
  position: absolute;
  top: 7px;
  right: 48px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.service-accordion-cta::before {
  content: "Learn More";
}

.service-accordion[open] .service-accordion-cta::before {
  content: "Hide details";
}

.service-accordion-summary .eyebrow,
.service-accordion-summary .service-accordion-heading {
  margin-bottom: 0;
}

.service-accordion-summary .service-accordion-preview {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
}

.service-accordion-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 28px;
}

.service-accordion:not([open]) .service-accordion-content {
  display: none;
}

.service-accordion-content > p {
  max-width: 620px;
  color: var(--muted);
}

.service-accordion-content .button {
  margin-top: 0;
}

.product-card ul,
.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

#contact .split {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 4vw, 48px);
}

#contact-title {
  margin-bottom: 28px;
  font-size: 48px;
}

#contact .lede {
  font-size: 14px;
}

.panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: #fff;
}

.inquiry-form {
  display: grid;
  gap: 24px;
}

.inquiry-form h3 {
  margin-bottom: 0;
}

.inquiry-form .eyebrow {
  margin-bottom: 10px;
}

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

.inquiry-details {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.inquiry-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.inquiry-details summary::after {
  content: "+";
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.inquiry-details[open] summary::after {
  content: "−";
}

.inquiry-details summary span {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 500;
}

.inquiry-details[open] summary {
  margin-bottom: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field-status {
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 500;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.form-field textarea {
  min-height: 104px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(39, 72, 58, 0.16);
  outline-offset: 1px;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.inquiry-form .button {
  width: 100%;
  cursor: pointer;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(36px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.photo-panel {
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(23, 32, 27, 0.02), rgba(23, 32, 27, 0.34)),
    url("strategy-workspace.jpg") center / cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.stat {
  min-height: 164px;
  padding: 24px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 15px;
}

.callout {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--linen);
}

.callout p {
  max-width: 920px;
  margin-bottom: 0;
  color: #405048;
  font-size: clamp(17px, 1.5vw, 20px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 6vw, 92px);
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 981px) {
  .hero {
    min-height: auto;
    align-items: stretch;
    padding-block: clamp(16px, 1.8vw, 24px);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-inline: clamp(8px, 0.7vw, 12px);
    padding-block: 0;
  }

  .hero-visual {
    min-height: 0;
    height: auto;
  }

  .hero-visual img {
    object-position: 59% 78%;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: clamp(16px, 2vw, 20px);
  }

  .hero-copy {
    align-items: center;
    padding-top: clamp(16px, 2vw, 20px);
    padding-bottom: 0;
    text-align: center;
  }

  .hero-positioning {
    margin-inline: auto;
  }

  .hero-visual {
    height: auto;
    min-height: 460px;
    order: -1;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-home-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-study-preview,
  .case-study-preview:nth-child(4) {
    grid-column: auto;
  }

  .photo-panel {
    min-height: 440px;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .about-copy {
    font-size: 17px;
    line-height: 1.55;
  }
}

@media (min-width: 721px) and (max-width: 820px) {
  .about-copy {
    font-size: 14px;
    line-height: 1.42;
  }
}

@media (max-width: 720px) {
  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "photo"
      "copy";
    gap: 28px;
    justify-items: start;
  }

  .about-photo {
    width: min(100%, 320px);
  }

  .about-copy {
    min-height: 0;
    margin-bottom: 40px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav .button {
    width: 100%;
  }

  .brand-logo {
    padding-left: 5px;
    transform: translate(calc(-25% - 22px), -25%);
  }

  .hero {
    padding-inline: 20px;
  }

  .hero-copy {
    padding-inline: 0;
  }

  .hero-visual {
    width: 100%;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .detail-page .page-hero {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .detail-page .page-hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .detail-page .page-hero .lede {
    font-size: 17px;
  }

  #hero-title {
    width: 343px;
    max-width: 100%;
    margin-bottom: 15px;
    font-size: 32px;
  }

  .hero .eyebrow {
    font-size: 14px;
  }

  #about-title,
  #model-title,
  #architecture-title,
  #contact-title {
    font-size: 30px;
  }

  section h2 {
    font-size: 30px;
  }

  #about {
    margin-top: -5px;
    margin-bottom: -50px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #services .section-head > div > .eyebrow,
  #approach .section-head > div > .eyebrow {
    margin-top: -25px;
  }

  #services .section-head > p,
  #approach .section-head > p {
    margin-bottom: -15px;
  }

  #issue-title {
    font-size: 28px;
  }

  .hero .lede {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 368px;
  }

  .section-photo {
    height: 220px;
  }

  .services-paths {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }

  .services-paths:has(.service-accordion[open]) {
    grid-auto-rows: auto;
  }

  .service-path {
    height: 100%;
    min-height: auto;
  }

  .service-accordion-summary {
    padding-top: 56px;
    padding-right: 0;
  }

  .credibility,
  .form-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats {
    grid-template-columns: 1fr;
  }

  #approach .approach-grid,
  .approach-accordion-content ul {
    grid-template-columns: 1fr;
  }

  .approach-accordion-summary {
    min-height: auto;
  }

  .card,
  .product-card,
  .stat {
    min-height: auto;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .case-study-home-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card {
    min-height: 260px;
  }

  .case-study-home-card .button {
    width: 100%;
  }

  .case-study-hero-cta {
    width: 100%;
  }

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

  .contact-actions .button {
    width: 100%;
  }

  #contact .split > div:first-child {
    margin-block: -35px;
  }

  footer {
    flex-direction: column;
  }
}
