@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
  --ink: #10201e;
  --ink-soft: #40514e;
  --forest: #0c1b18;
  --forest-2: #142723;
  --paper: #f4f1ea;
  --paper-deep: #e8e3d9;
  --white: #fffdf8;
  --gold: #b69654;
  --gold-bright: #d8bd7c;
  --line: rgba(16, 32, 30, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --shadow: 0 28px 70px rgba(12, 27, 24, 0.13);
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Newsreader', 'Iowan Old Style', Baskerville, Georgia, serif;
  --container: min(1280px, calc(100vw - 96px));
  --section-space: clamp(88px, 11vw, 164px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--forest);
  background: var(--gold-bright);
}

img {
  display: block;
  width: 100%;
}

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

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--forest);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: '';
}

.display-title,
.section-title,
.page-title,
.article-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.display-title {
  max-width: 880px;
  font-size: clamp(3.5rem, 7.3vw, 7.5rem);
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.page-title {
  max-width: 1000px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.section-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.27rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
}

.button::after {
  content: '↗';
  font-size: 1rem;
  transition: transform 300ms var(--ease);
}

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

.button:hover::after {
  transform: translate(3px, -3px);
}

.button--light {
  border-color: rgba(255, 253, 248, 0.65);
  color: var(--white);
}

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

.button--gold {
  border-color: var(--gold);
  color: var(--forest);
  background: var(--gold-bright);
}

.button--gold:hover {
  color: var(--forest);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 250ms ease, gap 250ms var(--ease);
}

.text-link::after {
  content: '↗';
  font-size: 1rem;
}

.text-link:hover {
  gap: 20px;
  color: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled,
.site-header.header--solid {
  color: var(--ink);
  background: rgba(244, 241, 234, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}

.nav-shell {
  display: grid;
  width: var(--container);
  height: 86px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 190px 1fr 190px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand span {
  margin-left: 2px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
}

.site-header.is-scrolled .brand span,
.site-header.header--solid .brand span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-contact span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 250ms var(--ease);
}

.header-contact:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: hero-scale 1.7s var(--ease) both;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(7, 20, 17, 0.9) 0%, rgba(7, 20, 17, 0.55) 52%, rgba(7, 20, 17, 0.24) 100%), linear-gradient(0deg, rgba(7, 20, 17, 0.75) 0%, transparent 45%);
  content: '';
}

@keyframes hero-scale {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--container);
  align-items: end;
  margin: 0 auto clamp(56px, 8vh, 92px);
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
}

.hero-copy {
  animation: hero-rise 1s 160ms var(--ease) both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
  color: var(--gold-bright);
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-aside {
  padding: 26px 0 5px 26px;
  border-left: 1px solid var(--line-light);
  animation: hero-rise 1s 340ms var(--ease) both;
}

.hero-aside-label {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-aside p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue::after {
  width: 64px;
  height: 1px;
  background: var(--gold-bright);
  content: '';
}

.statement {
  padding: var(--section-space) 0;
}

.statement-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 7vw;
}

.statement-number {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.statement .section-title em {
  color: var(--gold);
  font-weight: 400;
}

.service-showcase {
  padding: 0 0 var(--section-space);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.section-head .section-copy {
  max-width: 440px;
  margin: 0 0 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-feature {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.service-feature + .service-feature {
  margin-top: 84px;
}

.service-feature img,
.service-feature::after {
  position: absolute;
  inset: 0;
  height: 100%;
}

.service-feature img {
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.service-feature::after {
  background: linear-gradient(0deg, rgba(7, 20, 17, 0.92) 0%, rgba(7, 20, 17, 0.12) 68%);
  content: '';
}

.service-feature:hover img {
  filter: saturate(0.75);
  transform: scale(1.035);
}

.service-feature-content {
  position: absolute;
  z-index: 1;
  right: clamp(26px, 4vw, 54px);
  bottom: clamp(30px, 5vw, 62px);
  left: clamp(26px, 4vw, 54px);
}

.service-index {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-feature h3 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.service-feature p {
  max-width: 480px;
  margin: 22px 0 26px;
  color: rgba(255, 253, 248, 0.74);
}

.about-preview {
  color: var(--white);
  background: var(--forest);
}

.about-preview-grid {
  display: grid;
  min-height: 740px;
  grid-template-columns: 0.92fr 1.08fr;
}

.about-preview-image {
  min-height: 600px;
  overflow: hidden;
}

.about-preview-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

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

.about-preview-copy {
  display: flex;
  align-items: center;
  padding: clamp(60px, 9vw, 140px);
}

.about-preview .section-title {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.about-preview .section-copy {
  color: rgba(255, 253, 248, 0.68);
}

.about-preview .text-link {
  margin-top: 34px;
}

.insights-section {
  padding: var(--section-space) 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.insight-card {
  grid-column: span 4;
}

.insight-card:nth-child(2) {
  margin-top: 72px;
}

.insight-image {
  position: relative;
  aspect-ratio: 1 / 0.82;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--paper-deep);
}

.insight-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: '';
}

.insight-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 750ms var(--ease), filter 400ms ease;
}

.insight-card:hover .insight-image img {
  filter: saturate(0.8);
  transform: scale(1.04);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-meta span + span::before {
  margin-right: 12px;
  content: '—';
}

.insight-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  transition: color 250ms ease;
}

.insight-card:hover h3 {
  color: #6f5728;
}

.insight-card p {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cta-section {
  padding: clamp(80px, 10vw, 150px) 0;
  color: var(--white);
  background: var(--forest-2);
}

.cta-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.cta-section .section-title {
  max-width: 900px;
}

.cta-section .eyebrow {
  color: var(--gold-bright);
}

.site-footer {
  padding: 70px 0 30px;
  color: rgba(255, 253, 248, 0.68);
  background: #07110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .brand {
  color: var(--white);
  font-size: 1.75rem;
}

.footer-brand p {
  max-width: 350px;
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.35;
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  font-size: 0.88rem;
}

.footer-column a {
  transition: color 200ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.back-to-top {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.page-hero--compact {
  min-height: 62svh;
}

.page-hero-media,
.page-hero-media::after {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  background: linear-gradient(90deg, rgba(7, 20, 17, 0.9) 0%, rgba(7, 20, 17, 0.28) 80%), linear-gradient(0deg, rgba(7, 20, 17, 0.62), transparent 60%);
  content: '';
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto clamp(54px, 8vh, 86px);
  padding-top: 130px;
}

.page-hero-content p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.editorial-section {
  padding: var(--section-space) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 8vw;
}

.editorial-label {
  position: sticky;
  top: 130px;
  align-self: start;
}

.editorial-copy {
  max-width: 850px;
}

.editorial-copy > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  letter-spacing: -0.026em;
  line-height: 1.08;
}

.editorial-copy p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.editorial-copy strong {
  color: var(--ink);
}

.feature-image-band {
  width: var(--container);
  margin: 0 auto var(--section-space);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image-band img {
  max-height: 760px;
  object-fit: cover;
}

.service-list-section {
  padding: var(--section-space) 0;
  color: var(--white);
  background: var(--forest);
}

.service-list {
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
}

.service-list-item {
  display: grid;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 62px 1fr auto;
  gap: 20px;
  transition: padding 300ms var(--ease), color 200ms ease;
}

.service-list-item:hover {
  padding-left: 14px;
  color: var(--gold-bright);
}

.service-list-item span:first-child {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-list-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 400;
}

.service-list-item span:last-child {
  font-size: 1.1rem;
}

.roadmap-section {
  padding: var(--section-space) 0;
}

.roadmap-image {
  margin-top: 60px;
  padding: clamp(20px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(12, 27, 24, 0.08);
}

.roadmap-image img {
  max-height: 680px;
  object-fit: contain;
}

.quote-band {
  padding: clamp(82px, 11vw, 160px) 0;
  color: var(--white);
  background: var(--forest);
}

.quote-band blockquote {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  letter-spacing: -0.036em;
  line-height: 1.02;
}

.quote-band blockquote span {
  color: var(--gold-bright);
}

.blog-header {
  padding: 180px 0 70px;
  border-bottom: 1px solid var(--line);
}

.blog-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.blog-header .page-title {
  max-width: 780px;
}

.blog-count {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  padding: 70px 0 var(--section-space);
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 30px;
}

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

.blog-card:first-child {
  grid-column: span 12;
}

.blog-card:first-child a {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
}

.blog-card:first-child .blog-card-image {
  margin-bottom: 0;
  aspect-ratio: 1.35 / 1;
}

.blog-card-image {
  aspect-ratio: 1.55 / 1;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--paper-deep);
}

.blog-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 400ms ease;
}

.blog-card:hover .blog-card-image img {
  filter: saturate(0.78);
  transform: scale(1.035);
}

.blog-card h2 {
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.blog-card:not(:first-child) h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
}

.blog-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
}

.article-hero {
  padding: 170px 0 72px;
  border-bottom: 1px solid var(--line);
}

.article-back {
  margin-bottom: 50px;
}

.article-title {
  max-width: 1100px;
  font-size: clamp(3.1rem, 6.2vw, 6.6rem);
}

.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-meta span + span::before {
  margin-right: 18px;
  color: var(--gold);
  content: '—';
}

.article-cover {
  width: var(--container);
  max-height: 780px;
  margin: 0 auto;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  width: min(1100px, calc(100vw - 96px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 0 var(--section-space);
  grid-template-columns: 180px minmax(0, 720px);
  gap: 8vw;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-aside p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-aside a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  font-size: 0.78rem;
  transition: color 200ms ease;
}

.article-aside a:hover {
  color: var(--gold);
}

.article-body {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.55vw, 1.36rem);
  line-height: 1.78;
}

.article-body > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.45;
}

.article-body p {
  margin: 0 0 1.45em;
  color: #2e3d3a;
}

.article-body h2 {
  margin: 2.1em 0 0.65em;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.article-inline-image {
  margin: 2.5em 0;
}

.article-inline-image img {
  max-height: 620px;
  object-fit: cover;
}

.article-end {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 56px, 1080px);
  }

  .nav-shell {
    grid-template-columns: 150px 1fr 150px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .about-preview-copy {
    padding: 70px;
  }

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

  .insight-card:nth-child(2) {
    margin-top: 0;
  }

  .insight-card:last-child {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 40px);
    --section-space: 92px;
  }

  .nav-shell {
    height: 74px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: 100px 28px 38px;
    color: var(--white);
    background: var(--forest);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms var(--ease), visibility 260ms;
  }

  .menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(2.1rem, 9vw, 3.7rem);
    line-height: 1.2;
  }

  .mobile-menu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
    color: rgba(255, 253, 248, 0.62);
    font-size: 0.72rem;
  }

  .hero-grid {
    margin-bottom: 50px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-aside {
    max-width: 420px;
  }

  .scroll-cue {
    display: none;
  }

  .statement-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .statement-number {
    font-size: 5rem;
  }

  .editorial-label {
    position: static;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-feature + .service-feature {
    margin-top: 0;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-preview-image {
    min-height: 70vw;
  }

  .about-preview-copy {
    padding: 80px 28px;
  }

  .cta-grid {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

  .blog-card:first-child a {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-layout {
    width: min(720px, calc(100vw - 40px));
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .article-aside p,
  .article-aside a {
    margin: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
    --section-space: 76px;
  }

  .display-title {
    font-size: clamp(3.1rem, 14.2vw, 4.7rem);
  }

  .section-title {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .page-title {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
  }

  .hero {
    min-height: 820px;
  }

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

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 20, 17, 0.92) 0%, rgba(7, 20, 17, 0.46) 75%, rgba(7, 20, 17, 0.5) 100%);
  }

  .hero-grid {
    margin-bottom: 34px;
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

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

  .hero-aside {
    display: none;
  }

  .statement-grid {
    gap: 32px;
  }

  .service-feature {
    min-height: 570px;
  }

  .insights-grid {
    gap: 52px;
  }

  .insight-card,
  .insight-card:last-child {
    grid-column: 1 / -1;
  }

  .insight-image {
    aspect-ratio: 1.2 / 1;
  }

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

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

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .page-hero {
    min-height: 690px;
  }

  .page-hero--compact {
    min-height: 560px;
  }

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

  .service-list-item span:last-child {
    display: none;
  }

  .blog-header {
    padding-top: 140px;
  }

  .blog-header-row {
    align-items: start;
    flex-direction: column;
  }

  .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 58px;
  }

  .blog-card,
  .blog-card:first-child {
    min-width: 0;
    width: 100%;
  }

  .article-hero {
    padding-top: 140px;
  }

  .article-title {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .article-meta span + span::before {
    display: none;
  }

  .article-cover {
    width: 100%;
    max-height: 520px;
  }

  .article-cover img {
    min-height: 360px;
  }
}

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