:root {
  --hunter: #052e23;
  --soft-grey: #f2f2f2;
  --electric: #d8f94b;
  --olive: #587151;
  --black: #161616;
  --pink: #ff78e9;
  --white: #ffffff;
  --ink-muted: rgba(22, 22, 22, 0.68);
  --green-muted: rgba(5, 46, 35, 0.78);
  --border: rgba(5, 46, 35, 0.16);
  --font-body: 'Fira Sans', Helvetica, Arial, sans-serif;
  --max: 1180px;
}

body {
  background: var(--soft-grey);
  color: var(--black);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(216, 249, 75, 0.16), transparent 36%),
    repeating-linear-gradient(90deg, rgba(5, 46, 35, 0.035) 0 1px, transparent 1px 86px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 88px);
  width: 100%;
  height: 64px;
  padding: 14px clamp(24px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.site-header.is-light {
  background: rgba(242, 242, 242, 0.98);
  border-bottom-color: rgba(5, 46, 35, 0.18);
  box-shadow: 0 10px 30px rgba(5, 46, 35, 0.08);
}

.site-header.is-dark {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(132px, 11vw, 166px);
  height: clamp(25px, 2vw, 32px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.35s ease;
}

.site-header.is-light .brand-logo {
  filter: brightness(0) saturate(100%) invert(15%) sepia(24%) saturate(1012%) hue-rotate(112deg) brightness(93%) contrast(98%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.is-light .site-nav a:not(.nav-cta) {
  color: rgba(5, 46, 35, 0.86);
  text-shadow: none;
}

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

.site-header.is-light .site-nav a:hover,
.site-header.is-light .site-nav a.is-active,
.site-header.is-light .site-nav a[aria-current="page"] {
  color: var(--hunter);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 202;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--electric);
  color: var(--hunter);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition: top 0.22s ease, transform 0.22s ease;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.site-header.is-light .nav-toggle {
  background: var(--electric);
  color: var(--hunter);
}

.site-header.is-menu-open .nav-toggle {
  background: var(--electric);
  color: var(--hunter);
}

.site-header.is-menu-open .nav-toggle span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

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

.nav-cta {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--black) !important;
  background: var(--electric);
  border: 1px solid var(--electric);
  box-shadow: none;
  backdrop-filter: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: auto;
}

.hero-slide {
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-video,
.hero-image-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  object-position: center top;
}

.hero-image-slide > img {
  object-position: center center;
}

.hero-image-slide {
  overflow: hidden;
}

.hero-image-slide > img {
  display: block;
}

.hero-video-portrait {
  object-position: center top;
}

.hero-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 46, 35, 0.68), rgba(5, 46, 35, 0.18) 48%, rgba(5, 46, 35, 0.46));
  opacity: 1;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: clamp(150px, 24vh, 270px);
  background: linear-gradient(180deg, rgba(5, 46, 35, 0) 0%, rgba(5, 46, 35, 0.54) 46%, var(--hunter) 100%);
  pointer-events: none;
}

.hero.is-image-active .hero-scrim {
  opacity: 0;
}

.hero-statement {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(52px, 8vh, 90px);
  z-index: 2;
  display: grid;
  gap: 20px;
  max-width: min(720px, calc(100vw - 56px));
  opacity: 1;
  transition: opacity 300ms ease;
}

.hero-statement.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-statement h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6.6vw, 88px);
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 14px 20px;
  background: var(--electric);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.event-sponsors {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(24px, 5vh, 48px);
  left: clamp(20px, 4vw, 64px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.8vw, 48px);
  min-height: 58px;
  padding: 12px 18px;
  background: rgba(5, 46, 35, 0.58);
  backdrop-filter: blur(10px);
}

.event-sponsors img {
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
}

.event-sponsors span {
  color: var(--white);
  font-size: clamp(14px, 1.35vw, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--hunter);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(58px, 9.5vw, 132px);
  line-height: 0.9;
}

h2 {
  max-width: 11ch;
  font-size: clamp(36px, 5.8vw, 82px);
  line-height: 0.9;
}

h3 {
  font-size: 24px;
  line-height: 1;
}

.button, .contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--hunter);
  color: var(--hunter);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary { background: var(--electric); }
.button-secondary { background: transparent; }

.architecture-grid span, .feature-grid span {
  color: var(--electric);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-bar {
  position: relative;
  margin-top: -1px;
  margin-inline: calc(50% - 50vw);
  padding: clamp(82px, 8vw, 104px) 24px clamp(24px, 3vw, 36px);
  background: var(--hunter);
  color: var(--white);
  text-align: center;
}

.stats-bar h2 {
  max-width: 760px;
  margin: 0 auto clamp(14px, 2vw, 22px);
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.96;
}

.stats-bar h2 span {
  color: var(--electric);
}

.stats-copy {
  display: grid;
  gap: 5px;
  max-width: 700px;
  margin: 0 auto clamp(20px, 3vw, 34px);
}

.stats-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.28;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
  max-width: 760px;
  margin: 0 auto;
}

.stats-grid article {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 128px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(216, 249, 75, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(216, 249, 75, 0.08);
}

.stats-grid strong {
  color: var(--electric);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.stats-grid article > span {
  color: var(--white);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.stats-grid p {
  max-width: 30ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(5, 46, 35, 0.18);
  background: #ffffff;
  padding: clamp(38px, 6vw, 78px) 0;
}

.ticker-label {
  color: rgba(5, 46, 35, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  margin: 0 0 clamp(28px, 4vw, 46px);
  text-align: center;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
  padding: clamp(18px, 2.8vw, 30px) 0;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: clamp(64px, 8vw, 132px);
  padding: 0 clamp(42px, 5.5vw, 84px);
}

.logo-set img {
  display: block;
  width: auto;
  max-width: 156px;
  height: clamp(30px, 4vw, 48px);
  object-fit: contain;
  filter: brightness(0) saturate(0);
  opacity: 0.5;
}

.logo-set img[src$=".webp"] {
  max-width: 132px;
}

@keyframes ticker { to { transform: translateX(-50%); } }

.partners-editorial {
  position: relative;
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 88px) 24px clamp(88px, 10vw, 148px);
  background: var(--hunter);
  color: var(--white);
  isolation: isolate;
}

.partners-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 249, 75, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.terrain {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--olive);
  opacity: 0.48;
  pointer-events: none;
}

.terrain-one {
  right: 0;
  bottom: -1px;
  z-index: -2;
  height: clamp(190px, 26vw, 360px);
  clip-path: polygon(0 50%, 8% 44%, 18% 56%, 30% 35%, 43% 46%, 56% 25%, 70% 43%, 84% 30%, 100% 45%, 100% 100%, 0 100%);
}

.terrain-two {
  right: 0;
  bottom: 7%;
  z-index: -1;
  height: clamp(150px, 18vw, 250px);
  opacity: 0.22;
  clip-path: polygon(0 70%, 10% 52%, 24% 64%, 38% 46%, 52% 58%, 66% 40%, 80% 54%, 100% 35%, 100% 100%, 0 100%);
}

.partners-editorial-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.partners-kicker {
  margin: 0 0 clamp(24px, 3.8vw, 44px);
  color: var(--electric);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.partners-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: start;
}

.partners-headline {
  display: grid;
  gap: 0.08em;
  max-width: 14ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5.55vw, 78px);
  line-height: 0.92;
}

.partners-headline em {
  color: var(--electric);
  font-style: italic;
  font-weight: 800;
}

.partners-copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 300;
  line-height: 1.15;
}

.partners-copy p {
  margin: 0;
}

.about-team-section {
  padding-top: clamp(96px, 11vw, 156px);
}

.about-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.about-team-copy,
.about-team-story,
.about-team-cards {
  min-width: 0;
}

.about-team-copy .partners-kicker {
  margin-bottom: 18px;
  text-align: left;
}

.about-team-title {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 76px);
  letter-spacing: 0;
  line-height: 0.92;
}

.about-team-line {
  width: min(100%, 220px);
  height: 3px;
  margin: 28px 0 30px;
  background: var(--electric);
}

.about-team-story {
  display: grid;
  gap: 18px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 300;
  line-height: 1.2;
}

.about-team-story p {
  max-width: 100%;
  margin: 0;
  overflow-wrap: break-word;
}

.about-team-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.about-team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.about-team-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1);
  transform: scale(1);
  transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(216, 249, 75, 0.1);
  transition: background 0.5s ease;
}

.about-team-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.about-team-card:hover::after {
  background: transparent;
}

.about-team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px;
  background: linear-gradient(0deg, rgba(5, 46, 35, 0.72), rgba(5, 46, 35, 0));
}

.about-team-overlay h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.45vw, 21px);
  letter-spacing: 0;
  line-height: 1;
}

.about-team-overlay p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.body-stack {
  display: grid;
  gap: 24px;
  color: var(--ink-muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
}

.feature-band {
  max-width: none;
  background: var(--hunter);
  color: var(--white);
}

.feature-band > * {
  max-width: var(--max);
  margin-inline: auto;
}

.feature-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-bottom: 42px;
}

.feature-band h2, .feature-band h3 { color: var(--white); }
.feature-band p { color: rgba(255,255,255,0.75); }
.feature-band .eyebrow { color: var(--electric); }

.feature-grid, .architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article, .architecture-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(5, 46, 35, 0.18);
  background: var(--white);
}

.feature-grid article {
  border-color: rgba(242, 242, 242, 0.2);
  background: rgba(242, 242, 242, 0.08);
}

.feature-grid h3, .architecture-grid h3 { margin: 44px 0 12px; }
.feature-grid p, .architecture-grid p { color: var(--ink-muted); line-height: 1.35; }
.feature-grid p { color: rgba(255,255,255,0.7); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.architecture-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.architecture-grid article:nth-child(2), .architecture-grid article:nth-child(5) { background: var(--electric); }
.architecture-grid article:nth-child(3) { background: var(--hunter); }
.architecture-grid article:nth-child(3) h3, .architecture-grid article:nth-child(3) p { color: var(--white); }
.architecture-grid article:nth-child(3) span { color: var(--pink); }

.contact {
  display: grid;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.final-cta {
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding: clamp(42px, 5vw, 68px) 24px clamp(48px, 5.5vw, 76px);
  background: var(--black);
  color: var(--white);
  text-align: left;
}

.final-cta > div {
  display: grid;
  justify-items: start;
  gap: clamp(16px, 2vw, 24px);
  max-width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.9;
}

.final-cta-subhead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 300;
  line-height: 1.32;
}

.contact-link {
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid var(--electric);
  border-radius: 999px;
  background: var(--electric);
  color: var(--black);
  white-space: nowrap;
}

.contact-link:hover {
  background: var(--white);
  border-color: var(--white);
}

.portfolio-page {
  background: var(--hunter);
}

.portfolio-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 7px 18px;
  border: 1px solid var(--electric);
  border-radius: 999px;
  color: var(--electric);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-hero {
  display: grid;
  align-items: end;
  min-height: 74vh;
  padding: 120px 0 clamp(72px, 10vw, 128px);
  background: var(--hunter);
}

.portfolio-hero h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  text-transform: none;
}

.portfolio-partners {
  padding: clamp(72px, 9vw, 116px) 0;
  background: var(--black);
}

.portfolio-partners h2,
.portfolio-offerings h2 {
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 46px);
  color: var(--white);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.92;
}

.portfolio-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--hunter);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72));
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}

.portfolio-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.portfolio-offerings {
  min-height: auto;
  padding: clamp(44px, 5vw, 70px) 0 clamp(36px, 4.5vw, 58px);
  overflow-x: clip;
  background: var(--hunter);
  color: var(--white);
}

.offerings-grid {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  align-items: start;
}

.offerings-intro {
  max-width: 760px;
  padding-top: 0;
}

.offerings-intro .pill-label {
  min-height: 34px;
  margin-bottom: 12px;
  padding: 8px 24px;
  background: #ff1b8d;
  color: var(--white);
  font-size: 18px;
  box-shadow: inset 0 -4px 0 rgba(5, 46, 35, 0.16);
}

.offerings-intro h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(34px, 3.45vw, 52px);
  line-height: 1.02;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.08);
}

.offerings-intro > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.12;
}

.offering-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.offering-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  background: #052e23;
  color: var(--white);
  box-shadow: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.offering-frame {
  display: grid;
  grid-template-rows: 230px 290px;
  height: 520px;
}

.offering-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #10251f;
}

.offering-media > img,
.offering-media > video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #10251f;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.5s ease;
}

.offering-card:hover .offering-media > img,
.offering-card:hover .offering-media > video {
  transform: scale(1.04);
}

.offering-media-placeholder {
  display: flex;
  align-items: flex-end;
  min-height: 230px;
  padding: 22px;
  background: linear-gradient(135deg, #5f6f3c 0%, #879552 62%, #d8f94b 100%);
}

.offering-media-placeholder > span {
  max-width: 10ch;
  color: rgba(5, 46, 35, 0.86);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.offering-copy {
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 290px;
  padding: 18px 20px 20px;
}

.offering-copy,
.offering-copy-hunter,
.offering-copy-olive,
.offering-copy-black {
  background: #052e23;
  transition: background 0.35s ease;
}

.offering-card:hover .offering-copy,
.offering-card:hover .offering-copy-hunter,
.offering-card:hover .offering-copy-olive,
.offering-card:hover .offering-copy-black {
  background: var(--olive);
}

.offering-card:nth-child(1) .offering-media > img {
  object-position: 72% center;
}

.offering-card:nth-child(2) .offering-media > img {
  object-position: center 18%;
}

.offering-card:nth-child(3) .offering-media > img,
.offering-card:nth-child(3) .offering-media > video {
  object-position: center 35%;
}

.offering-label {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.16;
  text-transform: uppercase;
}

.offering-card h3 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 2.35vw, 36px);
  line-height: 0.94;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.1);
}

.offering-card p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.24;
}

.offering-card p:not(.offering-stat) {
  min-height: 64px;
}

.offering-card .offering-stat {
  margin-top: 0;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.35;
}

.offering-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: flex-start;
  margin: 0;
}

.offering-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  color: #052e23;
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.offering-tags .tag-pink,
.offering-tags .tag-green,
.offering-tags .tag-lime {
  background: #ff65cf;
  color: #052e23;
}

.creator-network {
  padding: clamp(88px, 9vw, 132px) 24px clamp(96px, 10vw, 144px);
  background: #f8f6ef;
  color: var(--hunter);
  overflow-x: clip;
}

.creator-network-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1180px);
  min-height: clamp(420px, 38vw, 560px);
  margin-inline: auto;
}

.creator-network-copy {
  position: relative;
  z-index: 20;
  width: min(100%, 840px);
  margin-inline: auto;
  text-align: center;
}

.creator-network h2 {
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--hunter);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.creator-network-subhead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(5, 46, 35, 0.74);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.32;
}

.creator-network-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 34px;
  padding: 14px 24px;
  border: 2px solid var(--hunter);
  border-radius: 999px;
  color: var(--hunter);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.creator-network-cta:hover {
  background: var(--hunter);
  color: var(--electric);
}

.case-carousel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--hunter);
  color: var(--soft-grey);
  overflow: hidden;
}

.case-carousel-track {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
}

.case-carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 100%;
  padding: clamp(92px, 9vw, 118px) clamp(22px, 6vw, 80px) clamp(88px, 7vw, 112px);
  border: 0;
  background: var(--hunter);
  color: var(--soft-grey);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.005);
  transition: opacity 0.72s ease, transform 8s linear, visibility 0.72s ease;
}

.case-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.case-carousel-slide img,
.case-carousel-slide video,
.case-carousel-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 8s linear, opacity 0.35s ease;
}

.case-carousel-slide.is-active img,
.case-carousel-slide.is-active video,
.case-carousel-slide.is-active .case-carousel-media {
  transform: scale(1.018);
}

.case-carousel-slide:first-child.is-active img {
  transform: scale(1.08);
}

.case-carousel-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 620px);
}

.case-carousel-brand {
  flex: 0 0 auto;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  background: var(--pink);
  color: #fff;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.case-carousel-title {
  max-width: 460px;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.case-carousel-content-hero {
  align-self: end;
  width: min(100%, 920px);
  max-width: 920px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: none;
}

.case-carousel-content-hero .case-carousel-title {
  display: grid;
  gap: clamp(2px, 0.6vw, 8px);
  max-width: min(100%, 1120px);
  color: #fff;
  font-size: clamp(42px, 7vw, 116px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.case-carousel-content-hero .case-carousel-title span {
  display: block;
}

.case-carousel-content-hero .case-carousel-title em {
  color: var(--electric);
  font-style: normal;
}

.case-carousel-slide-invisalign .case-carousel-content {
  width: min(100%, 480px);
  transform: translateY(12px);
}

.case-carousel-slide-invisalign .case-carousel-brand {
  font-size: clamp(11px, 0.82vw, 13px);
  padding: 9px 13px;
}

.case-carousel-slide-invisalign .case-carousel-title {
  font-size: clamp(17px, 1.25vw, 22px);
}

.case-carousel-controls {
  position: absolute;
  right: clamp(18px, 2.5vw, 32px);
  bottom: clamp(18px, 2.5vw, 28px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: auto;
}

.case-carousel-controls > button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.case-carousel-controls > button:hover,
.case-carousel-controls > button:focus-visible {
  color: var(--electric);
}

.case-carousel-toggle {
  width: 38px;
  height: 38px;
}

.case-carousel-toggle::before,
.case-carousel-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.case-carousel-toggle::before {
  --ring-fill: 0deg;
  background: conic-gradient(var(--electric) var(--ring-fill), rgba(237, 236, 233, 0.34) 0deg);
}

.case-carousel-toggle.is-ring-active::before {
  animation: case-carousel-ring 8s linear forwards;
}

.case-carousel-toggle::after {
  inset: 2px;
  background: rgba(5, 46, 35, 0.54);
}

.case-carousel-toggle span {
  position: relative;
  z-index: 1;
  transform: translateY(-1px);
}

.case-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: auto;
}

.case-carousel-dots button {
  width: 4px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(237, 236, 233, 0.46);
  cursor: pointer;
}

.case-carousel-dots button.is-active,
.case-carousel-dots button:hover,
.case-carousel-dots button:focus-visible {
  background: #fff;
}

.case-carousel.is-paused .case-carousel-toggle::before {
  animation-play-state: paused;
}

.case-carousel.is-paused .case-carousel-toggle::after {
  background: #fff;
}

.case-carousel.is-paused .case-carousel-toggle {
  color: var(--hunter);
}

@property --ring-fill {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes case-carousel-ring {
  to { --ring-fill: 360deg; }
}

.work-page .site-header {
  background: transparent;
}

.work-page .work-archive {
  padding-top: clamp(124px, 12vw, 156px);
}

.work-archive {
  padding: clamp(84px, 10vw, 132px) 0 clamp(92px, 10vw, 140px);
  background: var(--soft-grey);
  color: var(--hunter);
}

.work-archive-heading {
  margin-bottom: 42px;
}

.archive-pill {
  border-color: var(--olive);
  color: var(--olive);
}

.work-archive-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--hunter);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
}

.work-archive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 20px;
}

.archive-card {
  display: flex;
  flex: 0 1 calc((100% - 40px) / 3);
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.archive-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(5, 46, 35, 0.08);
}

.archive-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.archive-card:hover .archive-media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.archive-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 46, 35, 0);
  transition: background 0.35s ease;
}

.archive-card:hover .archive-media::after {
  background: rgba(5, 46, 35, 0.2);
}

.archive-brand-pill {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 9px 13px;
  color: var(--hunter);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.archive-brand-pink,
.archive-brand-yellow,
.archive-brand-olive {
  background: var(--electric);
  color: var(--hunter);
}

.archive-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 118px;
  padding-top: 16px;
}

.archive-copy p {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.archive-copy h3 {
  margin: 0;
  color: var(--hunter);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.04;
  transition: color 0.25s ease;
}

.archive-card:hover .archive-copy h3 {
  color: var(--olive);
}

.case-modal-open {
  overflow: hidden;
}

.case-modal,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.case-modal[aria-hidden="false"],
.video-modal[aria-hidden="false"] {
  display: flex;
}

.case-modal-backdrop,
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 46, 35, 0.8);
  backdrop-filter: blur(7px);
}

.case-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: var(--soft-grey);
  color: var(--hunter);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.case-modal-close,
.video-modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(237, 236, 233, 0.35);
  background: rgba(5, 46, 35, 0.58);
  color: var(--soft-grey);
  padding: 9px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.case-modal-media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--hunter);
}

.case-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-modal-content {
  padding: clamp(30px, 4vw, 48px);
}

.case-modal-kicker {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-modal-panel h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--hunter);
  font-size: clamp(31px, 5vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.case-modal-subhead {
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(5, 46, 35, 0.82);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
}

.case-modal-stack {
  display: grid;
  gap: 28px;
}

.case-modal-stack h3 {
  display: inline-flex;
  margin: 0 0 12px;
  background: var(--olive);
  color: var(--soft-grey);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.case-modal-stack p {
  margin: 0;
  color: rgba(5, 46, 35, 0.82);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.58;
  white-space: pre-line;
}

.case-video-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  border: 0;
  background: var(--hunter);
  color: var(--electric);
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.case-video-button:hover {
  transform: translateY(-2px);
  background: var(--olive);
}

.case-video-button[hidden] {
  display: none;
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
}

.video-modal-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--hunter);
}

.video-modal-panel p {
  margin: 12px 0 0;
  color: rgba(237, 236, 233, 0.72);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header { align-items: center; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 201;
    display: grid;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(5, 46, 35, 0.98);
    border-bottom: 1px solid rgba(216, 249, 75, 0.28);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .site-header.is-light .site-nav,
  .site-header.is-menu-open .site-nav {
    background: rgba(5, 46, 35, 0.98);
  }
  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a,
  .site-header.is-light .site-nav a:not(.nav-cta) {
    display: block;
    padding: 17px 4px;
    color: var(--white);
    text-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
  }
  .site-nav a:not(.nav-cta)::after {
    display: none;
  }
  .site-nav .nav-cta {
    width: 100%;
    margin-top: 14px;
    padding: 15px 18px;
    text-align: center;
    border-bottom: 0;
  }
  .hero-statement { bottom: 72px; }
  .event-sponsors { flex-wrap: wrap; justify-content: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .partners-editorial-grid,
  .about-team-grid { grid-template-columns: 1fr; }
  .partners-headline { max-width: 13.5ch; }
  .partners-copy,
  .about-team-story { max-width: 760px; }
  .about-team-copy,
  .about-team-story { max-width: 560px; }
  .about-team-cards { max-width: 760px; }
  .portfolio-card-grid,
  .offering-list { grid-template-columns: 1fr; }
  .creator-network-shell { min-height: 520px; }
  .creator-network-copy { width: min(100%, 760px); }
  .archive-card { flex-basis: calc((100% - 20px) / 2); }
  .split, .feature-copy, .contact { grid-template-columns: 1fr; }
  .feature-grid, .architecture-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 64px; padding-inline: 18px; }
  .brand { width: 136px; height: 26px; }
  .hero-image-slide > img { object-position: center center; }
  .hero-statement { left: 18px; right: 18px; bottom: 42px; gap: 16px; }
  .hero-statement h1 { max-width: 10ch; font-size: clamp(42px, 15vw, 66px); }
  .event-sponsors { left: 18px; right: 18px; bottom: 22px; gap: 16px; }
  .event-sponsors img { max-width: 112px; height: 28px; }
  .event-sponsors span { font-size: 12px; }
  .section { padding-inline: 18px; }
  .partners-editorial { padding: 44px 18px 88px; }
  .about-team-section { padding-top: 92px; }
  .partners-kicker { margin-bottom: 22px; text-align: left; }
  .partners-headline { font-size: clamp(34px, 10.2vw, 48px); }
  .partners-copy,
  .about-team-story { font-size: 20px; }
  .about-team-title { font-size: clamp(38px, 12vw, 58px); }
  .about-team-copy,
  .about-team-story,
  .about-team-cards {
    width: 100%;
    max-width: min(354px, calc(100vw - 36px));
  }
  .about-team-cards { grid-template-columns: 1fr; }
  .about-team-overlay { padding: 16px; }
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  .impact-card strong { font-size: 28px; }
  .feature-grid, .architecture-grid { grid-template-columns: 1fr; }
  .ticker { padding: 34px 0; }
  .ticker-label { margin-bottom: 26px; }
  .ticker-track { padding: 16px 0; }
  .logo-set { gap: 46px; padding: 0 26px; }
  .logo-set img { max-width: 118px; height: 34px; }
  .contact-link { white-space: normal; width: 100%; }
  .portfolio-shell { width: min(100% - 36px, var(--max)); }
  .portfolio-hero { min-height: 68vh; padding-top: 104px; }
  .portfolio-hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .portfolio-card { min-height: 360px; }
  .creator-network { padding: 76px 18px 84px; }
  .creator-network-shell { min-height: 0; }
  .creator-network-copy { width: 100%; }
  .creator-network h2 { font-size: clamp(40px, 11vw, 58px); }
  .creator-network-subhead { font-size: 20px; }
  .creator-network-cta { width: 100%; max-width: 360px; }
  .case-carousel-slide { padding: 84px 18px 132px; }
  .case-carousel-content { align-items: flex-start; flex-direction: column; gap: 9px; }
  .case-carousel-content-hero {
    width: min(100%, 520px);
    padding: 0;
    transform: none;
  }
  .case-carousel-brand { padding: 9px 13px; }
  .case-carousel-title { font-size: 21px; }
  .case-carousel-content-hero .case-carousel-title {
    max-width: 9.8ch;
    font-size: clamp(34px, 10.4vw, 54px);
    line-height: 0.94;
  }
  .case-carousel-slide-invisalign .case-carousel-content { max-width: 340px; transform: none; }
  .case-carousel-slide:first-child img {
    object-position: center center;
  }
  .case-carousel-controls { right: 14px; bottom: 20px; gap: 8px; padding: 0; }
  .case-carousel-controls > button { width: 26px; height: 26px; font-size: 15px; }
  .case-carousel-toggle { width: 32px; height: 32px; }
  .case-carousel-dots { gap: 5px; }
  .case-carousel-dots button { width: 4px; height: 4px; }
  .work-archive { padding-block: 66px 82px; }
  .archive-card { flex-basis: 100%; }
  .archive-copy h3 { font-size: 26px; }
  .case-modal { padding: 14px; }
  .case-modal-panel { max-height: calc(100vh - 28px); }
  .case-modal-content { padding: 28px 22px 30px; }
  .case-modal-close { top: 12px; right: 12px; }
  .case-modal-panel h2 { font-size: clamp(32px, 10vw, 44px); }
  .offering-card { height: 500px; }
  .offering-frame {
    grid-template-rows: 200px 300px;
    height: 500px;
    min-height: 500px;
  }
  .offering-media,
  .offering-media > img,
  .offering-media > video { height: 200px; }
  .offering-copy { height: 300px; }
}

.contact-page {
  background: var(--hunter);
  color: var(--white);
}

.contact-form-section {
  min-height: 100vh;
  padding: clamp(118px, 12vw, 168px) 24px clamp(72px, 8vw, 104px);
  background: var(--hunter);
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-form-copy h1 {
  max-width: 9ch;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-form-copy p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.24;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(216, 249, 75, 0.38);
  background: rgba(255, 255, 255, 0.045);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--electric);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font: inherit;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form-wide,
.contact-form-submit {
  grid-column: 1 / -1;
}

.contact-form-submit {
  width: max-content;
  cursor: pointer;
}

@media (max-width: 760px) {
  .contact-form-shell,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .final-cta h2,
  .contact-form-copy h1 {
    font-size: clamp(42px, 14vw, 68px);
  }
}

.trusted-strip {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: clamp(42px, 5vw, 68px) 0 0;
  overflow: hidden;
  transform: translateX(-50%);
}


.trusted-strip .ticker-label {
  display: block;
  width: 100vw;
  margin: 0 auto clamp(18px, 2.5vw, 28px);
  text-align: center;
}


.trusted-strip .ticker-track {
  padding-block: clamp(12px, 2vw, 22px);
}

.trusted-strip .logo-set img {
  transition: none;
}

.site-footer {
  background: #f7f7f4;
  color: var(--black);
  border-top: 1px solid rgba(22, 22, 22, 0.1);
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(128px, 0.65fr));
  gap: clamp(34px, 6vw, 86px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 84px) 0 clamp(42px, 5vw, 64px);
}

.site-footer-brand,
.site-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-logo {
  display: inline-flex;
  width: min(196px, 58vw);
  margin-bottom: clamp(10px, 2vw, 18px);
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(7%) sepia(1%) saturate(973%) hue-rotate(314deg) brightness(102%) contrast(90%);
}

.site-footer-tagline {
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1;
}

.site-footer-brand p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgba(22, 22, 22, 0.56);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.site-footer-column h2 {
  margin: 0 0 6px;
  color: rgba(22, 22, 22, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer-column a {
  width: fit-content;
  color: rgba(22, 22, 22, 0.68);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 860px) {
  .site-footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .site-footer-shell {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1180px);
  }
}
