:root {
  --orange: #ff6600;
  --orange-dark: #d95600;
  --charcoal: #3f3f3e;
  --charcoal-deep: #202120;
  --charcoal-soft: #4c4c4a;
  --cream: #fff7f2;
  --paper: #f6eee8;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --header-h: 108px;
  font-family: "Prompt", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
  font-family: "Prompt", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  min-height: var(--header-h);
  padding: 22px clamp(24px, 4vw, 46px);
  background: rgba(31, 32, 31, 0.93);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.brand i {
  color: var(--orange);
  font-size: 0.92em;
  transform: rotate(-22deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  padding: 12px 0;
}

.nav-trigger i {
  font-size: 14px;
  transition: transform 180ms ease;
}

.nav-item.open .nav-trigger i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -22px;
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(32, 33, 32, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown.wide {
  min-width: 310px;
}

.dropdown a {
  border-radius: 6px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 12px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(255, 102, 0, 0.16);
  color: var(--orange);
}

.nav-item.open .dropdown,
.nav-item:focus-within .dropdown,
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-contact,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 27px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 0 0 8px rgba(255, 102, 0, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-contact:hover,
.cta-button:hover,
.header-contact:focus-visible,
.cta-button:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 0 10px rgba(255, 102, 0, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: clamp(82px, 8vw, 104px) clamp(24px, 4vw, 46px) 56px;
  background: var(--charcoal);
}

.hero-bg,
.impact > img,
.video-panel > img,
.case-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  object-position: center;
  filter: saturate(0.82) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 36, 35, 0.82) 0%, rgba(35, 36, 35, 0.55) 44%, rgba(35, 36, 35, 0.18) 100%),
    linear-gradient(180deg, rgba(35, 36, 35, 0.36) 0%, rgba(35, 36, 35, 0.08) 47%, rgba(35, 36, 35, 0.72) 100%);
}

.arc {
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255, 102, 0, 0.9);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.arc-hero-one {
  width: 118vw;
  height: 32vw;
  top: -5vw;
  right: -12vw;
  transform: rotate(-5deg);
}

.arc-hero-two {
  width: 130vw;
  height: 38vw;
  bottom: -24vw;
  left: -18vw;
  opacity: 0.75;
  transform: rotate(5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
}

.hero h1,
.section-intro h2,
.projects h2,
.case-copy h2,
.quote-copy h2,
.impact h2,
.contact-cta h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 4.8vw, 57px);
  line-height: 1.14;
}

.hero-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: end;
  margin-top: clamp(108px, 16vh, 136px);
}

.feature-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 33px);
  font-weight: 500;
  line-height: 1.18;
}

.feature-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.56;
}

.feature-tabs {
  display: none;
  gap: 10px;
  align-items: center;
}

.feature-tab {
  min-width: 72px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
}

.feature-tab.active,
.feature-tab:hover,
.feature-tab:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.maverick {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 122px) clamp(24px, 4vw, 50px) 70px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.09), transparent 32%),
    var(--charcoal);
}

.section-intro {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-intro h2,
.projects h2,
.impact h2,
.contact-cta h2 {
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.15;
}

.section-intro p {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2.3vw, 28px);
}

.video-panel {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border-radius: 0 0 42% 42% / 0 0 9% 9%;
  box-shadow: inset 0 -120px 100px rgba(34, 35, 34, 0.78);
}

.video-panel::after,
.case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 34, 33, 0.12), rgba(33, 34, 33, 0.62));
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 36px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.play-button i {
  margin-left: 7px;
}

.play-button:hover,
.play-button:focus-visible {
  background: var(--orange-dark);
  transform: translate(-50%, -50%) scale(1.04);
}

.metric-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 3vw, 42px);
  max-width: 1060px;
  margin: -118px auto 0;
  padding: 0 clamp(8px, 2vw, 20px);
}

.metric-row article,
.impact-stats article {
  text-align: center;
}

.metric-row strong,
.impact-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.metric-row span,
.impact-stats span {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 1.24;
}

.projects {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 116px) 0 clamp(82px, 10vw, 130px);
  background: var(--cream);
  color: var(--charcoal);
}

.projects::before,
.projects::after,
.contact-cta::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255, 102, 0, 0.72);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.projects::before {
  width: 130vw;
  height: 22vw;
  top: -12vw;
  left: -15vw;
}

.projects::after {
  width: 130vw;
  height: 22vw;
  bottom: -16vw;
  right: -17vw;
  opacity: 0.58;
}

.projects-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 36px;
}

.projects h2 {
  color: var(--charcoal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 24px;
}

.carousel-shell {
  position: relative;
  z-index: 2;
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 40px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(24px, 4vw, 50px);
  padding: 8px clamp(24px, 4vw, 50px) 26px;
  scrollbar-width: none;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px 30px 30px 0;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(62, 62, 61, 0.18);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(62, 62, 61, 0.26);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.16), rgba(16, 16, 16, 0.74));
}

.card-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px 34px;
}

.card-content h3 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 29px);
  font-weight: 500;
  line-height: 1.18;
}

.card-content dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.card-content dt {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.1;
}

.card-content dd {
  margin: -6px 0 8px;
  color: var(--white);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
}

.card-content dd:empty {
  display: none;
}

.plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 24px;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.22);
}

.carousel-button.prev {
  left: 18px;
}

.carousel-button.next {
  right: 18px;
}

.case-band {
  padding: 0;
  background: var(--charcoal);
}

.case-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.case-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 6vw, 82px);
  bottom: clamp(40px, 7vw, 86px);
  max-width: 760px;
}

.case-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.13;
}

.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 24px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  padding: clamp(72px, 10vw, 126px) clamp(24px, 5vw, 74px);
  background: var(--charcoal);
}

.quote-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 52% 52% 6px 6px;
  border: 8px solid rgba(255, 102, 0, 0.88);
  box-shadow: var(--shadow);
}

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

.quote-copy h2 {
  max-width: 790px;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.25;
}

.quote-rule {
  height: 2px;
  width: min(100%, 640px);
  margin: 30px 0;
  background: var(--orange);
}

.quote-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.quote-copy p strong {
  color: var(--white);
  font-size: clamp(58px, 7vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.quote-copy .attribution {
  margin-top: 22px;
  font-size: 19px;
}

.impact {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px 24px;
}

.impact > img {
  filter: brightness(0.85) saturate(1.08);
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 33, 32, 0.2), rgba(32, 33, 32, 0.3));
}

.impact-content {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  text-align: center;
}

.impact h2 {
  margin-bottom: clamp(68px, 10vw, 118px);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 7vw, 82px);
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 132px) 24px;
  background: var(--paper);
  color: var(--charcoal);
  text-align: center;
}

.contact-cta::before {
  width: 128vw;
  height: 24vw;
  top: -14vw;
  left: -16vw;
}

.contact-cta h2 {
  color: var(--charcoal);
}

.contact-cta p {
  max-width: 690px;
  margin: 24px auto 34px;
  color: var(--charcoal);
  font-size: clamp(19px, 2.2vw, 25px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(24px, 4vw, 46px) 40px;
  background: var(--charcoal);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.footer-brand {
  font-size: 52px;
}

.footer-top p {
  margin: 0;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 72px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 500;
}

.footer-links a,
.legal a {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
}

.footer-links a:hover,
.legal a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: end;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.legal {
  display: grid;
  gap: 10px;
  text-align: right;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: var(--white);
  font-size: 30px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(19, 20, 19, 0.78);
  backdrop-filter: blur(10px);
}

.modal.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(980px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.modal-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.modal-card div {
  padding: 28px;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.modal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 1020px) {
  :root {
    --header-h: 88px;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: var(--header-h);
  }

  .menu-toggle {
    display: grid;
    order: 3;
  }

  .header-contact {
    order: 2;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 24px 24px;
    background: rgba(31, 32, 31, 0.98);
  }

  .site-header.nav-open .primary-nav {
    display: grid;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 10px 14px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.open .dropdown {
    display: grid;
  }

  .hero-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-tabs {
    flex-wrap: wrap;
  }

  .metric-row {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -70px;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-image {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .legal {
    text-align: left;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding: 16px 18px;
    gap: 14px;
  }

  .brand {
    font-size: 38px;
  }

  .header-contact {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .hero {
    min-height: 720px;
    padding: 84px 20px 44px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-feature {
    margin-top: 78px;
  }

  .arc-hero-one {
    width: 160vw;
    height: 50vw;
    top: 10vw;
    right: -44vw;
  }

  .arc-hero-two {
    width: 180vw;
    height: 56vw;
    bottom: -16vw;
    left: -56vw;
  }

  .maverick {
    padding-inline: 18px;
  }

  .video-panel {
    min-height: 420px;
    border-radius: 0 0 30% 30% / 0 0 5% 5%;
  }

  .play-button {
    width: 76px;
    height: 76px;
    font-size: 28px;
  }

  .metric-row,
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
  }

  .projects-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-track {
    grid-auto-columns: minmax(270px, 82vw);
    gap: 22px;
  }

  .carousel-button {
    display: none;
  }

  .case-visual {
    min-height: 500px;
  }

  .quote-section {
    padding-inline: 20px;
  }

  .quote-copy h2 {
    font-size: 29px;
  }

  .impact {
    min-height: 740px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
