:root {
  --porcelain: #eef2f0;
  --paper: #f8faf8;
  --white: #ffffff;
  --ink: #0b1e29;
  --petrol: #103c46;
  --petrol-deep: #0a3038;
  --teal: #2d7d78;
  --teal-dark: #1e625f;
  --ice: #a9cfd1;
  --ice-pale: #dcebed;
  --slate: #607078;
  --line: #ced8d7;
  --line-dark: rgba(244, 245, 241, 0.18);
  --display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow-sm: 0 12px 32px rgba(11, 30, 41, 0.08);
  --shadow-lg: 0 26px 70px rgba(11, 30, 41, 0.15);
  --radius: 1.25rem;
  --radius-sm: 0.72rem;
  --max: 76rem;
  --header-height: 5.25rem;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

::selection {
  background: var(--ice);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  border-radius: 0.4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.5rem), 49rem);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--petrol-deep);
  color: var(--porcelain);
}

.section-dark::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(169, 207, 209, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(169, 207, 209, 0.035), 0 0 0 10rem rgba(169, 207, 209, 0.025);
  content: "";
  pointer-events: none;
}

.section-dark > .container,
.section-dark > .narrow {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.3rem;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.page-hero-dark .eyebrow {
  color: var(--ice);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.25rem, 8.4vw, 7.5rem);
}

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

h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.15;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1.1rem;
}

.lede {
  max-width: 45rem;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.section-dark .lede,
.page-hero-dark .lede {
  color: rgba(244, 245, 241, 0.76);
}

.section-heading {
  display: grid;
  gap: 1.25rem;
  max-width: 54rem;
  margin-bottom: clamp(2.6rem, 5vw, 4.5rem);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: 3rem;
  max-width: none;
}

.section-heading-split .lede {
  justify-self: end;
  max-width: 33rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "\2192";
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

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

.button:hover::after {
  transform: translateX(3px);
}

.button-teal {
  border-color: var(--teal);
  background: var(--teal);
}

.button-teal:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

.section-dark .button-outline,
.page-hero-dark .button-outline {
  border-color: rgba(244, 245, 241, 0.38);
  color: var(--porcelain);
}

.section-dark .button-outline:hover,
.page-hero-dark .button-outline:hover {
  border-color: var(--porcelain);
  background: rgba(244, 245, 241, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 245, 241, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(11, 30, 41, 0.1);
  box-shadow: 0 6px 22px rgba(11, 30, 41, 0.05);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--ink);
}

.brand-mark svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

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

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .button {
  min-height: 2.75rem;
  padding-inline: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-image: linear-gradient(rgba(45, 125, 120, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 125, 120, 0.08) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hero-copy {
  padding-block: 1.5rem;
}

.hero h1 {
  max-width: 12ch;
}

.hero .lede {
  max-width: 42rem;
  margin: 1.8rem 0 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-note::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.35rem rgba(45, 125, 120, 0.13);
  content: "";
}

.hero-portrait {
  position: relative;
  min-height: 38rem;
}

.hero-portrait::before {
  position: absolute;
  top: -1.4rem;
  left: -1.4rem;
  width: 5.5rem;
  height: 5.5rem;
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  content: "";
}

.hero-portrait::after {
  position: absolute;
  right: -1.3rem;
  bottom: 2rem;
  width: 5rem;
  height: 5rem;
  border-right: 2px solid var(--ice);
  border-bottom: 2px solid var(--ice);
  content: "";
}

.hero-portrait img {
  width: 100%;
  height: 38rem;
  border-radius: 14rem 14rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center 16%;
}

.portrait-label {
  position: absolute;
  right: -1rem;
  bottom: 1.8rem;
  max-width: 16rem;
  border-radius: 0.8rem;
  background: var(--petrol);
  color: var(--porcelain);
  padding: 1.05rem 1.2rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.portrait-label span {
  display: block;
  margin-top: 0.28rem;
  color: var(--ice);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Layout components */
.intro-grid,
.split-grid,
.contact-layout,
.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 6rem);
}

.intro-grid {
  align-items: start;
}

.intro-grid .large-copy {
  max-width: 36rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.intro-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 3rem);
  color: var(--slate);
}

.capability-grid,
.audience-grid,
.principle-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card,
.audience-card,
.detail-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.55rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability-card:hover,
.audience-card:hover,
.detail-card:hover {
  border-color: var(--ice);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card-number {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.4rem;
  border-radius: 50%;
  background: var(--ice-pale);
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.capability-card p,
.audience-card p,
.detail-card p {
  margin-top: 0.85rem;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.6;
}

.audience-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.audience-card:nth-child(2),
.audience-card:nth-child(4) {
  background: var(--ice-pale);
}

.audience-card .text-link {
  margin-top: auto;
  padding-top: 2rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 17rem;
  border-top: 1px solid var(--line-dark);
  padding: 5rem 2rem 0 0;
  counter-increment: process;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: -0.28rem;
  right: 1.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ice);
  content: "";
}

.process-list li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  color: var(--ice);
  content: "0" counter(process);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.process-list h3 {
  color: var(--porcelain);
}

.process-list p {
  max-width: 16rem;
  margin-top: 0.85rem;
  color: rgba(244, 245, 241, 0.7);
  font-size: 0.9rem;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.35);
  background: var(--ink);
  color: var(--porcelain);
  box-shadow: var(--shadow-lg);
}

.quote-copy {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 6vw, 5rem);
}

.quote-copy blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.quote-copy p {
  max-width: 32rem;
  color: rgba(244, 245, 241, 0.7);
}

.quote-context {
  display: flex;
  align-items: center;
  background: var(--ice-pale);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.quote-context h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.quote-context p {
  color: var(--slate);
}

.quote-panel-visual {
  grid-template-areas:
    "copy image"
    "context context";
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
}

.quote-panel-visual .quote-copy {
  grid-area: copy;
  min-height: 40rem;
}

.quote-image {
  grid-area: image;
  min-height: 40rem;
  overflow: hidden;
  background: var(--petrol);
}

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

.quote-panel-visual .quote-context {
  grid-area: context;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.quote-panel-visual .quote-context h2 {
  margin-bottom: 0;
}

.quote-panel-visual .quote-context > p {
  max-width: 42rem;
}

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

.principle {
  border-top: 3px solid var(--teal);
  padding: 1.6rem 0 0;
}

.principle p {
  margin-top: 0.8rem;
  color: var(--slate);
}

.manifesto {
  display: grid;
  min-height: 30rem;
  place-items: center;
  padding: clamp(3rem, 8vw, 7rem);
  text-align: center;
}

.manifesto blockquote {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.manifesto p {
  max-width: 40rem;
  margin: 2rem auto 0;
  color: rgba(244, 245, 241, 0.72);
}

.about-preview {
  align-items: center;
}

.about-preview-image,
.about-portrait {
  position: relative;
}

.about-preview-image img,
.about-portrait img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-preview-image img {
  height: 40rem;
  object-position: center 16%;
}

.about-preview-copy .lede {
  margin: 1.6rem 0 1.8rem;
}

.credential-line {
  margin-top: 1.6rem;
  border-left: 3px solid var(--teal);
  padding-left: 1.1rem;
  color: var(--slate);
  font-size: 0.92rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.page-hero::after {
  position: absolute;
  right: 6%;
  bottom: -13rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid var(--ice);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(169, 207, 209, 0.15), 0 0 0 8rem rgba(169, 207, 209, 0.08);
  content: "";
  pointer-events: none;
}

.page-hero-dark {
  background: var(--petrol-deep);
  color: var(--porcelain);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
}

.page-hero .lede {
  position: relative;
  z-index: 1;
  max-width: 47rem;
  margin-top: 1.8rem;
}

.page-hero .button-row {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.about-hero-grid {
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 9ch;
}

.about-hero-copy .role {
  display: block;
  max-width: 32rem;
  margin: 1.2rem 0 1.6rem;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.about-portrait img {
  height: 44rem;
  object-position: center 18%;
}

.about-portrait::after {
  position: absolute;
  right: -1.3rem;
  bottom: -1.3rem;
  width: 45%;
  height: 45%;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--ice);
  content: "";
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.2rem;
}

.timeline .phase {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline p {
  max-width: 45rem;
  margin-top: 0.8rem;
  color: var(--slate);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.journey-photo {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  margin: 0;
}

.journey-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.journey-photo figcaption {
  margin-top: 1rem;
  border-left: 2px solid var(--teal);
  padding-left: 1rem;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.55;
}

.check-list,
.arrow-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.arrow-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 0.9rem 0 0.9rem 1.8rem;
  color: var(--slate);
}

.check-list li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--teal);
  content: "\2713";
  font-weight: 900;
}

.arrow-list li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--teal);
  content: "\2192";
}

.callout {
  border-radius: var(--radius);
  background: var(--ice-pale);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.callout h3 {
  margin-bottom: 0.8rem;
}

.callout p {
  color: var(--slate);
}

.notice {
  border-left: 3px solid var(--teal);
  background: var(--paper);
  padding: 1.25rem 1.4rem;
  color: var(--slate);
  font-size: 0.9rem;
}

.hub-card {
  display: grid;
  min-height: 24rem;
  grid-template-rows: auto 1fr auto;
}

.hub-card .card-kicker {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-card h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
}

.hub-card p {
  margin-top: 1rem;
}

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

.hub-grid .audience-card:nth-child(2),
.hub-grid .audience-card:nth-child(3) {
  background: var(--ice-pale);
}

.hub-grid .audience-card:nth-child(4) {
  background: var(--paper);
}

/* Services and pricing */
.service-jump-shell {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-block: 1rem;
}

.service-jump-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--petrol-deep);
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.service-jump-nav a:hover {
  border-color: var(--teal);
  background: var(--ice-pale);
}

.price-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-summary-card {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-summary-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.price-summary-card span {
  margin-bottom: auto;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.price-summary-card strong {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-summary-card small {
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.82rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.service-card-top {
  display: flex;
  min-height: 7rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-label {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card > p:not(.service-label),
.deck-direction-card p,
.service-note,
.price-secondary {
  color: var(--slate);
}

.service-card > p:not(.service-label) {
  margin-top: 1rem;
}

.service-card > .service-label + h3 {
  margin-top: 1.2rem;
}

.service-price {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.service-card .service-price {
  flex: 0 0 auto;
  font-size: clamp(1.7rem, 3.5vw, 2.75rem);
  text-align: right;
}

.service-price span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-price-light {
  margin-top: 2.5rem;
  color: var(--porcelain);
}

.service-price-light span {
  color: var(--ice);
}

.price-secondary {
  margin-top: 0.75rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.section-dark .price-secondary {
  color: rgba(244, 245, 241, 0.66);
}

.scope-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 0.75rem 1.35rem;
  color: var(--slate);
  font-size: 0.9rem;
}

.scope-list li::before {
  position: absolute;
  top: 0.82rem;
  left: 0;
  color: var(--teal);
  content: "\2022";
  font-weight: 900;
}

.scope-list-dark li {
  border-color: var(--line-dark);
  color: rgba(244, 245, 241, 0.72);
}

.scope-list-dark li::before {
  color: var(--ice);
}

.service-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.service-addons div {
  display: grid;
  gap: 0.35rem;
  background: var(--white);
  padding: 1.2rem 1.35rem;
}

.service-addons span {
  color: var(--slate);
  font-size: 0.82rem;
}

.service-addons strong {
  font-size: 0.95rem;
}

.deck-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.deck-direction-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
}

.deck-direction-card h3 {
  margin: 1.25rem 0 0;
}

.deck-direction-card p {
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

.deck-preview {
  display: grid;
  min-height: 19rem;
  align-content: end;
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.35rem);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.deck-preview span,
.deck-preview small {
  font-family: var(--mono);
  font-style: normal;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.deck-preview span {
  align-self: start;
  margin-bottom: auto;
  font-size: 0.62rem;
  font-weight: 800;
}

.deck-preview strong {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-transform: uppercase;
}

.deck-preview i {
  width: min(9rem, 42%);
  height: 2px;
  margin: 1.2rem 0;
  background: currentColor;
}

.deck-preview small {
  max-width: 28rem;
  font-size: 0.58rem;
}

.deck-preview-prestige {
  background: #111b26;
  color: #f0e8d9;
}

.deck-preview-prestige strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-transform: none;
}

.deck-preview-character {
  background: #6c2734;
  color: #f6ded4;
}

.deck-preview-character strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: none;
}

.deck-preview-concept {
  background: #171313;
  color: #f3ede5;
  box-shadow: inset 0.55rem 0 0 #d05339;
}

.deck-preview-concept i {
  background: #d05339;
}

.deck-preview-commercial {
  background: #e9d45f;
  color: #133636;
}

.outreach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.service-note {
  margin-top: 1.5rem;
  font-size: 0.84rem;
  line-height: 1.65;
}

.section-dark .service-note {
  color: rgba(244, 245, 241, 0.6);
}

.complete-package {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.complete-package-price {
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.complete-package-price .service-price {
  margin-top: 0;
}

.complete-package-price > p:not(.service-price) {
  margin-top: 0.8rem;
  color: rgba(244, 245, 241, 0.66);
}

.complete-package-price .button {
  margin-top: 2rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 2rem;
  border-radius: calc(var(--radius) * 1.3);
  background: var(--petrol);
  color: var(--porcelain);
  padding: clamp(2rem, 6vw, 4.5rem);
}

.cta-band h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.cta-band p {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(244, 245, 241, 0.72);
}

/* Forms */
.form-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  background: var(--paper);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 0.48rem;
}

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

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.field label span {
  color: var(--slate);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bac8c8;
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.86rem 0.95rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 125, 120, 0.16);
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.55;
}

.checkbox-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-actions .button {
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-smallprint {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  border-radius: 0.7rem;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #dceee8;
  color: #114b42;
}

.form-status.is-error {
  background: #f5e4e0;
  color: #71382f;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-details {
  align-self: start;
}

.contact-details h2 {
  margin-bottom: 1.4rem;
}

.contact-details .lede {
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-block;
  margin: 0.4rem 0 2rem;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  color: var(--slate);
  font-size: 0.88rem;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 0.55rem;
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.legal-nav a {
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--teal-dark);
}

.legal-copy {
  max-width: 50rem;
}

.legal-copy > p:first-child {
  color: var(--slate);
  font-size: 0.9rem;
}

.legal-copy section {
  padding-top: 3rem;
}

.legal-copy section:first-of-type {
  padding-top: 2rem;
}

.legal-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.legal-copy h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.1rem;
}

.legal-copy p,
.legal-copy li {
  color: #42565f;
}

.legal-copy ul {
  padding-left: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--porcelain);
  padding: 4.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.25fr) repeat(2, minmax(9rem, 0.55fr));
  gap: 3rem;
}

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

.footer-brand p {
  max-width: 31rem;
  margin-top: 1.3rem;
  color: rgba(244, 245, 241, 0.65);
  font-size: 0.88rem;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--ice);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  width: fit-content;
  color: rgba(244, 245, 241, 0.74);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(244, 245, 241, 0.12);
  padding-top: 1.4rem;
  color: rgba(244, 245, 241, 0.48);
  font-size: 0.72rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom a {
  text-decoration: none;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 68rem) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.7fr);
    gap: 3rem;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 32rem;
    height: 32rem;
  }

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

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

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading-split .lede {
    justify-self: start;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.7rem;
  }

  .site-header {
    border-bottom-color: var(--line);
    background: var(--porcelain);
    backdrop-filter: none;
  }

  .container,
  .narrow {
    width: min(calc(100% - 2rem), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(100dvh - var(--header-height));
    align-content: start;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    background: var(--ink);
    box-shadow: -1.5rem 0 3rem rgba(11, 30, 41, 0.2);
    padding: 2rem 1.25rem;
    overscroll-behavior: contain;
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid rgba(244, 245, 241, 0.16);
    padding: 1.2rem 0;
    color: rgba(244, 245, 241, 0.78);
    font-size: 1.15rem;
  }

  .site-nav > a:not(.button):hover,
  .site-nav > a[aria-current="page"] {
    color: var(--white);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    display: inline-flex;
    margin-top: 1.5rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero::before {
    width: 100%;
    opacity: 0.7;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .contact-layout,
  .about-hero-grid,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .quote-panel-visual {
    grid-template-areas:
      "copy"
      "image"
      "context";
  }

  .quote-panel-visual .quote-copy {
    min-height: 30rem;
  }

  .quote-image {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .quote-panel-visual .quote-context {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.6rem;
  }

  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-photo {
    position: static;
    order: -1;
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 35rem;
    height: 35rem;
  }

  .hero-portrait {
    width: min(100%, 29rem);
    margin-inline: auto;
  }

  .intro-aside {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 1.5rem 0 0;
  }

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

  .quote-copy {
    min-height: 28rem;
  }

  .about-preview-image img,
  .about-portrait img {
    height: 38rem;
  }

  .about-portrait {
    order: -1;
  }

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

  .service-card-grid,
  .deck-direction-grid,
  .outreach-grid,
  .complete-package {
    grid-template-columns: 1fr;
  }

  .service-addons {
    grid-template-columns: 1fr;
  }

  .complete-package-price {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding: 2rem 0 0;
  }

  .hub-grid .audience-card:nth-child(3) {
    background: var(--paper);
  }

  .hub-grid .audience-card:nth-child(4) {
    background: var(--ice-pale);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    border-left: 0;
    padding: 0 0 1.5rem;
  }

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

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

@media (max-width: 36rem) {
  h1 {
    font-size: clamp(2.85rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .brand {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 31rem;
    height: 31rem;
  }

  .portrait-label {
    right: 0.6rem;
    bottom: 0.8rem;
  }

  .capability-grid,
  .audience-grid,
  .detail-grid,
  .price-summary-grid,
  .principle-grid,
  .process-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card-top {
    min-height: auto;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .service-card .service-price {
    text-align: left;
  }

  .deck-preview {
    min-height: 15rem;
  }

  .audience-card,
  .capability-card,
  .detail-card {
    min-height: 17rem;
  }

  .process-list li {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .quote-copy {
    min-height: 25rem;
  }

  .about-preview-image img,
  .about-portrait img {
    height: 32rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

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

  .footer-bottom-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .legal-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-hero,
  .section {
    padding: 2rem 0;
  }
}
