:root {
  --ivory: #FAF7F2;
  --cream: #F1E7DA;
  --latte: #C8A98B;
  --brown: #8B5E3C;
  --coffee: #4B3A2F;
  --sage: #A7B7A4;
  --orange: #D97B5F;
  --orange-light: #F0B4A1;
  --white: #FFFFFF;
  --border: rgba(75, 58, 47, 0.16);
  --border-light: rgba(250, 247, 242, 0.22);
  --shadow: 0 24px 80px rgba(75, 58, 47, 0.10);
  --serif: "Noto Serif Display", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, Arial, "Helvetica Neue", sans-serif;
  --container: min(1240px, calc(100vw - 48px));
  --header-height: 144px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.018em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.1vw, 6.6rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.1vw, 4.55rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 2.75vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.18;
}

::selection {
  background: var(--orange-light);
  color: var(--coffee);
}

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

#main-content:focus {
  outline: none;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--coffee);
  color: var(--ivory);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 11vw, 156px);
}

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  margin-inline: 0.42em;
  color: var(--orange);
}

.section--dark .eyebrow,
.section-heading--light .eyebrow,
.contact .eyebrow {
  color: var(--orange-light);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 1px solid var(--coffee);
  border-radius: 999px;
  background: var(--coffee);
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--brown);
  background: var(--brown);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button--light {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--coffee);
}

.button--light:hover {
  border-color: var(--orange-light);
  background: var(--orange-light);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--coffee);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
  transition: width 220ms var(--ease);
}

.text-link:hover::before {
  width: 38px;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 34px rgba(75, 58, 47, 0.06);
}

.header-inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 320px 1fr;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 320px;
  max-width: calc(100vw - 90px);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.6vw, 42px);
}

.primary-nav a {
  position: relative;
  padding-block: 14px;
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a[aria-current="location"] {
  color: var(--brown);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  padding-block: clamp(32px, 4.5vw, 66px) 34px;
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(241, 231, 218, 0.52) 54% 100%),
    var(--ivory);
}

.hero-rings {
  position: absolute;
  top: -180px;
  right: -150px;
  width: min(620px, 52vw);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 123, 95, 0.20);
  border-radius: 50%;
  pointer-events: none;
}

.hero-rings::before,
.hero-rings::after {
  position: absolute;
  border: 1px solid rgba(75, 58, 47, 0.10);
  border-radius: 50%;
  content: "";
  inset: 12%;
}

.hero-rings::after {
  border-color: rgba(167, 183, 164, 0.36);
  inset: 27%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "copy scenes"
    "services services";
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  grid-template-rows: clamp(440px, 58vh, 520px) auto;
  gap: 22px clamp(36px, 6vw, 90px);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  grid-area: copy;
}

.hero-copy h1 {
  max-width: 760px;
}

@media (min-width: 941px) {
  .hero-copy h1 {
    font-size: clamp(3.2rem, 6.1vw, 6rem);
  }
}

.brush-emphasis {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.brush-emphasis::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.01em;
  left: -0.03em;
  height: 0.22em;
  transform: rotate(-1.2deg);
  background: linear-gradient(90deg, var(--orange) 0 78%, var(--orange-light));
  clip-path: polygon(0 62%, 8% 47%, 21% 52%, 34% 35%, 49% 43%, 64% 27%, 80% 30%, 100% 5%, 98% 70%, 82% 82%, 65% 72%, 48% 88%, 30% 77%, 13% 91%, 1% 83%);
  content: "";
  opacity: 0.9;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(75, 58, 47, 0.90);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.guidance-note {
  display: grid;
  max-width: 480px;
  align-items: center;
  margin-top: 24px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}

.guidance-note img {
  width: 32px;
  height: auto;
  color: var(--brown);
}

.guidance-note p {
  margin: 0;
  color: rgba(75, 58, 47, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}

.guidance-note--light {
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.guidance-note--light img {
  filter: brightness(0) invert(1);
}

.guidance-note--light p {
  color: rgba(250, 247, 242, 0.72);
}

.hero-scenes {
  position: relative;
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-area: scenes;
  grid-template-columns: 1.02fr 0.84fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.scene {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
  box-shadow: 0 18px 54px rgba(75, 58, 47, 0.08);
}

.scene--career {
  grid-row: 1 / 3;
}

.scene picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 600ms var(--ease), filter 400ms ease;
}

.scene:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.scene--portrait img,
.scene--portrait:hover img {
  object-position: 50% 44%;
  filter: none;
}

.hero-services {
  display: grid;
  grid-area: services;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  color: var(--ivory);
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  text-decoration: none;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(75, 58, 47, 0.13);
}

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

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

.service-card--sage {
  background: var(--sage);
  color: var(--coffee);
}

.service-card__number {
  margin: 0;
  color: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-card--sage .service-card__number {
  color: var(--brown);
}

.service-card h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.06rem, 1.35vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.manifesto-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  grid-template-areas:
    "heading map"
    "copy map"
    "steps steps";
  gap: 32px 8vw;
}

.manifesto .section-heading {
  grid-area: heading;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p:not(.eyebrow),
.section-intro > p {
  max-width: 650px;
  color: rgba(75, 58, 47, 0.84);
  font-size: 1.05rem;
}

.section-heading--light > p:not(.eyebrow) {
  color: rgba(250, 247, 242, 0.84);
}

.manifesto-copy {
  max-width: 680px;
  grid-area: copy;
}

.manifesto-copy > p {
  color: rgba(250, 247, 242, 0.86);
}

.manifesto-copy blockquote,
.story-copy blockquote {
  position: relative;
  margin: 35px 0 0;
  padding: 22px 0 0 30px;
  border-top: 1px solid var(--border-light);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
}

.manifesto-copy blockquote::before,
.story-copy blockquote::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.possibility-map {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: end;
  grid-area: map;
}

.possibility-map svg {
  width: 100%;
  height: 100%;
}

.possibility-map svg circle:not(.route-point) {
  fill: none;
  stroke: rgba(250, 247, 242, 0.17);
  stroke-width: 1.6;
}

.route-line {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 8;
}

.route-point {
  fill: var(--orange-light);
}

.map-center,
.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
}

.map-center {
  top: 50%;
  left: 50%;
  width: 108px;
  height: 108px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(250, 247, 242, 0.28);
  background: var(--ivory);
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.15;
}

.map-node {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(250, 247, 242, 0.22);
  background: rgba(250, 247, 242, 0.08);
  color: var(--ivory);
  font-size: 0.7rem;
}

.map-node--one {
  top: 5.5%;
  left: 50%;
  transform: translateX(-50%);
}

.map-node--two {
  top: 50%;
  right: 5.5%;
  transform: translateY(-50%);
}

.map-node--three {
  bottom: 5.5%;
  left: 50%;
  transform: translateX(-50%);
}

.map-node--four {
  top: 50%;
  left: 5.5%;
  transform: translateY(-50%);
}

.approach-steps {
  display: grid;
  margin: clamp(42px, 6vw, 72px) 0 0;
  padding: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  grid-area: steps;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.approach-steps li {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 28px clamp(22px, 3vw, 42px) 30px 0;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
}

.approach-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: clamp(28px, 4vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(217, 123, 95, 0));
  content: "";
}

.approach-step__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(240, 180, 161, 0.72);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.approach-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
  font-weight: 600;
}

.approach-steps p {
  margin: 0;
  color: rgba(250, 247, 242, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services {
  background: var(--ivory);
}

.section-intro {
  display: grid;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 40px 8vw;
}

.section-intro .section-heading h2 {
  margin-bottom: 0;
}

.services .section-intro .section-heading h2 {
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-intro > p {
  margin-bottom: 8px;
}

.service-detail {
  display: grid;
  align-items: start;
  padding-block: clamp(54px, 6vw, 78px);
  border-top: 1px solid var(--border);
  grid-template-columns: minmax(76px, 0.18fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--border);
}

.service-detail__number {
  margin: 3px 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
}

.service-detail__content {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  column-gap: clamp(34px, 6vw, 90px);
}

.service-kicker {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail__content > p:not(.service-kicker) {
  max-width: 660px;
  color: rgba(75, 58, 47, 0.84);
}

.service-detail__content h3 {
  max-width: 760px;
  grid-column: 1 / -1;
}

.service-detail__content > .service-audience {
  max-width: none;
  margin: -4px 0 24px;
  grid-column: 1 / -1;
  color: var(--coffee);
  font-size: 0.86rem;
  line-height: 1.55;
}

.service-audience span {
  margin-right: 0.45em;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-topics {
  align-self: start;
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--orange);
  color: var(--brown) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
}

.story-proof {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--coffee);
  color: var(--ivory);
}

.story-proof p {
  display: grid;
  min-height: 190px;
  align-content: center;
  margin: 0;
  padding: 32px;
  border-bottom: 1px solid var(--border-light);
  gap: 8px;
}

.story-proof p:last-child {
  border-bottom: 0;
}

.story-proof strong {
  color: var(--orange-light);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
}

.story-proof span {
  max-width: 210px;
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
}

.story-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(75, 58, 47, 0.76);
  font-size: 1.02rem;
}

.story-emphasis {
  margin-top: 32px;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  color: var(--coffee) !important;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem) !important;
  line-height: 1.4;
}

.contact {
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(217, 123, 95, 0.27);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.55fr);
  gap: 8vw;
}

.contact-grid--minimal {
  display: block;
}

.contact-copy h2 {
  max-width: 820px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(250, 247, 242, 0.72);
  font-size: 1.05rem;
}

.contact-primary {
  margin-top: 30px;
}

.contact-availability {
  width: fit-content;
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  color: rgba(250, 247, 242, 0.58) !important;
  font-size: 0.75rem !important;
}

.site-footer {
  padding-block: 44px 34px;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 240px minmax(220px, 0.8fr) minmax(200px, 0.55fr);
  gap: 28px 7vw;
}

.footer-brand {
  display: block;
  width: 240px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-grid > p:not(.footer-meta) {
  max-width: 380px;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-meta {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: rgba(75, 58, 47, 0.55);
  font-size: 0.68rem;
  grid-column: 1 / -1;
}

.footer-meta span {
  margin-left: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  min-height: 100svh;
  background: var(--coffee);
  color: var(--ivory);
}

.error-shell {
  display: flex;
  width: min(760px, calc(100vw - 42px));
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding-block: clamp(26px, 4.5vh, 46px);
}

.error-logo {
  width: 180px;
  height: auto;
  background: var(--ivory);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: clamp(26px, 4.5vh, 46px);
}

.error-shell h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 7vw, 6.25rem);
}

.error-shell > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(250, 247, 242, 0.72);
}

.error-shell .button {
  margin-top: 22px;
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 40px, 1040px);
  }

  .header-inner {
    grid-template-columns: 290px 1fr;
    gap: 20px;
  }

  .brand {
    width: 290px;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 26px 40px;
  }

  .hero-scenes {
    min-height: 400px;
  }

  .service-card {
    min-height: 80px;
    padding: 14px 18px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 116px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 300px;
  }

  .js .menu-toggle {
    display: grid;
    grid-column: 2;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px 24px;
    transform: translateY(-12px);
    background: var(--ivory);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
  }

  .primary-nav a {
    width: 100%;
    padding-block: 12px;
    border-bottom: 1px solid var(--border);
    font-family: var(--sans);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a[aria-current="location"] {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .primary-nav a[aria-current="location"]::before {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border: 1px solid var(--orange);
    border-radius: 50%;
    content: "";
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.js) .header-inner {
    height: auto;
    padding-block: 12px;
    grid-template-columns: 1fr;
  }

  html:not(.js) .primary-nav {
    position: static;
    height: auto;
    visibility: visible;
    flex-direction: row;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    gap: 4px 20px;
    padding: 0;
    transform: none;
    background: transparent;
    opacity: 1;
    overflow: visible;
    overscroll-behavior: auto;
  }

  html:not(.js) .primary-nav a {
    width: auto;
    padding-block: 6px;
    border: 0;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
  }

  .hero {
    background: var(--ivory);
  }

  .hero-layout {
    grid-template-areas:
      "copy"
      "services"
      "scenes";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 30px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 820px;
  }

  .hero-lede {
    max-width: 760px;
  }

  .hero-scenes {
    height: auto;
    min-height: 530px;
    margin-top: 12px;
  }

  .manifesto-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto-grid {
    grid-template-areas:
      "heading"
      "copy"
      "map"
      "steps";
  }

  .possibility-map {
    width: min(100%, 560px);
    justify-self: center;
    margin-top: 30px;
  }

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

  .service-detail {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 32px;
  }

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

  .story-proof p {
    min-height: 170px;
    border-right: 1px solid var(--border-light);
    border-bottom: 0;
  }

  .story-proof p:last-child {
    border-right: 0;
  }

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

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

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 32px);
    --radius-md: 16px;
    --radius-lg: 22px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    font-size: 16px;
    line-height: 1.62;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.85rem, 14.2vw, 3.9rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.4rem);
  }

  h3 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .section {
    padding-block: 88px;
  }

  .header-inner {
    width: calc(100vw - 24px);
  }

  .brand {
    width: 280px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-block: 24px 28px;
  }

  .hero-rings {
    top: -120px;
    right: -190px;
    width: 420px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 0.65rem;
  }

  .brush-emphasis {
    white-space: normal;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-services {
    gap: 6px;
  }

  .service-card {
    min-height: 82px;
    align-content: center;
    align-items: start;
    padding: 11px 9px;
    border-radius: 10px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-card__number {
    margin: 0;
    font-size: 0.62rem;
  }

  .service-card h2 {
    margin: 0;
    font-family: var(--sans);
    font-size: clamp(0.95rem, 3.9vw, 1rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.14;
  }

  .hero-scenes {
    min-height: 420px;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .manifesto-grid {
    gap: 24px;
  }

  .approach-steps {
    margin-top: 34px;
    grid-template-columns: minmax(0, 1fr);
  }

  .approach-steps li {
    padding: 22px 0;
  }

  .approach-steps li:not(:last-child) {
    border-bottom: 1px solid rgba(250, 247, 242, 0.12);
  }

  .approach-steps li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 22px;
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, var(--orange), rgba(217, 123, 95, 0));
  }

  .guidance-note--light {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .manifesto-copy blockquote,
  .story-copy blockquote {
    padding-left: 24px;
  }

  .possibility-map {
    width: 100%;
  }

  .map-center {
    width: 92px;
    height: 92px;
    font-size: 0.95rem;
  }

  .map-node {
    width: 67px;
    height: 67px;
    font-size: 0.6rem;
  }

  .section-intro {
    margin-bottom: 54px;
    gap: 16px;
  }

  .services .section-intro .section-heading h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
  }

  .service-detail {
    padding-block: 54px;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .service-detail__number {
    font-size: 2.8rem;
  }

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

  .service-topics {
    margin-top: 10px !important;
  }

  .story-copy > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .story-proof p {
    min-height: 150px;
    padding: 24px;
  }

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

  .footer-grid nav {
    grid-column: auto;
  }

  .footer-meta {
    grid-column: auto;
  }

  .footer-meta span {
    display: block;
    margin: 6px 0 0;
  }
}

@media (max-height: 780px) and (min-width: 941px) {
  .hero {
    padding-top: 24px;
  }

  .hero-layout {
    grid-template-rows: clamp(420px, 56vh, 440px) auto;
    gap: 18px 40px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 6.2vw, 5.8rem);
  }

  .hero-lede {
    margin-bottom: 17px;
    font-size: 0.95rem;
  }

  .hero-scenes {
    min-height: 350px;
  }

  .service-card {
    min-height: 76px;
    padding-block: 13px;
  }
}

@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;
  }

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

@media print {
  .site-header,
  .hero-scenes,
  .contact-actions,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .hero {
    padding-block: 36px;
    background: white !important;
    color: black !important;
  }
}
