:root {
  --ink: #080808;
  --charcoal: #111213;
  --graphite: #1d1f21;
  --silver: #d8d4cc;
  --muted: #9d978e;
  --paper: #f2efe8;
  --warm: #e7e0d3;
  --line: rgba(255, 255, 255, 0.14);
  --red: #a91f24;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 90px;
  padding: 18px clamp(20px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: 56px;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(242, 239, 232, 0.78);
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  border: 1px solid rgba(242, 239, 232, 0.45);
  padding: 11px 15px;
}

.menu-button {
  background: transparent;
  border: 1px solid rgba(242, 239, 232, 0.35);
  color: var(--paper);
  display: none;
  padding: 10px 13px;
  text-transform: uppercase;
}

.home-hero {
  min-height: clamp(620px, 78vh, 780px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  margin: 0;
}

.hero-media,
.hero-media img,
.hero-media video {
  height: clamp(620px, 78vh, 780px);
  min-height: 0;
  width: 100%;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
  object-position: center 56%;
}

.hero-video-media {
  background: #050505;
  position: relative;
}

.hero-video-media .hero-poster,
.hero-video-media .hero-video {
  inset: 0;
  object-position: var(--hero-object-position-desktop, center center);
  position: absolute;
}

.hero-video-media .hero-poster {
  transition: opacity 0.65s ease;
}

.hero-video-media .hero-video {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-video-media.is-video-ready .hero-video {
  opacity: 1;
}

.hero-video-media.is-video-ready .hero-poster {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-media .hero-video {
    display: none;
  }

  .hero-video-media .hero-poster {
    opacity: 1;
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.6) 36%, rgba(8, 8, 8, 0.1) 72%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.72), transparent 42%);
  inset: 0;
  position: absolute;
}

.hero-copy {
  left: clamp(22px, 6vw, 88px);
  max-width: 900px;
  position: absolute;
  top: 52%;
  transform: translateY(-45%);
}

.eyebrow {
  color: var(--silver);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.85rem, 4.5vw, 4.8rem);
  max-width: 800px;
}

h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.72rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
}

p {
  color: rgba(242, 239, 232, 0.76);
  font-size: 1rem;
  margin: 0;
}

.hero-copy p:not(.eyebrow) {
  font-size: clamp(1.02rem, 1.34vw, 1.18rem);
  max-width: 500px;
  margin-top: 22px;
}

.actions {
  margin-top: 36px;
}

.hero-official-logo {
  display: block;
  height: auto;
  margin-top: 30px;
  max-width: 190px;
  opacity: 0.82;
  width: clamp(132px, 12vw, 190px);
}

.section-heading .button,
.split-layout .button,
.notice-panel .button,
.image-band .button {
  margin-top: 30px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  min-height: 46px;
  padding: 13px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
}

.button.secondary,
.button.text {
  border: 1px solid rgba(242, 239, 232, 0.35);
  color: var(--paper);
  margin-left: 10px;
}

.home-section {
  padding: clamp(58px, 6.4vw, 88px) clamp(20px, 4vw, 56px);
}

.pathway-section {
  background: var(--warm);
  color: var(--ink);
}

.pathway-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.pathway-panel {
  aspect-ratio: 16 / 11;
  color: var(--paper);
  display: block;
  min-height: clamp(340px, 30vw, 470px);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.pathway-panel img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  transition: transform 700ms ease;
  width: 100%;
}

.pathway-panel-1 img {
  object-position: 48% center;
}

.pathway-panel-2 img {
  object-position: 76% 72%;
}

.pathway-panel:hover img {
  transform: scale(1.035);
}

.pathway-overlay {
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.04) 68%);
  inset: 0;
  position: absolute;
}

.pathway-copy {
  bottom: 0;
  display: grid;
  gap: 10px;
  left: 0;
  max-width: 520px;
  padding: clamp(24px, 4vw, 42px);
  position: absolute;
}

.pathway-copy strong {
  font-size: clamp(1.52rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pathway-copy span {
  color: rgba(242, 239, 232, 0.78);
}

.home-programs {
  background: #eee9df;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
  color: var(--ink);
  padding: clamp(64px, 7vw, 98px) clamp(20px, 4vw, 56px);
}

.home-programs-inner {
  align-items: start;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.home-programs-head {
  max-width: 540px;
}

.home-programs-head .eyebrow {
  color: rgba(8, 8, 8, 0.54);
}

.home-programs h2 {
  color: var(--ink);
  font-size: clamp(1.72rem, 2.65vw, 2.85rem);
}

.home-programs-head p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  margin-top: 24px;
}

.home-programs .button.primary {
  background: var(--ink);
  color: var(--paper);
  margin-top: 36px;
}

.home-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-programs-grid article {
  border-top: 1px solid rgba(8, 8, 8, 0.18);
  min-height: 178px;
  padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.6vw, 30px);
}

.home-programs-grid article.capability-label-only {
  align-items: center;
  display: flex;
  min-height: 124px;
}

.home-programs-grid article:nth-child(odd) {
  border-right: 1px solid rgba(8, 8, 8, 0.14);
}

.home-programs-grid h3 {
  color: rgba(8, 8, 8, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-programs-grid p {
  color: rgba(8, 8, 8, 0.66);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  margin-top: 20px;
  max-width: 330px;
}

.partner-structure {
  background: #090909;
  border-top: 1px solid rgba(242, 239, 232, 0.08);
  color: var(--paper);
  padding: clamp(58px, 6.6vw, 92px) clamp(20px, 4vw, 56px);
}

.partner-structure-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.partner-structure h2 {
  color: var(--paper);
  max-width: 760px;
}

.partner-structure-grid {
  border-top: 1px solid rgba(242, 239, 232, 0.18);
  display: grid;
  gap: clamp(30px, 4vw, 58px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 4.8vw, 64px);
  padding-top: clamp(30px, 3.8vw, 48px);
}

.partner-structure article {
  border-right: 1px solid rgba(242, 239, 232, 0.12);
  padding-right: clamp(24px, 3vw, 42px);
}

.partner-structure article:last-child {
  border-right: 0;
}

.partner-structure h3 {
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.28;
  text-transform: uppercase;
}

.partner-structure p {
  color: rgba(242, 239, 232, 0.7);
  font-size: clamp(0.94rem, 1.08vw, 1rem);
  margin-top: 22px;
  max-width: 310px;
}

.home-teaser {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.8fr);
}

.home-teaser.light {
  background: var(--warm);
  color: var(--ink);
}

.home-teaser.dark {
  background: #0b0b0b;
  color: var(--paper);
}

.home-teaser.light p {
  color: rgba(8, 8, 8, 0.68);
}

.home-teaser.light .eyebrow {
  color: rgba(8, 8, 8, 0.58);
}

.home-teaser.light .button.text {
  border-color: rgba(8, 8, 8, 0.32);
  color: var(--ink);
}

.home-teaser.editorial {
  align-items: end;
  gap: clamp(38px, 6vw, 88px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
}

.home-teaser.editorial .teaser-copy {
  border-top: 1px solid rgba(8, 8, 8, 0.2);
  max-width: 560px;
  padding-top: clamp(24px, 3vw, 36px);
}

.home-teaser.editorial figure {
  align-self: stretch;
}

.home-teaser.editorial img {
  aspect-ratio: 5 / 3;
  object-position: center center;
}

.home-teaser figure {
  margin: 0;
  overflow: hidden;
}

.home-teaser img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-teaser .button.text {
  margin-left: 0;
  margin-top: 38px;
}

.home-teaser h2 {
  font-size: clamp(1.6rem, 2.55vw, 2.55rem);
  max-width: 620px;
}

.home-teaser p:not(.eyebrow) {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  margin-top: 20px;
  max-width: 520px;
}

.final-cta {
  align-items: center;
  background: #090909;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 76px) clamp(20px, 4vw, 56px);
}

.final-cta h2 {
  color: var(--paper);
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.05;
  max-width: 680px;
}


.section,
.page-hero {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 34px);
}

.page-hero {
  padding-top: clamp(92px, 12vw, 150px);
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
}

.authority {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.authority p,
.section-heading p,
.split-layout p,
.notice-panel p,
.image-band p,
.copy-block p {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  max-width: 700px;
}

.feature-section {
  display: grid;
  gap: 44px;
}

.section-heading {
  max-width: 860px;
}

.section-heading p {
  margin-top: 20px;
}

.feature-grid,
.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100%;
}

.feature-card div {
  padding: 20px;
}

.feature-card p {
  margin-top: 10px;
}

.media {
  margin: 0;
  overflow: hidden;
}

.media img {
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-image img {
  aspect-ratio: 4 / 3;
}

.media-empty {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.028);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(216, 212, 204, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
  text-transform: uppercase;
}

.notice-panel {
  background: #121314;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(72px, 9vw, 128px);
  margin-top: clamp(72px, 9vw, 128px);
}

.notice-panel.with-media {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  padding: clamp(20px, 3vw, 36px);
}

.notice-panel.with-media .notice-copy {
  align-self: center;
  min-width: 0;
}

.notice-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.notice-media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.notice {
  border-left: 2px solid rgba(216, 212, 204, 0.48);
  color: var(--paper);
  margin: 24px 0 0;
  padding-left: 18px;
}

.split-layout,
.image-band {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.image-band .band-image img {
  aspect-ratio: 21 / 10;
}

.gallery-section h2,
.text-list h2,
.process h2,
.copy-block h2 {
  margin-bottom: 28px;
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-list ul,
.process ol {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-list li,
.process li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 239, 232, 0.78);
  padding: 17px 0;
}

.process ol {
  counter-reset: process;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process li {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 150px;
  padding: 22px;
}

.process li::before {
  color: var(--red);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.partners-page .page-hero {
  padding-bottom: clamp(48px, 6vw, 76px);
  padding-top: clamp(74px, 8vw, 108px);
}

.partners-page .split-layout {
  padding-top: clamp(48px, 5.8vw, 78px);
}

.partners-page .process {
  padding-bottom: clamp(68px, 8vw, 108px);
  padding-top: clamp(44px, 5.8vw, 74px);
}

.partners-page .process h2 {
  margin-bottom: clamp(36px, 5vw, 62px);
}

.partners-page .process ol {
  border-top: 1px solid rgba(242, 239, 232, 0.18);
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partners-page .process li {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.14);
  color: rgba(242, 239, 232, 0.78);
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  min-height: 0;
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px) 0;
}

.partners-page .process li::before {
  content: none;
}

.enquiry-page main {
  background:
    radial-gradient(circle at 38% 42%, rgba(29, 31, 33, 0.46), transparent 34%),
    radial-gradient(circle at 74% 30%, rgba(242, 239, 232, 0.035), transparent 28%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 58%, #050505 100%);
}

.private-enquiry-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 3.8vw, 52px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(48px, 6vw, 78px) clamp(18px, 4vw, 42px) clamp(58px, 7vw, 92px);
}

.enquiry-intro {
  min-width: 0;
}

.enquiry-intro h1 {
  font-size: clamp(2.75rem, 3.95vw, 4.12rem);
  max-width: 680px;
}

.enquiry-intro p:not(.eyebrow) {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  margin-top: 22px;
  max-width: 500px;
}

.enquiry-panel {
  background: linear-gradient(180deg, #ebe6dc 0%, #e3dcd1 100%);
  border: 1px solid rgba(242, 239, 232, 0.16);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(242, 239, 232, 0.035);
  color: var(--ink);
  min-width: 0;
  padding: clamp(22px, 2.6vw, 32px);
  width: 100%;
}

.enquiry-form {
  display: grid;
  gap: 14px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry-form label {
  color: rgba(8, 8, 8, 0.72);
  display: grid;
  font-size: 0.74rem;
  gap: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-wide,
.enquiry-form button,
.direct-contact {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: #f7f4ee;
  border: 1px solid rgba(8, 8, 8, 0.16);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(8, 8, 8, 0.58) 50%), linear-gradient(135deg, rgba(8, 8, 8, 0.58) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.enquiry-form button {
  background: var(--ink);
  border: 0;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.12em;
  margin-top: 4px;
  min-height: 52px;
  text-transform: uppercase;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.honeypot {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-status {
  color: rgba(8, 8, 8, 0.72);
  font-size: 0.9rem;
  grid-column: 1 / -1;
  min-height: 1.4em;
}

.form-status[data-state="success"] {
  color: #245c3a;
}

.form-status[data-state="error"] {
  color: #8c1d24;
}

.direct-contact {
  align-items: center;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  color: rgba(8, 8, 8, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  gap: 10px 18px;
  margin-top: 4px;
  padding-top: 18px;
}

.direct-contact span {
  color: rgba(8, 8, 8, 0.58);
}

.direct-contact a {
  color: var(--ink);
  overflow-wrap: anywhere;
  text-decoration-color: rgba(8, 8, 8, 0.36);
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  align-items: start;
  gap: clamp(22px, 5vw, 64px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 34px clamp(20px, 4vw, 56px);
}

.site-footer > div {
  align-content: start;
  display: grid;
  gap: 8px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 18px;
  width: auto;
}

.footer-shelby-performance-logo {
  display: block;
  height: auto;
  margin-bottom: 10px;
  max-width: 168px;
  opacity: 0.84;
  width: clamp(128px, 12vw, 168px);
}

.footer-name {
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 500;
}

.site-footer p,
.site-footer a {
  font-size: 1rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.site-footer a {
  color: var(--paper);
  overflow-wrap: anywhere;
}

.text-page main {
  min-height: 66vh;
}

.about-page main {
  background: #090909;
}

.about-hero {
  min-height: clamp(620px, 72vh, 760px);
  overflow: hidden;
  position: relative;
}

.about-hero-media {
  background: #050505;
  height: clamp(620px, 72vh, 760px);
  margin: 0;
  position: absolute;
  inset: 0;
}

.about-hero-media img,
.about-hero-media video {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.about-hero-media video {
  opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-media video {
    display: none;
  }
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.48) 43%, rgba(8, 8, 8, 0.06)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.52), transparent 52%);
  inset: 0;
  position: absolute;
}

.about-hero-copy {
  left: clamp(22px, 6vw, 88px);
  max-width: 1120px;
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
}

.about-hero-copy.no-supporting-copy {
  top: 53%;
  transform: translateY(-50%);
}

.about-hero-copy h1 {
  font-size: clamp(2.8rem, 3.7vw, 4rem);
  max-width: 1080px;
}

.about-hero-copy p:not(.eyebrow) {
  font-size: clamp(1rem, 1.26vw, 1.16rem);
  margin-top: 24px;
  max-width: 560px;
}

.about-story {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(64px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.about-story-inner {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about-story h2,
.about-shelby h2,
.about-founder h2,
.about-standard h2,
.about-closing h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-story-label {
  color: rgba(8, 8, 8, 0.52);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.about-story h2 {
  font-size: clamp(1.75rem, 2vw, 2.35rem);
}

.about-story p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  max-width: 680px;
}

.about-story p + p {
  margin-top: 18px;
}

.about-programs {
  background: #ded7ca;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
  color: var(--ink);
  padding: clamp(58px, 6.4vw, 88px) clamp(20px, 4vw, 56px);
}

.about-programs-inner {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about-programs h2 {
  color: var(--ink);
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-programs p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  max-width: 700px;
}

.about-programs p + p {
  margin-top: 18px;
}

.about-programs ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: clamp(34px, 4vw, 48px) 0 0;
  padding: 0;
}

.about-programs li {
  border-top: 1px solid rgba(8, 8, 8, 0.18);
  color: rgba(8, 8, 8, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.42;
  padding: 18px 20px 18px 0;
  text-transform: uppercase;
}

.about-programs li:nth-child(odd) {
  border-right: 1px solid rgba(8, 8, 8, 0.14);
}

.about-programs li:nth-child(even) {
  padding-left: 22px;
}

.about-shelby {
  align-items: center;
  background: #0b0b0b;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
  padding: clamp(68px, 7.5vw, 104px) clamp(20px, 4vw, 56px);
}

.about-shelby-copy {
  max-width: 520px;
}

.shelby-official-logo {
  display: block;
  height: auto;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 238px;
  opacity: 0.86;
  width: clamp(150px, 16vw, 238px);
}

.about-shelby p,
.about-founder p {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  margin-top: 20px;
  max-width: 620px;
}

.about-shelby p + p {
  margin-top: 14px;
}

.about-shelby .button {
  margin-left: 0;
  margin-top: 42px;
}

.about-shelby-image {
  margin: 0;
  overflow: hidden;
}

.about-shelby-image img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.about-founder {
  background: #111213;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(64px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.about-founder > div {
  margin: 0 auto;
  max-width: 780px;
}

.about-standard {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(64px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.about-standard-inner {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about-standard p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  max-width: 680px;
}

.about-standard p + p {
  margin-top: 18px;
}

.about-closing {
  align-items: center;
  background: var(--warm);
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  color: var(--ink);
  display: flex;
  gap: clamp(42px, 5vw, 64px);
  justify-content: space-between;
  padding: clamp(30px, 3.4vw, 42px) clamp(20px, 4vw, 56px);
}

.about-closing h2 {
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: 360px;
}

.about-closing .button.primary {
  background: var(--ink);
  color: var(--paper);
}

.global-delivery-page main {
  background: #080808;
}

.global-delivery-hero {
  min-height: clamp(620px, 78vh, 820px);
  overflow: hidden;
  position: relative;
}

.global-delivery-hero-media {
  background: #050505;
  height: clamp(620px, 78vh, 820px);
  margin: 0;
}

.global-delivery-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 900ms ease;
  width: 100%;
}

.global-delivery-hero:hover .global-delivery-hero-media img {
  transform: scale(1.018);
}

.global-delivery-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.74) 38%, rgba(8, 8, 8, 0.2) 72%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.68), transparent 56%);
  inset: 0;
  position: absolute;
}

.global-delivery-hero-copy {
  left: clamp(22px, 6vw, 88px);
  max-width: 760px;
  position: absolute;
  top: 38%;
  transform: translateY(-42%);
}

.global-delivery-hero-copy h1 {
  font-size: clamp(3rem, 3.65vw, 4.3rem);
  line-height: 0.98;
  max-width: 720px;
  white-space: nowrap;
}

.global-delivery-hero-copy p:not(.eyebrow) {
  color: rgba(242, 239, 232, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  margin-top: 24px;
  max-width: 510px;
}

.global-delivery-hero-copy .button {
  margin-left: 0;
  margin-top: 38px;
}

.global-access-section {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(70px, 7vw, 104px) clamp(20px, 4vw, 56px);
}

.global-access-inner {
  align-items: start;
  display: grid;
  gap: clamp(26px, 6vw, 96px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1120px;
}

.global-access-inner h2 {
  color: var(--ink);
  max-width: 520px;
}

.global-access-inner p {
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  max-width: 620px;
}

.client-path-section {
  align-items: center;
  background: #080808;
  color: var(--paper);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.16fr);
  padding: clamp(72px, 7.4vw, 108px) clamp(20px, 4vw, 56px);
}

.client-path-copy {
  justify-self: end;
  max-width: 470px;
}

.client-path-copy h2 {
  color: var(--paper);
}

.client-path-copy p {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  margin-top: 28px;
  max-width: 460px;
}

.client-path-media {
  margin: 0;
  overflow: hidden;
}

.client-path-media img {
  aspect-ratio: 16 / 9.5;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 820ms ease;
  width: 100%;
}

.client-path-media:hover img {
  transform: scale(1.018);
}

.delivery-stages {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(68px, 7vw, 104px) clamp(20px, 4vw, 56px);
}

.delivery-stages-inner {
  margin: 0 auto;
  max-width: 1160px;
}

.delivery-stages h2 {
  color: var(--ink);
  max-width: 860px;
}

.delivery-stages-grid {
  border-top: 1px solid rgba(8, 8, 8, 0.22);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(54px, 6.2vw, 86px);
  padding-top: clamp(38px, 4.4vw, 58px);
}

.delivery-stages article {
  border-right: 1px solid rgba(8, 8, 8, 0.16);
  padding: 0 clamp(34px, 4vw, 58px) 10px 0;
}

.delivery-stages article:last-child {
  border-right: 0;
}

.delivery-stages h3 {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.28;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.delivery-stages p {
  color: rgba(8, 8, 8, 0.68);
  font-size: clamp(0.92rem, 1vw, 1rem);
  max-width: 310px;
}

.international-markets-section {
  align-items: center;
  background: #090909;
  color: var(--paper);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  padding: clamp(72px, 7.5vw, 108px) clamp(20px, 4vw, 56px);
}

.international-markets-media {
  margin: 0;
  overflow: hidden;
}

.international-markets-media img {
  aspect-ratio: 16 / 9.4;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 820ms ease;
  width: 100%;
}

.international-markets-media:hover img {
  transform: scale(1.018);
}

.international-markets-copy {
  max-width: 540px;
}

.international-markets-copy h2 {
  color: var(--paper);
}

.international-markets-copy p {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  margin-top: 26px;
  max-width: 520px;
}

.international-markets-copy .markets-qualification {
  border-top: 1px solid rgba(242, 239, 232, 0.2);
  color: rgba(242, 239, 232, 0.62);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  margin-top: 34px;
  padding-top: 22px;
}

.delivery-process {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(64px, 6.8vw, 96px) clamp(20px, 4vw, 56px);
}

.delivery-process-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.delivery-process-inner.with-image {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.08fr);
}

.delivery-process-copy {
  min-width: 0;
}

.delivery-process-inner.with-image .delivery-process-head {
  display: block;
}

.delivery-process-inner.with-image .delivery-process-head p {
  margin-top: 24px;
}

.delivery-process-head {
  align-items: start;
  display: grid;
  gap: clamp(22px, 5vw, 72px);
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.82fr);
}

.delivery-process h2 {
  color: var(--ink);
  max-width: 620px;
}

.delivery-process-head p {
  color: rgba(8, 8, 8, 0.68);
  font-size: clamp(1rem, 1.32vw, 1.16rem);
  max-width: 560px;
}

.delivery-process-grid {
  display: grid;
  border-bottom: 1px solid rgba(8, 8, 8, 0.22);
  border-top: 1px solid rgba(8, 8, 8, 0.22);
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 4.8vw, 58px);
}

.delivery-process-inner.with-image .delivery-process-grid {
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: clamp(32px, 4vw, 44px);
  max-width: 610px;
}

.delivery-process article {
  border-right: 1px solid rgba(8, 8, 8, 0.16);
  border-top: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  padding: 24px 30px 24px 0;
}

.delivery-process article:last-child {
  border-right: 0;
  padding-right: 0;
}

.delivery-process-inner.with-image article {
  column-gap: 22px;
  grid-template-columns: minmax(132px, 0.34fr) minmax(0, 1fr);
}

.delivery-process h3 {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.delivery-process p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  max-width: 330px;
}

.delivery-process-media {
  margin: 0;
  overflow: hidden;
}

.delivery-process-media img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 820ms ease;
  width: 100%;
}

.delivery-process-media:hover img {
  transform: scale(1.018);
}

.delivery-destination {
  align-items: center;
  background: #0b0b0b;
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.14fr);
  padding: clamp(68px, 7.5vw, 104px) clamp(20px, 4vw, 56px);
}

.delivery-destination.image-left {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
}

.delivery-destination.image-left .delivery-destination-media {
  order: -1;
}

.delivery-destination-copy {
  max-width: 520px;
}

.delivery-destination-copy h2 {
  color: var(--paper);
}

.delivery-destination-copy p {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  margin-top: 24px;
  max-width: 520px;
}

.delivery-destination-copy .button {
  margin-left: 0;
  margin-top: 40px;
}

.delivery-destination-media {
  margin: 0;
  overflow: hidden;
}

.delivery-destination-media img {
  aspect-ratio: 16 / 9.5;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 820ms ease;
  width: 100%;
}

.delivery-destination-media:hover img {
  transform: scale(1.018);
}

.global-delivery-closing {
  align-items: center;
  background: var(--warm);
  color: var(--ink);
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  justify-content: space-between;
  padding: clamp(42px, 5.2vw, 64px) clamp(20px, 4vw, 56px);
}

.global-delivery-closing h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.global-delivery-closing .button.primary {
  background: var(--ink);
  color: var(--paper);
}

.shelby-programs-page main {
  background: #080808;
}

.shelby-programs-hero {
  min-height: clamp(620px, 80vh, 790px);
  overflow: hidden;
  position: relative;
}

.shelby-programs-hero-media {
  margin: 0;
}

.shelby-programs-hero-media,
.shelby-programs-hero-media img {
  height: clamp(620px, 80vh, 790px);
  width: 100%;
}

.shelby-programs-hero-media img {
  object-fit: cover;
  object-position: center center;
}

.shelby-programs-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.54) 38%, rgba(8, 8, 8, 0.12) 74%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.08) 58%);
  inset: 0;
  position: absolute;
}

.shelby-programs-hero-copy {
  left: clamp(22px, 6vw, 88px);
  max-width: 1080px;
  position: absolute;
  top: 53%;
  transform: translateY(-48%);
}

.shelby-programs-hero-copy h1 {
  font-size: clamp(2.9rem, 4.35vw, 4.55rem);
  max-width: 1080px;
}

.shelby-programs-hero-copy p:not(.eyebrow) {
  color: rgba(242, 239, 232, 0.76);
  font-size: clamp(1.02rem, 1.34vw, 1.18rem);
  margin-top: 24px;
  max-width: 570px;
}

.portfolio-intro {
  background: var(--warm);
  color: var(--ink);
  padding: clamp(58px, 6.4vw, 88px) clamp(20px, 4vw, 56px);
}

.portfolio-intro-inner {
  align-items: start;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.portfolio-intro h2,
.program-partner-section h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.45vw, 2.55rem);
}

.portfolio-intro p,
.program-partner-section p {
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  max-width: 720px;
}

.program-portfolio {
  background: #080808;
  padding: clamp(42px, 5vw, 64px) clamp(20px, 4vw, 56px);
}

.program-portfolio-inner {
  display: grid;
  gap: clamp(52px, 6vw, 82px);
  margin: 0 auto;
  max-width: 1280px;
}

.program-group {
  display: grid;
  gap: clamp(30px, 4.2vw, 56px);
}

.program-group-label {
  border-top: 1px solid rgba(242, 239, 232, 0.2);
  color: rgba(242, 239, 232, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  padding-top: 20px;
  text-transform: uppercase;
}

.program-module {
  align-items: stretch;
  border-top: 1px solid rgba(242, 239, 232, 0.16);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.74fr);
  padding-top: clamp(30px, 4.2vw, 54px);
}

.program-module:nth-of-type(even):not(.text-led) {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.18fr);
}

.program-module:nth-of-type(even):not(.text-led) .program-module-media {
  order: 2;
}

.program-module-media {
  margin: 0;
  overflow: hidden;
}

.program-module-media-link,
.program-title-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.program-title-link:hover {
  color: var(--silver);
}

.program-module-media img {
  aspect-ratio: 16 / 9.5;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 820ms ease;
  width: 100%;
}

.program-module-media:hover img {
  transform: scale(1.018);
}

.program-module-preview {
  align-items: center;
  aspect-ratio: 16 / 9.5;
  background:
    radial-gradient(circle at 72% 38%, rgba(242, 239, 232, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(242, 239, 232, 0.07), rgba(242, 239, 232, 0.012)),
    #111213;
  border: 1px solid rgba(242, 239, 232, 0.14);
  display: flex;
  justify-content: center;
  min-height: 320px;
  padding: 34px;
}

.program-module-preview span {
  color: rgba(242, 239, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.program-module-copy {
  align-self: center;
  max-width: 520px;
}

.program-module-copy h2 {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.35vw, 2.45rem);
  line-height: 1.06;
}

.program-module-copy p {
  color: rgba(242, 239, 232, 0.72);
  font-size: clamp(0.98rem, 1.18vw, 1.1rem);
  margin-top: 24px;
  max-width: 510px;
}

.program-highlights {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.program-highlights li {
  border-top: 1px solid rgba(242, 239, 232, 0.16);
  color: rgba(242, 239, 232, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.36;
  padding: 13px 0;
  text-transform: uppercase;
}

.program-module-copy .button.text {
  margin-left: 0;
  margin-top: 38px;
}

.program-module.text-led {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    #101112;
  border: 1px solid rgba(242, 239, 232, 0.12);
  grid-template-columns: 1fr;
  padding: clamp(48px, 6vw, 82px);
}

.program-module.text-led .program-module-copy {
  max-width: 660px;
}

.program-module.featured .button.text {
  border-color: rgba(242, 239, 232, 0.52);
}

.program-partner-section {
  background: #eee9df;
  color: var(--ink);
  padding: clamp(64px, 7vw, 98px) clamp(20px, 4vw, 56px);
}

.shelby-programs-page .final-cta {
  background: #eee9df;
  border-color: rgba(8, 8, 8, 0.14);
  color: var(--ink);
  padding-block: clamp(38px, 5vw, 58px);
}

.shelby-programs-page .final-cta h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
}

.shelby-programs-page .final-cta .button.primary {
  background: #090909;
  color: var(--paper);
}

.program-partner-inner {
  align-items: start;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.program-partner-head {
  max-width: 560px;
}

.program-partner-head p {
  margin-top: 24px;
}

.program-partner-head .button.primary {
  background: var(--ink);
  color: var(--paper);
  margin-top: 38px;
}

.program-partner-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.program-partner-section li {
  border-top: 1px solid rgba(8, 8, 8, 0.18);
  color: rgba(8, 8, 8, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  min-height: 142px;
  padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.6vw, 30px);
  text-transform: uppercase;
}

.program-partner-section li:nth-child(odd) {
  border-right: 1px solid rgba(8, 8, 8, 0.14);
}

.about-proof {
  background: #eee9df;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
  color: var(--ink);
  padding: clamp(38px, 4.8vw, 64px) clamp(20px, 4vw, 56px);
}

.about-proof-inner {
  align-items: end;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about-proof p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  max-width: 520px;
}

.about-proof ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-proof li {
  border-left: 1px solid rgba(8, 8, 8, 0.14);
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 4px clamp(16px, 2vw, 28px);
}

.about-proof strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.9vw, 1.72rem);
  font-weight: 500;
  line-height: 1;
}

.about-proof span {
  color: rgba(8, 8, 8, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.model-page main {
  background: #080808;
}

.model-hero {
  align-items: stretch;
  background: #080808;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.76fr);
  min-height: clamp(610px, 76vh, 780px);
}

.model-hero-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.model-hero-media img {
  height: 100%;
  min-height: clamp(610px, 76vh, 780px);
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.model-hero-copy {
  align-self: center;
  max-width: 560px;
  padding: clamp(42px, 5vw, 78px) clamp(22px, 4vw, 58px);
}

.model-hero-copy h1 {
  font-size: clamp(2.45rem, 3.4vw, 4rem);
  max-width: 560px;
}

.model-hero-copy p:not(.eyebrow) {
  color: rgba(242, 239, 232, 0.74);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  margin-top: 26px;
  max-width: 500px;
}

.model-overview,
.model-highlights,
.model-sourcing,
.related-models {
  padding: clamp(58px, 6.4vw, 92px) clamp(20px, 4vw, 56px);
}

.model-overview,
.model-sourcing {
  background: var(--warm);
  color: var(--ink);
}

.model-overview-inner,
.model-sourcing-inner,
.model-highlights-inner,
.related-models-inner {
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.model-overview h2,
.model-sourcing h2 {
  color: var(--ink);
}

.model-overview p,
.model-sourcing p {
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.26vw, 1.16rem);
  max-width: 720px;
}

.model-highlights {
  background: #0b0b0b;
  color: var(--paper);
}

.model-highlights h2,
.related-models h2 {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.25vw, 2.35rem);
}

.model-highlights ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.model-highlights li {
  border-top: 1px solid rgba(242, 239, 232, 0.16);
  color: rgba(242, 239, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 17px 22px 17px 0;
}

.model-highlights li:nth-child(odd) {
  border-right: 1px solid rgba(242, 239, 232, 0.12);
}

.model-highlights li:nth-child(even) {
  padding-left: 22px;
}

.related-models {
  background: #090909;
  border-top: 1px solid rgba(242, 239, 232, 0.12);
}

.related-model-links {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-model-links a {
  border-top: 1px solid rgba(242, 239, 232, 0.18);
  color: rgba(242, 239, 232, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  padding: 18px 20px 18px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.related-model-links a:hover {
  color: var(--paper);
}

@media (max-width: 980px) {
  .site-nav {
    align-items: stretch;
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .authority,
  .split-layout,
  .split-layout.reverse,
  .image-band,
  .notice-panel.with-media,
  .private-enquiry-layout,
  .site-footer,
  .pathway-grid,
  .home-teaser,
  .home-programs-inner,
  .portfolio-intro-inner,
  .program-module,
  .program-module:nth-of-type(even):not(.text-led),
  .program-partner-inner,
  .about-proof-inner,
  .model-hero,
  .model-overview-inner,
  .model-sourcing-inner,
  .model-highlights-inner,
  .related-models-inner {
    grid-template-columns: 1fr;
  }

  .program-module:nth-of-type(even):not(.text-led) .program-module-media {
    order: 0;
  }

  .pathway-panel {
    min-height: 340px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-programs-grid,
  .about-programs ul,
  .program-partner-section ul,
  .about-proof ul,
  .model-highlights ul,
  .related-model-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery,
  .process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-inner,
  .about-programs-inner,
  .about-standard-inner,
  .about-shelby {
    grid-template-columns: 1fr;
  }

  .about-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .global-access-inner,
  .client-path-section,
  .international-markets-section {
    grid-template-columns: 1fr;
  }

  .client-path-copy {
    justify-self: start;
  }

  .delivery-stages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-structure article:nth-child(2n) {
    border-right: 0;
  }

  .delivery-stages article:nth-child(2n) {
    border-right: 0;
  }

  .delivery-process-grid,
  .delivery-process-head,
  .delivery-process-inner.with-image,
  .delivery-destination,
  .delivery-destination.image-left {
    grid-template-columns: 1fr;
  }

  .delivery-process article,
  .delivery-process article:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .delivery-destination.image-left .delivery-destination-media {
    order: 0;
  }

  .global-delivery-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .model-hero-media img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 13px 16px;
  }

  .brand img {
    height: 40px;
    max-width: 258px;
  }

  .home-hero,
  .hero-media,
  .hero-media img,
  .hero-media video {
    height: clamp(600px, 84vh, 680px);
    min-height: 0;
  }

  .hero-media img,
  .hero-media video {
    object-position: 64% bottom;
  }

  .hero-video-media .hero-poster,
  .hero-video-media .hero-video {
    object-position: var(--hero-object-position-mobile, 56% center);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.66) 54%, rgba(8, 8, 8, 0.92)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.38), transparent);
  }

  .hero-copy {
    bottom: 30px;
    left: 18px;
    right: 18px;
    top: auto;
    transform: none;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .actions {
    display: grid;
    gap: 10px;
  }

  .hero-official-logo {
    margin-top: 24px;
    max-width: 150px;
    width: 44%;
  }

  .button.secondary,
  .button.text {
    margin-left: 0;
  }

  .site-footer p,
  .site-footer a {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .footer-shelby-performance-logo {
    max-width: 156px;
    width: 48%;
  }

  .about-proof ul,
  .model-highlights ul,
  .related-model-links {
    grid-template-columns: 1fr;
  }

  .about-proof li,
  .model-highlights li:nth-child(odd),
  .model-highlights li:nth-child(even) {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
  }

  .pathway-panel {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .home-teaser.editorial {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .home-teaser.editorial figure {
    order: -1;
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  .private-enquiry-layout {
    gap: 24px;
    padding: 34px 16px 56px;
  }

  .enquiry-intro {
    padding-top: 0;
  }

  .enquiry-intro h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.25rem);
  }

  .enquiry-panel {
    padding: 19px 16px 20px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .direct-contact {
    align-items: flex-start;
    display: grid;
    gap: 7px;
  }

  .feature-grid,
  .gallery,
  .process ol {
    grid-template-columns: 1fr;
  }

  .home-programs-grid,
  .about-programs ul,
  .program-partner-section ul {
    grid-template-columns: 1fr;
  }

  .home-programs-grid article,
  .home-programs-grid article:nth-child(odd),
  .about-programs li,
  .about-programs li:nth-child(odd),
  .program-partner-section li,
  .program-partner-section li:nth-child(odd) {
    border-right: 0;
  }

  .about-programs li:nth-child(even) {
    padding-left: 0;
  }

  .about-hero,
  .about-hero-media {
    min-height: 620px;
  }

  .about-hero-media img,
  .about-hero-media video {
    object-position: 66% center;
  }

  .about-hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.66) 48%, rgba(8, 8, 8, 0.94)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.44), transparent);
  }

  .about-hero-copy {
    bottom: 34px;
    left: 18px;
    right: 18px;
    top: auto;
    transform: none;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    max-width: 100%;
  }

  .about-story,
  .about-programs,
  .about-shelby,
  .about-founder,
  .about-standard,
  .about-closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .shelby-official-logo {
    max-width: 174px;
    width: 52%;
  }

  .global-delivery-hero,
  .global-delivery-hero-media {
    min-height: 620px;
  }

  .global-delivery-hero-media img {
    object-position: 54% center;
  }

  .global-delivery-hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.94)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.42), transparent);
  }

  .global-delivery-hero-copy {
    bottom: 34px;
    left: 18px;
    max-width: none;
    right: 18px;
    top: auto;
    transform: none;
  }

  .global-delivery-hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.45rem);
    white-space: normal;
  }

  .shelby-programs-hero,
  .shelby-programs-hero-media,
  .shelby-programs-hero-media img {
    min-height: 620px;
  }

  .shelby-programs-hero-media img {
    object-position: 55% center;
  }

  .shelby-programs-hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.16), rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.94)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.44), transparent);
  }

  .shelby-programs-hero-copy {
    bottom: 34px;
    left: 18px;
    max-width: none;
    right: 18px;
    top: auto;
    transform: none;
  }

  .shelby-programs-hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.55rem);
  }

  .shelby-programs-hero-copy p:not(.eyebrow) {
    max-width: 560px;
  }

  .portfolio-intro,
  .program-portfolio,
  .program-partner-section,
  .partner-structure {
    padding-left: 18px;
    padding-right: 18px;
  }

  .program-module {
    gap: 24px;
  }

  .program-module-media img {
    aspect-ratio: 4 / 3;
  }

  .program-module-preview {
    aspect-ratio: 4 / 3;
    min-height: 230px;
  }

  .program-module.text-led {
    padding: 34px 24px;
  }

  .delivery-process,
  .delivery-destination,
  .global-access-section,
  .client-path-section,
  .delivery-stages,
  .international-markets-section,
  .global-delivery-closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .global-access-inner {
    gap: 22px;
  }

  .client-path-media img,
  .international-markets-media img {
    aspect-ratio: 4 / 3;
  }

  .delivery-stages-grid {
    grid-template-columns: 1fr;
  }

  .partner-structure-grid {
    grid-template-columns: 1fr;
  }

  .partner-structure article,
  .partner-structure article:nth-child(2n),
  .partner-structure article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 239, 232, 0.14);
    padding: 24px 0;
  }

  .partner-structure article:last-child {
    border-bottom: 0;
  }

  .delivery-stages article,
  .delivery-stages article:nth-child(2n),
  .delivery-stages article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.18);
    padding: 24px 0;
  }

  .delivery-stages article:last-child {
    border-bottom: 0;
  }

  .delivery-process-grid {
    gap: 0;
  }

  .delivery-process-inner.with-image article,
  .delivery-process article {
    border-bottom: 1px solid rgba(8, 8, 8, 0.18);
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .delivery-process article:last-child {
    border-bottom: 0;
  }

  .delivery-process h3 {
    margin-bottom: 0;
  }

  .delivery-process-media img {
    aspect-ratio: 4 / 3;
  }

  .delivery-destination-media img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }
}
