@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-500-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #1b1c18;
  --paper: #f2efe7;
  --cream: #e4ddd0;
  --sand: #d4c8b5;
  --muted: #77736a;
  --line: rgba(27, 28, 24, 0.18);
  --dark: #171915;
  --dark-soft: #20221d;
  --accent: #9b8b6f;
  --white: #faf9f5;
  --page-padding: clamp(1.25rem, 5vw, 6rem);
  --section-padding: clamp(5rem, 10vw, 9rem);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.55rem var(--page-padding);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: padding 250ms ease, background-color 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(23, 25, 21, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 1.171875rem;
}

.brand-mark {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.953125rem;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.484375rem;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.brand-copy small {
  margin-top: 0.703125rem;
  font-size: 0.796875rem;
  letter-spacing: 0.31em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2.3rem);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  place-content: center;
  gap: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.235rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.235rem) rotate(-45deg);
}

.site-nav a:not(.nav-cta),
.footer-links a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: background-color 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: max(45rem, 100svh);
  align-items: flex-end;
  padding: 10rem max(var(--page-padding), 8vw) clamp(6rem, 12vh, 9rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  color: var(--white);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

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

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.82) 0%, rgba(10, 12, 9, 0.42) 50%, rgba(10, 12, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 12, 9, 0.58), transparent 52%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  width: min(70rem, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.light,
.light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.07;
}

h1 {
  max-width: 65rem;
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
}

h1 em,
h2 em {
  font-weight: 500;
}

h2 {
  font-size: clamp(2.55rem, 5vw, 5rem);
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 40rem;
  margin: 2rem 0 2.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.button-light:hover {
  background: var(--cream);
}

.text-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.hero-note {
  position: absolute;
  right: var(--page-padding);
  bottom: 4.5rem;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  width: 1.2rem;
  height: 2.8rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2rem;
}

.scroll-cue span {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 2px;
  height: 0.45rem;
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--white);
  animation: scroll-cue 2s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.3; }
  50% { transform: translate(-50%, 0.85rem); opacity: 1; }
}

.section-pad {
  padding: var(--section-padding) max(var(--page-padding), 7vw);
}

.statement {
  display: grid;
  grid-template-columns: minmax(3rem, 0.7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.section-number {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
}

.statement-copy {
  max-width: 68rem;
}

.statement-copy > p:last-child {
  max-width: 46rem;
  margin: 2.6rem 0 0 auto;
  color: #59574f;
  font-size: 1.06rem;
}

.dark-section {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 68rem;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-lead {
  max-width: 48rem;
  margin-top: 1.8rem;
  font-size: 1.05rem;
}

.dark-section .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.service-card {
  grid-column: span 4;
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background-color 250ms ease;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: rgba(255, 255, 255, 0.025);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.service-card > span {
  color: #8e8e86;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

.service-card h3 {
  max-width: 18rem;
  margin: clamp(3rem, 6vw, 5rem) 0 1.3rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.service-card p {
  max-width: 20rem;
  margin: 0;
  color: #aaa89f;
  font-size: 0.88rem;
}

.framework {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  isolation: isolate;
}

.framework-visual {
  position: relative;
  z-index: 0;
  grid-row: 1;
  grid-column: 1 / span 9;
  width: calc(100% + max(var(--page-padding), 7vw));
  margin: 0;
  margin-left: calc(0px - max(var(--page-padding), 7vw));
}

.framework-visual::before {
  position: absolute;
  z-index: -1;
  top: -2.2rem;
  left: -2.2rem;
  width: 45%;
  height: 40%;
  content: "";
  border: 1px solid var(--accent);
}

.framework-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.framework-copy {
  z-index: 1;
  grid-row: 1;
  grid-column: 7 / -1;
  padding: clamp(2.5rem, 4.5vw, 5rem);
  background: rgba(242, 239, 231, 0.96);
  box-shadow: 0 2rem 5rem rgba(27, 28, 24, 0.14);
}

.framework-copy .lead {
  max-width: none;
  margin: 2rem 0 2.5rem;
  color: #57554e;
  font-size: 1.05rem;
}

.framework-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.framework-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.framework-list li > span {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.framework-list strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.framework-list p {
  margin: 0.25rem 0 0;
  color: #646158;
  font-size: 0.9rem;
}

.outcomes {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(4rem, 10vw, 10rem);
  background: var(--cream);
}

.outcome-list {
  align-self: center;
  border-top: 1px solid var(--line);
}

.outcome-list > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list span {
  color: var(--muted);
  font-size: 0.6rem;
}

.outcome-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.35;
}

.experience {
  position: relative;
  display: grid;
  min-height: clamp(52rem, 72vw, 66rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  isolation: isolate;
}

.experience::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 17, 14, 0.08) 0%, rgba(15, 17, 14, 0.24) 42%, rgba(15, 17, 14, 0.9) 73%, rgba(15, 17, 14, 0.97) 100%),
    linear-gradient(0deg, rgba(15, 17, 14, 0.82) 0%, transparent 42%);
  pointer-events: none;
}

.experience-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #151713;
}

.experience-image::after {
  position: absolute;
  z-index: 1;
  inset: clamp(0.75rem, 1.5vw, 1.35rem);
  content: "";
  border: 1px solid rgba(211, 192, 151, 0.38);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 15, 0.18);
  pointer-events: none;
}

.experience-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  filter: contrast(1.07) brightness(0.82);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.experience:hover .experience-image img {
  transform: scale(1.025);
}

.experience-copy {
  position: relative;
  z-index: 2;
  grid-column: 7 / -1;
  min-width: 0;
  align-self: center;
  padding: var(--section-padding) max(var(--page-padding), 7vw);
  text-shadow: 0 0.12rem 1.2rem rgba(8, 9, 7, 0.35);
}

.experience-copy > * {
  min-width: 0;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: #d0cec6;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.4rem;
  margin: 3.5rem 0 0;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.credentials > div {
  min-width: 0;
}

.credentials dt {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.credentials dd {
  margin: 0.65rem 0 0;
  overflow-wrap: anywhere;
  color: #aaa89f;
  font-size: 0.68rem;
  hyphens: auto;
  line-height: 1.45;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.engagement-card {
  grid-column: span 4;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.engagement-card:nth-child(1) {
  transform: translateY(2.4rem);
}

.engagement-card:nth-child(3) {
  transform: translateY(-2.4rem);
}

.engagement-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.5rem 3rem rgba(31, 29, 23, 0.09);
}

.engagement-card.featured {
  background: var(--sand);
}

.card-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.engagement-card h3 {
  margin: 3.8rem 0 1.3rem;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.engagement-card > p:nth-of-type(2) {
  max-width: 22rem;
  margin: 0;
  color: #5f5c54;
}

.engagement-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement-card > a span {
  transition: transform 180ms ease;
}

.engagement-card > a:hover span {
  transform: translateX(0.35rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-copy > p:not(.eyebrow, .contact-location) {
  max-width: 33rem;
  margin: 2rem 0;
  color: #aaa89f;
}

.email-link {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #777970;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  transition: border-color 180ms ease;
}

.email-link:hover {
  border-color: var(--white);
}

.contact-location {
  margin: 2.4rem 0 0;
  color: #777970;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #aaa89f;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--white);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-footer small {
  max-width: 21rem;
  color: #777970;
  font-size: 0.63rem;
  line-height: 1.5;
}

.form-footer small a {
  color: #b7b5ad;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: start;
  gap: 2.5rem;
  padding: 3.5rem var(--page-padding) 2rem;
  border-top: 1px solid #2a2c27;
  background: #10120f;
  color: #aaa89f;
  font-size: 0.72rem;
}

.footer-brand {
  color: var(--white);
}

.site-footer > p {
  max-width: 29rem;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none !important;
  padding-top: 1.4rem;
  border-top: 1px solid #2a2c27;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 750ms ease, transform 750ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-header {
  position: static;
  background: var(--dark);
}

.simple-main {
  width: min(48rem, calc(100% - 2 * var(--page-padding)));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.simple-main h1 {
  max-width: 44rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--ink);
}

.simple-main h2 {
  margin-top: 3rem;
  font-size: 1.7rem;
}

.simple-main p,
.simple-main li {
  color: #59574f;
}

.simple-main .button {
  margin-top: 2rem;
}

@media (max-width: 64rem) {
  .service-card {
    grid-column: span 6;
  }

  .framework-visual {
    grid-column: 1 / span 10;
  }

  .framework-copy {
    grid-column: 6 / -1;
    padding: clamp(2rem, 4vw, 3.5rem);
  }

  .experience {
    grid-template-columns: 1fr;
    min-height: clamp(48rem, 105vw, 60rem);
  }

  .experience-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .experience-copy {
    grid-column: 1;
    width: min(100%, 46rem);
    margin-left: auto;
    padding-right: max(var(--page-padding), 7vw);
    padding-left: max(var(--page-padding), 7vw);
  }

  .engagement-card {
    grid-column: span 6;
  }

  .engagement-card:nth-child(1),
  .engagement-card:nth-child(3) {
    transform: none;
  }

  .engagement-card:nth-child(3) {
    grid-column: 4 / span 6;
  }

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

@media (max-width: 52rem) {
  .experience {
    min-height: auto;
  }

  .experience::before {
    background:
      linear-gradient(0deg, rgba(15, 17, 14, 0.97) 0%, rgba(15, 17, 14, 0.88) 58%, rgba(15, 17, 14, 0.28) 100%),
      linear-gradient(90deg, rgba(15, 17, 14, 0.2), rgba(15, 17, 14, 0.58));
  }

  .experience-image img {
    object-position: 20% center;
  }

  .experience-copy {
    width: 100%;
    padding-top: clamp(18rem, 68vw, 28rem);
  }

  .site-header {
    align-items: center;
    padding: 1rem var(--page-padding);
  }

  .site-header.has-open-navigation {
    background: rgba(23, 25, 21, 0.98);
  }

  .brand {
    gap: 0.8rem;
  }

  .brand-mark {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.6rem;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    margin-top: 0.5rem;
    font-size: 0.62rem;
  }

  .no-js .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    padding-top: 0.8rem;
    font-size: 0.62rem;
  }

  .js .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 var(--page-padding) 1.25rem;
    visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(23, 25, 21, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .site-nav a {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.68rem;
  }

  .js .site-nav .nav-cta {
    margin-top: 0.55rem;
    padding: 0.9rem 1rem;
    text-align: center;
  }

  .site-nav .nav-cta {
    padding: 0.5rem 0.7rem;
  }

  .hero {
    min-height: max(42rem, 100svh);
    padding-right: var(--page-padding);
    padding-bottom: 6.2rem;
    padding-left: var(--page-padding);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 12, 9, 0.84), rgba(10, 12, 9, 0.28)), linear-gradient(0deg, rgba(10, 12, 9, 0.7), transparent 65%);
  }

  .hero-note,
  .scroll-cue,
  .section-number {
    display: none;
  }

  .statement,
  .framework,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .statement-copy > p:last-child {
    margin-left: 0;
  }

  .framework-visual {
    grid-row: auto;
    grid-column: 1;
    width: calc(100% + var(--page-padding));
    margin-left: 0;
  }

  .framework-copy {
    grid-row: auto;
    grid-column: 1;
    margin-top: -2rem;
    padding: clamp(2rem, 7vw, 3.5rem) 0 0;
    background: transparent;
    box-shadow: none;
  }

  .framework-visual::before {
    display: none;
  }

  .outcomes {
    gap: 3.5rem;
  }

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

  .credentials > div:last-child {
    grid-column: 1 / -1;
    width: min(100%, 24rem);
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 38rem) {
  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.15rem);
    letter-spacing: -0.04em;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-actions,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card,
  .engagement-card,
  .engagement-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 17rem;
  }

  .service-card h3 {
    margin-top: 3rem;
  }

  .engagement-card {
    min-height: 21rem;
  }

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

  .credentials > div:last-child {
    grid-column: auto;
    width: auto;
  }

  .credentials div {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
  }

  .credentials dd {
    margin-top: 0;
  }

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

  .email-link {
    overflow-wrap: anywhere;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
