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

:root {
  --ink: #0d1b2e;
  --forest: #051937;
  --forest-2: #0a2a52;
  --muted: #4a5668;
  --soft: #f2f0eb;
  --paper: #fffdf8;
  --mint: #eef2fc;
  --mint-2: #e6ecf8;
  --lime: #1B3A6B;
  --lime-2: #142d58;
  --line: rgba(5, 25, 55, 0.13);
  --shadow: 0 18px 50px rgba(5, 25, 55, 0.13);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-w: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(27, 58, 107, 0.07), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(230, 236, 248, 0.5), transparent 34%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  max-width: 11.5ch;
  margin: 0 auto;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

p {
  max-width: 64ch;
}

.container,
.container-wide {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--max-w);
  padding: 0 32px;
}

.container-wide {
  max-width: 1480px;
  padding: 0 32px;
}

.section {
  padding: 112px 0;
}

.section-white {
  background: rgba(255, 253, 248, 0.72);
}

.pale-section {
  background: var(--mint);
}

.eyebrow {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}

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

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.4vw, 4.7rem);
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.split-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.problem-heading {
  min-height: 340px;
}

.problem-heading h2 {
  max-width: 11.5ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 25px;
  border: 2px solid transparent;
  border-radius: 18px;
  font-size: 0.93rem;
  font-weight: 800;
  gap: 12px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: #fff;
  box-shadow: 0 12px 28px rgba(27, 58, 107, 0.28);
}

.btn-primary:hover {
  background: var(--lime-2);
}

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.text-link {
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 16px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 32px 0;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
  pointer-events: none;
}

.brand-pill,
.nav-right,
.nav-links,
.nav-hamburger {
  pointer-events: auto;
}

.brand-pill,
.nav-right,
.nav-links {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 72px;
  padding: 10px 28px;
}

.hamburger-mark {
  display: grid;
  place-items: center;
  gap: 5px;
  width: 58px;
  height: 58px;
  background: var(--soft);
  border-radius: 18px;
}

.hamburger-mark span,
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.brand-word,
.footer-brand {
  color: var(--forest);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 28px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-right {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
  min-height: 78px;
  padding: 10px 12px 10px 18px;
}

.nav-search {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.nav-search span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.nav-search span::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 29px;
  width: 16px;
  height: 3px;
  background: var(--ink);
  border-radius: 99px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  background: var(--lime);
  border-radius: 17px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--lime-2); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 58px;
  height: 58px;
  justify-self: end;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: 19px;
  box-shadow: var(--shadow);
}

.hero-section {
  padding: 164px 0 94px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 70%, var(--mint) 70%, var(--mint) 100%);
  overflow: hidden;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.08;
}

.hero-title {
  display: block;
  max-width: none;
  margin: 0 auto;
}

.hero-title span {
  display: block;
}

.hero-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin: 26px auto 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-media {
  display: grid;
  grid-template-columns: 0.8fr minmax(420px, 1.25fr) 0.8fr;
  gap: 34px;
  align-items: center;
  margin-top: 62px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-card-small {
  height: 360px;
}

.hero-card-lower {
  transform: translateY(72px);
}

.hero-card-feature {
  height: 640px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.hero-card-small span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  padding: 28px;
  background: rgba(255, 253, 248, 0.88);
  border-radius: 26px;
}

.feature-caption p {
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-caption h2 {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.insight-card,
.story-card,
.service-card,
.method-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(23, 34, 28, 0.06);
}

.insight-card {
  min-height: 310px;
}

.image-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--forest);
}

.image-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 55, 0.05), rgba(5, 25, 55, 0.78));
}

.image-card > div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.image-card h3,
.image-card p,
.image-card span {
  color: #fff;
}

.image-card span,
.text-card span,
.story-card span,
.service-card span,
.method-num {
  display: block;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.image-card p,
.text-card p,
.story-card p,
.service-card p,
.method-card p {
  margin-top: 14px;
}

.tall-card {
  grid-column: span 2;
  grid-row: span 2;
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--mint);
}

.text-card p,
.story-card p,
.service-card p,
.method-card p,
.work-copy p,
.page-hero p,
.page-cta-card p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.dark-card {
  background: var(--forest);
}

.dark-card h3,
.dark-card p,
.dark-card span {
  color: #fff;
}

/* ── Method / How we work ── */
.method-showcase {}

.method-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.method-note p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.method-card {
  position: relative;
  min-height: 460px;
  padding: 30px;
  background: var(--forest);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.method-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.method-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.5) saturate(0.9);
}

.method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 55, 0.05) 0%, rgba(5, 25, 55, 0.72) 100%);
}

.method-num {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.method-card > div {
  position: relative;
  z-index: 1;
}

.method-card h3 {
  color: #fff;
}

.method-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
}

/* ── Explore / Where we work interactive ── */
.explore-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  margin-top: 48px;
  min-height: 520px;
}

.explore-menu {
  border-right: 1px solid var(--line);
  padding-right: 0;
  display: flex;
  flex-direction: column;
}

.explore-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
}

.explore-link span {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.4;
  flex-shrink: 0;
  width: 28px;
  transition: opacity 0.25s, color 0.25s;
}

.explore-link::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--lime);
  opacity: 0;
  transition: opacity 0.25s;
}

.explore-link:hover,
.explore-link.active {
  color: var(--forest);
}

.explore-link.active {
  font-weight: 700;
}

.explore-link.active span,
.explore-link:hover span {
  opacity: 1;
  color: var(--lime);
}

.explore-link.active::after {
  opacity: 1;
}

.explore-stage {
  position: relative;
  margin-left: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.explore-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.explore-card.active {
  opacity: 1;
  pointer-events: auto;
}

.explore-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
  transition: transform 0.7s ease;
}

.explore-card.active img {
  transform: scale(1.03);
}

.explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 25, 55, 0.82) 100%);
}

.explore-card > div {
  position: relative;
  z-index: 1;
  padding: 40px;
  width: 100%;
}

.explore-card span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.explore-card h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.explore-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 52ch;
}


/* ── Feature band ── */
.feature-band {
  padding: 94px 0;
  background: var(--mint);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.feature-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  margin: 24px 0 30px;
}

.feature-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.feature-image img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

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

.story-card {
  min-height: 340px;
  padding: 32px;
  background: var(--soft);
  border: 1px solid rgba(23, 34, 28, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-feature {
  grid-column: span 2;
  position: relative;
  min-height: 560px;
  padding: 0;
  color: #fff;
}

.story-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.story-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 55, 0.06), rgba(5, 25, 55, 0.82));
}

.story-feature div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 38px;
}

.story-feature h3,
.story-feature p,
.story-feature span,
.dark-story h3,
.dark-story p,
.dark-story span {
  color: #fff;
}

.dark-story {
  background: var(--forest);
}

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

.service-card {
  min-height: 270px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(23, 34, 28, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow);
}

.start-band {
  padding: 82px 0;
  background: var(--forest);
}

.start-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.start-band h2,
.start-band .eyebrow {
  color: #fff;
}

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

.start-steps div {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
}

.start-steps span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-weight: 800;
  margin-bottom: 26px;
}

.start-steps p {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 64px;
  padding: 54px;
  background: var(--mint);
  border: 1px solid rgba(23, 34, 28, 0.08);
  border-radius: var(--radius-xl);
}

.contact-copy p:not(.eyebrow) {
  font-size: 1.12rem;
  margin-top: 22px;
}

.contact-actions {
  justify-content: flex-start;
}

.contact-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-links a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(23, 34, 28, 0.09);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(27, 58, 107, 0.15);
}

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

.form-submit {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: var(--lime);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--lime-2); }

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-success {
  display: none;
  padding: 32px;
  background: var(--paper);
  border-radius: 26px;
}

.form-success.visible {
  display: block;
}

.site-footer {
  padding: 72px 0 54px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.7fr minmax(0, 1fr);
  gap: 44px;
}

.site-footer ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.site-footer a:not(.footer-brand) {
  color: var(--ink);
  font-weight: 800;
}

.site-footer p {
  margin-top: 18px;
}

.footer-meta p {
  margin-top: 0;
  margin-bottom: 16px;
}

.page-hero {
  padding: 174px 0 76px;
  background: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.4rem, 3.8vw, 4.8rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  margin-bottom: 28px;
}

.page-hero-media {
  margin-top: 58px;
}

.page-hero-media img {
  height: min(52vw, 620px);
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.work-section {
  padding: 92px 0;
  background: var(--paper);
}

.work-section.soft {
  background: var(--mint);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 74px;
  align-items: center;
}

.work-row.flip .work-image {
  order: 2;
}

.work-row.flip .work-copy {
  order: 1;
}

.work-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.work-image img {
  height: 520px;
  object-fit: cover;
}

.work-copy h2 {
  max-width: 11ch;
}

.work-copy p:not(.eyebrow) {
  font-size: 1.06rem;
  margin-top: 20px;
}

.work-copy .text-link {
  margin-top: 28px;
}

.page-cta-section {
  padding: 96px 0;
  background: var(--paper);
}

.page-cta-card {
  padding: 58px;
  background: var(--forest);
  border-radius: var(--radius-xl);
  text-align: center;
}

.page-cta-card h2,
.page-cta-card .eyebrow {
  color: #fff;
}

.page-cta-card h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.page-cta-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  margin: 22px auto 30px;
}

.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

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

  .nav-hamburger {
    display: flex;
  }

  nav.open .nav-links {
    position: absolute;
    top: 92px;
    left: 32px;
    right: 32px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    min-height: 0;
    padding: 14px;
  }

  nav.open .nav-links a {
    display: block;
    padding: 14px 12px;
  }

  .hero-media,
  .feature-grid,
  .page-hero-grid,
  .work-row,
  .contact-panel,
  .start-grid,
  .method-header,
  .explore-shell {
    grid-template-columns: 1fr;
  }

  .explore-stage {
    margin-left: 0;
    min-height: 380px;
  }

  .explore-menu {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .explore-link {
    padding: 10px 14px;
    border-bottom: none;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-size: 0.85rem;
  }

  .explore-link::after { display: none; }
  .explore-link.active { background: var(--lime); color: #fff; border-color: var(--lime); }
  .explore-link.active span { color: #fff; opacity: 0.8; }

  .hero-media {
    max-width: 820px;
  }

  .hero-card-lower {
    transform: none;
  }

  .hero-card-feature {
    order: -1;
    height: 520px;
  }

  .hero-card-small {
    height: 300px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .insight-grid,
  .story-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-row.flip .work-image,
  .work-row.flip .work-copy {
    order: initial;
  }
}

@media (max-width: 860px) {
  .site-nav {
    padding: 18px 18px 0;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand-pill {
    min-height: 62px;
    padding: 8px 14px 8px 8px;
    gap: 10px;
  }

  .hamburger-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .hamburger-mark span,
  .nav-hamburger span {
    width: 22px;
  }

  .brand-word {
    font-size: 1.42rem;
  }

  .nav-right {
    display: none;
  }

  .nav-hamburger {
    width: 52px;
    height: 52px;
  }

  nav.open .nav-links {
    top: 74px;
    left: 18px;
    right: 18px;
  }

  .container,
  .container-wide {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 76px 0;
  }

  .hero-section,
  .page-hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
  }

  .hero-media,
  .insight-grid,
  .story-grid,
  .services-grid,
  .method-grid,
  .method-steps,
  .start-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tall-card,
  .story-feature {
    grid-column: auto;
  }

  .hero-card-feature {
    height: 470px;
  }

  .feature-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
  }

  .method-card,
  .service-card,
  .story-card {
    min-height: 250px;
  }

  .story-feature {
    min-height: 520px;
  }

  .feature-image,
  .feature-image img,
  .work-image img {
    min-height: 320px;
    height: 320px;
  }

  .contact-panel,
  .page-cta-card {
    padding: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-word {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1,
  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-card img {
    min-height: 280px;
  }

  .hero-card-feature {
    height: 420px;
  }

  .hero-card-small {
    height: 250px;
  }

  .contact-links,
  .start-steps {
    grid-template-columns: 1fr;
  }
}
