:root {
  --nero: #08090a;
  --carbon: #121416;
  --carbon-soft: #1a1c1e;
  --rosso: #d71920;
  --rosso-dark: #a90f15;
  --ivory: #f3f0e8;
  --white: #ffffff;
  --steel: #a7adb1;
  --smoke: #707579;
  --dark-line: rgba(255, 255, 255, 0.17);
  --light-line: rgba(8, 9, 10, 0.2);
  --display: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --condensed: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--nero);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { color: var(--white); background: var(--rosso); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.shell {
  width: min(1380px, calc(100% - clamp(2rem, 7vw, 8rem)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1.1rem;
  color: var(--white);
  background: var(--rosso);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--rosso); outline-offset: 5px; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.92);
  border-color: var(--dark-line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.62rem;
  margin-right: auto;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-primary {
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.wordmark-slash {
  color: var(--rosso);
  font-size: 1.2rem;
  font-weight: 300;
}

.wordmark-secondary {
  font-family: var(--display);
  font-size: 1.27rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.6vw, 2.8rem);
}

.site-header nav a {
  position: relative;
  padding: 0.35rem 0;
  color: rgba(243, 240, 232, 0.74);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  transition: color 180ms ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--rosso);
  transition: right 240ms var(--ease);
}

.site-header nav a:hover { color: var(--white); }
.site-header nav a:hover::after { right: 0; }

.header-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem 0.7rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta b { color: var(--rosso); font-size: 1rem; transition: transform 240ms var(--ease); }
.header-cta:hover { color: var(--white); background: var(--rosso); border-color: var(--rosso); }
.header-cta:hover b { color: var(--white); transform: translateX(5px); }

.hero {
  position: relative;
  min-height: max(47rem, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 8.333% 100%,
    var(--nero);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0 0 0 51%;
  background: var(--rosso);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 42%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--carbon);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background: linear-gradient(90deg, var(--nero) 0%, rgba(8, 9, 10, 0.83) 16%, rgba(8, 9, 10, 0.16) 58%, rgba(8, 9, 10, 0.27) 100%);
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(8,9,10,0.12) 58%, rgba(8,9,10,0.82) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: grayscale(0.72) saturate(0.72) contrast(1.15) brightness(0.64);
  transform: scale(1.035);
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 8.7rem;
  padding-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255,255,255,0.35);
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-speedline {
  position: absolute;
  z-index: 2;
  top: -12%;
  left: 53.5%;
  width: 4px;
  height: 130%;
  background: var(--rosso);
  box-shadow: 18px 0 0 rgba(215, 25, 32, 0.18);
  transform: rotate(10deg);
  transform-origin: center;
}

.hero-inner {
  min-height: max(47rem, 100svh);
  display: flex;
  align-items: center;
  padding-top: 6.2rem;
  padding-bottom: 9.6rem;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(65rem, 67%);
}

.eyebrow,
.section-code {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  color: rgba(243, 240, 232, 0.69);
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow > span {
  width: 2.8rem;
  height: 2px;
  background: var(--rosso);
}

.hero h1 {
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 0.8;
}

.hero h1 span {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(5.4rem, 10.2vw, 10.8rem);
  font-weight: 850;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.hero h1 em {
  display: block;
  margin-left: clamp(1rem, 6vw, 7rem);
  color: var(--rosso);
  font-family: var(--display);
  font-size: clamp(4rem, 8.1vw, 8.4rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(243, 240, 232, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

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

.button {
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.button b { font-size: 1rem; transition: transform 260ms var(--ease); }
.button:hover b { transform: translateX(7px); }

.button-primary {
  min-width: 17.5rem;
  padding-right: 2.4rem;
  color: var(--white);
  background: var(--rosso);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  transition: background 180ms ease;
}

.button-primary:hover { background: var(--rosso-dark); }

.button-quiet {
  padding-inline: 0.25rem;
  color: rgba(243, 240, 232, 0.77);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.button-quiet:hover { color: var(--white); border-color: var(--rosso); }
.button-quiet:hover b { transform: translateY(4px); }

.hero-note {
  margin: 1.3rem 0 0;
  color: rgba(243,240,232,0.47);
  font-size: 0.73rem;
}

.hero-rail {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 9, 10, 0.78);
  border-top: 1px solid var(--dark-line);
  backdrop-filter: blur(14px);
}

.rail-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.rail-grid p {
  min-height: 6.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 1.2rem clamp(1rem, 2.5vw, 2.6rem);
  color: rgba(243, 240, 232, 0.59);
  border-left: 1px solid var(--dark-line);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.rail-grid p:first-child { padding-left: 0; border-left: 0; }
.rail-grid span { color: var(--white); font-family: var(--condensed); font-size: 1.45rem; font-style: italic; letter-spacing: -0.03em; }

.section-light { color: var(--nero); background: var(--ivory); }
.section-dark { color: var(--ivory); background: var(--carbon); }
.matters, .process, .pricing, .fit { padding-block: clamp(6.5rem, 10vw, 10rem); }

.section-heading { margin-bottom: clamp(4rem, 7vw, 7rem); }
.split-heading { display: grid; grid-template-columns: minmax(11rem, 0.45fr) minmax(0, 1.55fr); gap: clamp(2rem, 7vw, 8rem); }

.section-code {
  align-items: flex-start;
  margin: 0;
  padding-top: 0.8rem;
  color: rgba(8, 9, 10, 0.5);
}

.section-code span { color: var(--rosso); font-family: var(--condensed); font-size: 1rem; font-style: italic; letter-spacing: 0; }

.section-heading h2,
.experience-copy h2,
.contact h2 {
  margin-bottom: 1.6rem;
  font-family: var(--condensed);
  font-size: clamp(3.4rem, 6.4vw, 7.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.section-heading h2 em,
.experience-copy h2 em,
.contact h2 em {
  color: var(--rosso);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.04em;
}

.split-heading > div:last-child > p {
  max-width: 37rem;
  margin: 0;
  color: rgba(8, 9, 10, 0.62);
  font-size: 1.05rem;
}

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

.matter-row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(16rem, 0.95fr) minmax(18rem, 1.05fr) 2rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
  min-height: 8.4rem;
  padding: 1.6rem 1.5rem 1.6rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--light-line);
  transition: color 320ms var(--ease), padding 320ms var(--ease);
}

.matter-row::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--nero);
  transform: translateX(-101%);
  transition: transform 420ms var(--ease);
}

.matter-row > * { position: relative; z-index: 1; }
.matter-row:hover { color: var(--ivory); padding-left: 1.5rem; }
.matter-row:hover::before { transform: translateX(0); }
.matter-row:hover .matter-mark { color: var(--rosso); transform: translate(4px, -4px); }

.matter-number {
  color: var(--rosso);
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-weight: 800;
  font-style: italic;
}

.matter-row h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  font-weight: 760;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.matter-row p { margin: 0; color: rgba(8, 9, 10, 0.58); font-size: 0.91rem; transition: color 320ms var(--ease); }
.matter-row:hover p { color: rgba(243, 240, 232, 0.67); }
.matter-mark { font-size: 1.3rem; transition: color 240ms ease, transform 240ms var(--ease); }

.story-film {
  position: relative;
  min-height: clamp(38rem, 64vw, 55rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: #202326;
}

.story-film::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -18%;
  right: 11%;
  width: 5px;
  height: 138%;
  background: var(--rosso);
  box-shadow: 20px 0 0 rgba(215, 25, 32, 0.16);
  transform: rotate(10deg);
}

.story-film-media,
.story-film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-film-media {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.82) saturate(0.55) contrast(1.2) brightness(0.63);
  transform: scale(1.025);
}

.story-film-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.95) 0%, rgba(8, 9, 10, 0.72) 46%, rgba(8, 9, 10, 0.22) 78%, rgba(8, 9, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.12), rgba(8, 9, 10, 0.72));
}

.story-film-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 12rem;
}

.story-film-kicker {
  max-width: 46rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
  color: rgba(243, 240, 232, 0.67);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.story-film-kicker::before { content: ""; width: 2.75rem; height: 2px; background: var(--rosso); }
.story-film-kicker b { color: var(--white); font-family: var(--condensed); font-size: 0.9rem; font-style: italic; }

.story-film h2 {
  max-width: 66rem;
  margin-bottom: 2.2rem;
  font-family: var(--condensed);
  font-size: clamp(4.5rem, 9.7vw, 10.5rem);
  font-weight: 850;
  font-style: italic;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.07em;
}

.story-film h2 em {
  color: var(--rosso);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.045em;
}

.story-film-content > p:last-child {
  max-width: 40rem;
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.story-film-sequence {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  background: rgba(8, 9, 10, 0.76);
  backdrop-filter: blur(18px);
}

.story-film-sequence span {
  min-height: 6.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 4vw, 4rem);
  border-left: 1px solid var(--dark-line);
  font-family: var(--condensed);
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.story-film-sequence span:first-child { border-left: 0; }
.story-film-sequence b { color: var(--rosso); font-size: 0.7rem; letter-spacing: 0.08em; }

.process { position: relative; overflow: hidden; isolation: isolate; }
.process::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px) 0 0 / 8.333% 100%; }
.process-slash { position: absolute; z-index: -1; top: -20%; right: 10%; width: 8rem; height: 145%; background: var(--rosso); transform: rotate(12deg); opacity: 0.88; }

.process-heading { display: grid; grid-template-columns: minmax(11rem, 0.45fr) minmax(0, 1.55fr); gap: clamp(2rem, 7vw, 8rem); }
.process .section-code { color: rgba(243, 240, 232, 0.48); }
.process-heading h2 { max-width: 63rem; }
.process-heading > div:last-child > p { max-width: 40rem; margin: 0; color: rgba(243,240,232,0.6); font-size: 1.05rem; }

.process-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dark-line);
}

.process-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7.25rem;
  width: 1px;
  background: linear-gradient(var(--rosso), rgba(215, 25, 32, 0.1));
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 7.25rem minmax(12rem, 0.7fr) minmax(18rem, 1.25fr) minmax(11rem, 0.65fr);
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--dark-line);
  transition: background 220ms ease, padding 220ms var(--ease);
}

.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 7.25rem;
  width: 0;
  height: 3px;
  background: var(--rosso);
  transition: width 360ms var(--ease);
}

.process-step:hover { padding-inline: 1rem; background: rgba(8,9,10,0.46); }
.process-step:hover::before { width: clamp(5rem, 14vw, 13rem); }

.process-number {
  color: transparent;
  font-family: var(--condensed);
  font-size: clamp(2.8rem, 4vw, 4.7rem);
  font-weight: 850;
  font-style: italic;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(243, 240, 232, 0.35);
}

.process-name p,
.package-index,
.package-flag {
  margin-bottom: 0.65rem;
  color: var(--rosso);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.process-name h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.process-copy { margin: 0; color: rgba(243,240,232,0.72); }
.process-spec { margin: 0; }
.process-spec > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.process-spec dt { color: var(--smoke); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; }
.process-spec dd { margin: 0; color: var(--ivory); font-size: 0.75rem; text-align: right; }

.process-note {
  display: flex;
  gap: 1rem 2rem;
  margin: 2rem 0 0 7.25rem;
  padding: 1.15rem 1.5rem;
  border-left: 3px solid var(--rosso);
  background: rgba(255,255,255,0.035);
  font-size: 0.82rem;
}

.process-note strong { color: var(--ivory); text-transform: uppercase; letter-spacing: 0.08em; }
.process-note span { color: rgba(243,240,232,0.65); }

.pricing {
  background:
    linear-gradient(90deg, rgba(8,9,10,0.045) 1px, transparent 1px) 0 0 / 8.333% 100%,
    var(--ivory);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--light-line);
}

.price-package {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.2vw, 3.5rem);
  color: var(--nero);
  border-left: 1px solid var(--light-line);
}

.price-package:last-child { border-right: 1px solid var(--light-line); }
.price-package::before { content: ""; position: absolute; top: -1px; left: 0; width: 4.25rem; height: 4px; background: var(--rosso); clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }

.price-package-featured {
  color: var(--ivory);
  background: var(--nero);
  transform: translateY(-1.35rem);
  padding-top: calc(clamp(2rem, 3.2vw, 3.5rem) + 1.35rem);
  padding-bottom: calc(clamp(2rem, 3.2vw, 3.5rem) + 1.35rem);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.package-flag { position: absolute; top: 2.2rem; right: 2rem; color: var(--ivory); }
.package-header h3 { margin-bottom: 1rem; font-family: var(--condensed); font-size: clamp(2.5rem, 4.2vw, 4.6rem); font-weight: 850; font-style: italic; line-height: 0.88; text-transform: uppercase; letter-spacing: -0.055em; }

.package-price { display: flex; align-items: baseline; gap: 0.85rem; margin-bottom: 1.5rem; }
.package-price span { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; }
.package-price strong { font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.2rem); font-style: italic; font-weight: 400; line-height: 1; }
.package-header > p:last-child { min-height: 5rem; color: var(--smoke); }
.price-package-featured .package-header > p:last-child { color: rgba(243,240,232,0.66); }

.package-features { margin: 1rem 0 1.5rem; padding: 0; list-style: none; border-top: 1px solid currentColor; }
.package-features li { position: relative; padding: 0.85rem 0 0.85rem 1.25rem; border-bottom: 1px solid rgba(8,9,10,0.16); font-size: 0.9rem; }
.price-package-featured .package-features li { border-color: rgba(243,240,232,0.18); }
.package-features li::before { content: "/"; position: absolute; left: 0; color: var(--rosso); font-weight: 900; }
.package-scope { margin: 0 0 2rem; color: var(--smoke); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.price-package-featured .package-scope { color: rgba(243,240,232,0.5); }

.package-cta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding: 1rem 0; border-bottom: 2px solid var(--rosso); font-size: 0.67rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.14em; }
.package-cta b { color: var(--rosso); transition: transform 220ms var(--ease); }
.package-cta:hover b { transform: translateX(6px); }

.pricing-footnote { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.7rem; color: var(--smoke); font-size: 0.8rem; }
.pricing-footnote p { max-width: 58rem; margin: 0; }
.pricing-footnote a { flex: none; color: var(--nero); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }

.scope-promise {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(6rem, 10vw, 10rem);
  color: var(--nero);
  background: var(--rosso);
}

.scope-promise::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28%;
  right: -7%;
  width: 34%;
  height: 160%;
  background: rgba(8, 9, 10, 0.13);
  transform: rotate(11deg);
}

.scope-promise-mark {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.28em;
  color: rgba(8, 9, 10, 0.08);
  font-family: var(--condensed);
  font-size: clamp(18rem, 37vw, 38rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.78;
  letter-spacing: -0.12em;
}

.scope-promise-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.43fr) minmax(0, 1.57fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.scope-promise-label {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-top: 0.75rem;
}

.scope-promise-label span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scope-promise-label b {
  width: min(100%, 15rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(8, 9, 10, 0.38);
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scope-promise-copy h2 {
  max-width: 67rem;
  margin-bottom: 3rem;
  font-family: var(--condensed);
  font-size: clamp(3.8rem, 7.5vw, 8.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.065em;
}

.scope-promise-copy h2 em {
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.04em;
}

.scope-promise-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: 2rem;
  border-top: 2px solid rgba(8, 9, 10, 0.72);
}

.scope-promise-details p { margin: 0; max-width: 39rem; }
.scope-promise-lead { font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.4; }
.scope-promise-details p:last-child { color: rgba(8, 9, 10, 0.67); font-size: 0.9rem; font-weight: 600; }

.experience { color: var(--ivory); background: var(--carbon); }

.experience-grid {
  min-height: 48rem;
  display: grid;
  grid-template-columns: minmax(25rem, 0.82fr) minmax(0, 1.18fr);
}

.experience-stat {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem);
  color: var(--ivory);
  background: var(--nero);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.experience-stat::before {
  content: "20";
  position: absolute;
  z-index: 1;
  top: -7rem;
  left: -3rem;
  color: rgba(255,255,255,0.08);
  font-family: var(--condensed);
  font-size: 34rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.experience-stat::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.16) 0%, rgba(8, 9, 10, 0.08) 38%, rgba(8, 9, 10, 0.9) 100%),
    linear-gradient(105deg, rgba(215, 25, 32, 0.5), transparent 68%);
}

.experience-stat > * { position: relative; z-index: 2; }
.experience-stat > .experience-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: grayscale(0.75) saturate(0.62) contrast(1.15) brightness(0.68);
}
.experience-stat > p { margin-bottom: 3rem; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; }
.experience-stat > div { display: flex; align-items: flex-start; font-family: var(--condensed); font-style: italic; line-height: 0.72; }
.experience-stat > div span { font-size: clamp(9rem, 18vw, 18rem); font-weight: 900; letter-spacing: -0.1em; }
.experience-stat sup { margin-top: 0.6rem; font-size: clamp(3rem, 6vw, 6rem); font-weight: 700; }
.experience-stat small { margin-top: 2.2rem; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; }

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(2.5rem, 9vw, 10rem) clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 6rem);
}

.experience-copy .section-code { margin-bottom: 3rem; color: rgba(243, 240, 232, 0.48); }
.experience-copy h2 { max-width: 50rem; }
.experience-copy > p { max-width: 46rem; color: rgba(243,240,232,0.6); }
.experience-copy .experience-lead { color: var(--ivory); font-family: var(--display); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.45; }

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.5rem;
  border-block: 1px solid var(--dark-line);
}

.principles span {
  flex: 1 1 auto;
  padding: 1.2rem 1.4rem;
  border-left: 1px solid var(--dark-line);
  font-size: 0.61rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.principles span:first-child { border-left: 0; }
.experience-copy .faith-note { margin-top: 1.4rem; font-size: 0.74rem; color: rgba(243,240,232,0.42); }

.fit-heading { align-items: end; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.fit-column { padding: clamp(2.3rem, 5vw, 5rem); }
.fit-column:first-child { padding-left: 0; }
.fit-no { border-left: 1px solid var(--light-line); }
.fit-label { margin-bottom: 2.4rem; color: var(--rosso); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.19em; }
.fit-column ul { margin: 0; padding: 0; list-style: none; }
.fit-column li { position: relative; margin-top: 1rem; padding: 0 0 1rem 2.4rem; border-bottom: 1px solid rgba(8,9,10,0.1); }
.fit-column li::before { content: "/"; position: absolute; left: 0; color: var(--rosso); font-family: var(--condensed); font-weight: 900; font-style: italic; }
.fit-column li:last-child { border-bottom: 0; }

.contact {
  position: relative;
  min-height: 54rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--nero);
}

.contact::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 8.333% 100%; }
.contact-cut { position: absolute; z-index: -1; top: -15%; right: -8%; width: 46%; height: 130%; background: var(--rosso); clip-path: polygon(37% 0, 100% 0, 100% 100%, 0 100%); }
.contact-inner { padding-block: clamp(7rem, 12vw, 12rem); }
.contact .eyebrow { margin-bottom: 2.5rem; }
.contact h2 { max-width: 66rem; margin-bottom: 2rem; font-size: clamp(4.3rem, 9.2vw, 10rem); }
.contact h2 em { color: var(--rosso); }
.contact-inner > p:not(.eyebrow) { max-width: 37rem; margin-bottom: 3rem; color: rgba(243,240,232,0.62); }

.contact-link {
  width: min(100%, 49rem);
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  border-block: 1px solid rgba(255,255,255,0.36);
  font-family: var(--condensed);
  font-size: clamp(1.55rem, 3.4vw, 3.25rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  transition: padding 260ms var(--ease), color 180ms ease;
}

.contact-link b { color: var(--rosso); font-size: 1.6rem; transition: transform 260ms var(--ease); }
.contact-link:hover { padding-left: 1rem; color: var(--white); }
.contact-link:hover b { transform: translateX(8px); }

.contact-details { display: flex; flex-wrap: wrap; gap: 1.5rem 3.5rem; margin-top: 2.2rem; }
.contact-details a { color: rgba(243,240,232,0.6); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-details a:hover { color: var(--white); }

.site-footer { color: rgba(243,240,232,0.5); background: var(--nero); border-top: 1px solid var(--dark-line); }
.footer-top { min-height: 7rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-top p { margin: 0; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-wordmark { color: var(--ivory); }
.legal-note { padding-block: 2.2rem 3.5rem; border-top: 1px solid var(--dark-line); }
.legal-note p { max-width: 78rem; margin: 0; font-size: 0.67rem; line-height: 1.75; }

@media (prefers-reduced-motion: no-preference) {
  .hero-media { animation: media-reveal 950ms var(--ease) both; }
  .hero-speedline { animation: line-reveal 900ms 160ms var(--ease) both; }
  .hero-copy > * { animation: rise-in 700ms var(--ease) both; }
  .hero-copy > :nth-child(1) { animation-delay: 180ms; }
  .hero-copy > :nth-child(2) { animation-delay: 250ms; }
  .hero-copy > :nth-child(3) { animation-delay: 340ms; }
  .hero-copy > :nth-child(4) { animation-delay: 420ms; }
  .hero-copy > :nth-child(5) { animation-delay: 490ms; }
}

@keyframes media-reveal {
  from { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  to { clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes line-reveal {
  from { opacity: 0; transform: translateY(-30%) rotate(10deg); }
  to { opacity: 1; transform: translateY(0) rotate(10deg); }
}

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

@media (max-width: 1100px) {
  .hero-copy { width: 73%; }
  .hero h1 span { font-size: clamp(5rem, 10.8vw, 8rem); }
  .matter-row { grid-template-columns: 3rem minmax(15rem, 0.9fr) minmax(15rem, 1.1fr) 2rem; }
  .process-step { grid-template-columns: 5rem minmax(11rem, 0.65fr) minmax(16rem, 1.1fr) minmax(10rem, 0.6fr); gap: 1.6rem; }
  .process-track::before,
  .process-step::before { left: 5rem; }
  .experience-grid { grid-template-columns: minmax(20rem, 0.7fr) minmax(0, 1.3fr); }
  .experience-stat { padding-inline: 4rem; }
  .principles { display: grid; grid-template-columns: 1fr 1fr; }
  .principles span:nth-child(3) { border-left: 0; border-top: 1px solid var(--dark-line); }
  .principles span:nth-child(4) { border-top: 1px solid var(--dark-line); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 4.5rem; }
  .header-inner { min-height: 4.5rem; }
  .site-header nav { display: none; }
  .header-cta { min-height: 2.5rem; padding: 0.55rem 0.75rem; }
  .header-cta span { display: none; }
  .header-cta b { font-size: 1.2rem; }

  .hero { min-height: auto; background: var(--nero); }
  .hero::before { inset: 0 0 45% 58%; opacity: 0.85; }
  .hero-media { inset: 0; clip-path: none; opacity: 0.76; }
  .hero-media::before { background: linear-gradient(90deg, rgba(8,9,10,0.95) 0%, rgba(8,9,10,0.77) 62%, rgba(8,9,10,0.3) 100%); }
  .hero-media::after { background: linear-gradient(180deg, rgba(8,9,10,0.12) 42%, var(--nero) 88%); }
  .hero-media img { object-position: 53% center; filter: grayscale(0.7) saturate(0.7) contrast(1.14) brightness(0.52); }
  .hero-media figcaption { display: none; }
  .hero-speedline { left: auto; right: 12%; width: 3px; opacity: 0.7; }
  .hero-inner { min-height: 48rem; padding-top: 7.5rem; padding-bottom: 7rem; align-items: center; }
  .hero-copy { width: 100%; }
  .hero h1 span { font-size: clamp(4rem, 17vw, 7rem); white-space: normal; }
  .hero h1 em { margin-left: 0.5rem; font-size: clamp(3.5rem, 15vw, 6.3rem); }
  .hero-lead { max-width: 34rem; font-size: 0.98rem; }
  .hero-rail { position: relative; }
  .rail-grid { grid-template-columns: 1fr 1fr; }
  .rail-grid p { min-height: 5.2rem; padding: 1rem; border-bottom: 1px solid var(--dark-line); }
  .rail-grid p:first-child { padding-left: 1rem; }
  .rail-grid p:nth-child(odd) { border-left: 0; }

  .split-heading,
  .process-heading { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-code { padding-top: 0; }
  .section-heading h2, .experience-copy h2 { font-size: clamp(3.1rem, 13vw, 5.8rem); }

  .matter-row { grid-template-columns: 2.5rem 1fr 1.5rem; gap: 0.8rem 1rem; min-height: 0; padding: 1.8rem 0; }
  .matter-row h3 { font-size: 1.65rem; }
  .matter-row p { grid-column: 2 / -1; }
  .matter-mark { grid-column: 3; grid-row: 1; }
  .matter-row:hover { padding-left: 1rem; padding-right: 1rem; }

  .story-film { min-height: 44rem; }
  .story-film::before { right: 8%; opacity: 0.7; }
  .story-film-content { padding-block: 7rem 11rem; }
  .story-film h2 { font-size: clamp(4rem, 15vw, 7.5rem); }
  .story-film-shade { background: linear-gradient(90deg, rgba(8,9,10,0.9), rgba(8,9,10,0.44)), linear-gradient(180deg, rgba(8,9,10,0.18), rgba(8,9,10,0.78)); }
  .story-film-sequence span { min-height: 5.5rem; padding-inline: 1.3rem; }

  .process-slash { right: 4%; width: 3.5rem; opacity: 0.55; }
  .process-track::before { left: 2.25rem; }
  .process-step { grid-template-columns: 4.5rem 1fr; gap: 1.25rem; }
  .process-step::before { left: 2.25rem; }
  .process-name,
  .process-copy,
  .process-spec { grid-column: 2; }
  .process-note { margin-left: 4.5rem; flex-direction: column; }

  .pricing-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .price-package,
  .price-package:last-child { border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
  .price-package-featured { transform: none; padding: clamp(2rem, 7vw, 3.25rem); }
  .package-header > p:last-child { min-height: 0; }

  .scope-promise-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .scope-promise-label { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
  .scope-promise-label b { justify-self: end; }
  .scope-promise-details { grid-template-columns: 1fr; gap: 1.6rem; }

  .experience-grid { min-height: 0; grid-template-columns: 1fr; }
  .experience-stat { min-height: 33rem; clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%); padding: 4rem 2rem 6rem; }
  .experience-stat > div span { font-size: clamp(9rem, 42vw, 15rem); }
  .experience-copy { padding: 5rem clamp(1rem, 7vw, 4rem) 7rem; }

  .fit-grid { grid-template-columns: 1fr; }
  .fit-column, .fit-column:first-child { padding: 2.5rem 0; }
  .fit-no { border-top: 1px solid var(--light-line); border-left: 0; }

  .contact { min-height: 46rem; }
  .contact-cut { top: 62%; right: -14%; width: 74%; height: 55%; }
  .contact h2 { font-size: clamp(4rem, 16vw, 7rem); }
  .contact-link { font-size: clamp(1.4rem, 7vw, 2.5rem); }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 2rem); }
  .wordmark-primary { font-size: 0.9rem; }
  .wordmark-secondary { font-size: 1.1rem; }
  .hero-inner { min-height: 45rem; padding-top: 6.7rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 0.8rem; }
  .button { width: 100%; }
  .button-quiet { justify-content: space-between; }
  .rail-grid p { align-items: flex-start; flex-direction: column; gap: 0.25rem; font-size: 0.57rem; }
  .matter-row p { font-size: 0.84rem; }
  .story-film { min-height: 42rem; }
  .story-film-content { padding-bottom: 12rem; }
  .story-film-kicker b { display: none; }
  .story-film-sequence { grid-template-columns: 1fr; }
  .story-film-sequence span { min-height: 3.5rem; padding: 0.7rem 1rem; border-top: 1px solid var(--dark-line); border-left: 0; font-size: 1rem; }
  .story-film-sequence span:first-child { border-top: 0; }
  .process-number { font-size: 2.5rem; }
  .process-copy,
  .process-spec { grid-column: 1 / -1; margin-left: 4.5rem; }
  .process-note { margin-left: 0; }
  .pricing-footnote { flex-direction: column; }
  .scope-promise-label { grid-template-columns: 1fr; }
  .scope-promise-label b { justify-self: start; }
  .scope-promise-copy h2 { font-size: clamp(3.3rem, 14vw, 5rem); }
  .experience-copy { padding-inline: 1rem; }
  .principles { grid-template-columns: 1fr; }
  .principles span { border-top: 1px solid var(--dark-line); border-left: 0; }
  .principles span:first-child { border-top: 0; }
  .contact-details { flex-direction: column; gap: 0.8rem; }
  .footer-top { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .story-film-media { display: none; }
}
