:root {
  --ink: #151515;
  --muted: #6d6d6d;
  --soft: #9a9a9a;
  --line: rgba(21, 21, 21, 0.12);
  --paper: #f7f7f5;
  --paper-alt: #eeeeec;
  --field: #ffffff;
  --charcoal: #171717;
  --graphite: #2d2d2d;
  --steel: #dededb;
  --button: #151515;
  --button-text: #f7f8f4;
  --sans: "Century Gothic", CenturyGothic, "AppleGothic", "Segoe UI", Arial, sans-serif;
  --display: "Century Gothic", CenturyGothic, "AppleGothic", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-wrap,
.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: min(194px, 48vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.hero {
  min-height: calc(92vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #ffffff;
}

.hero.compact {
  min-height: 52vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.58) 48%, rgba(12, 12, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.14) 0%, rgba(12, 12, 12, 0.82) 100%);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(24, 24, 24, 0.96), rgba(64, 64, 64, 0.72)),
    linear-gradient(180deg, #f3f3f1, #d8d8d5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 78px 0 58px;
}

.eyebrow,
.kicker,
.meta,
.number,
.footer-label,
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow,
.kicker,
.meta,
.footer-label,
.label {
  color: var(--soft);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  width: min(840px, 100%);
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

h2,
h3,
.section-title,
.stat strong,
.metric-row strong,
.cta h2 {
  font-family: var(--display);
}

.compact h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.lead {
  width: min(720px, 100%);
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.hero .button.primary {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.button.secondary {
  color: inherit;
}

.stats-band {
  background: var(--charcoal);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.95;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

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

.section.dark {
  background: var(--charcoal);
  color: #ffffff;
}

.section-head {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.section-copy + .section-copy {
  margin-top: 18px;
}

.dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.philosophy-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.philosophy-item {
  display: grid;
  grid-template-columns: 110px 1fr 0.9fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.number {
  color: var(--soft);
}

.philosophy-item h3,
.feature h3,
.person h3,
.panel h2 {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}

.philosophy-item p,
.feature p,
.person p,
.panel p,
.release-body p,
.quote p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.media-strip {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 34px;
  align-items: center;
}

.media-window {
  overflow: hidden;
  min-height: auto;
  background: #000000;
}

.media-window video,
.media-window img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature,
.person,
.panel {
  background: var(--paper);
  padding: 30px;
}

.dark .feature,
.dark .person,
.dark .panel {
  background: #202020;
}

.dark .feature p,
.dark .person p,
.dark .panel p {
  color: rgba(255, 255, 255, 0.68);
}

.feature h3,
.panel h2 {
  margin-top: 18px;
}

.feature p,
.panel p {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 40px;
  align-items: start;
}

.metric-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 20px;
  background: var(--paper);
}

.metric-row strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.people-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.person-image {
  width: min(280px, 100%);
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--steel);
}

.section-title + .section-copy {
  margin-top: 24px;
}

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

.person p,
.contact-list {
  margin-top: 16px;
}

.profile-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.text-link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta {
  background: var(--charcoal);
  color: #ffffff;
  padding: 64px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.cta h2 {
  width: min(740px, 100%);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 18px;
}

.release-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.release-body {
  padding: 58px 0 68px;
}

.release-body p {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.82;
}

.quote {
  margin: 34px 0;
  padding-left: 28px;
  border-left: 3px solid var(--ink);
}

.quote p {
  color: var(--ink);
  font-size: 26px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field label {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

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

.contact-person {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-person h3 {
  font-size: 22px;
  font-weight: 600;
}

.contact-person p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.note {
  margin-top: 16px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  background: var(--charcoal);
  color: #ffffff;
  padding: 56px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.45fr);
  gap: 42px;
}

.footer-grid img {
  width: min(210px, 52vw);
  filter: brightness(0) invert(1);
}

.footer-grid p {
  width: min(430px, 100%);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav-wrap,
  .wrap,
  .release-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav a {
    min-width: max-content;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line);
  }

  .hero,
  .hero.compact {
    min-height: 62vh;
  }

  .hero-content {
    padding: 64px 0 42px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.96;
  }

  .section {
    padding: 48px 0;
  }

  .section-head,
  .split,
  .media-strip,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-grid,
  .features,
  .people-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 126px;
  }

  .philosophy-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .media-window {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .cta .button {
    width: auto;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: min(190px, 64vw);
  }

  .hero,
  .hero.compact {
    min-height: 66vh;
  }

  .actions {
    width: 100%;
  }

  .feature,
  .person,
  .panel,
  .metric-row,
  .stat {
    padding: 24px;
  }

  .release-body p {
    font-size: 18px;
  }

  .quote p {
    font-size: 21px;
  }
}
