:root {
  --ink: #111318;
  --muted: #626773;
  --line: #dfe3ea;
  --paper: #fbfcfd;
  --white: #ffffff;
  --red: #e42b2f;
  --red-dark: #a8121a;
  --teal: #0c8f93;
  --lime: #d7f76f;
  --navy: #172033;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 253, 0.86);
  border-bottom: 1px solid rgba(223, 227, 234, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 8px 22px rgba(17, 19, 24, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #383e49;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 0;
}

.header-cta,
.btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 118px clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.94), rgba(17, 19, 24, 0.72) 48%, rgba(17, 19, 24, 0.28)),
    linear-gradient(180deg, rgba(17, 19, 24, 0.24), rgba(17, 19, 24, 0.88));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 6vw, 88px);
  bottom: clamp(48px, 9vw, 118px);
  width: clamp(140px, 22vw, 320px);
  opacity: 0.22;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.13;
  background-image: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.34) 9px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 920px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-width: 154px;
  padding: 0 22px;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 40px rgba(228, 43, 47, 0.28);
}

.btn.secondary {
  color: var(--ink);
  background: var(--white);
}

.btn.social {
  color: var(--white);
  background: var(--navy);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.intro-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--navy);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 68px 0 34px;
}

.metrics article {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 750;
}

.services,
.process {
  padding: 64px 0 92px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading.split > div:first-child {
  max-width: 720px;
}

.section-note {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.service-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--red);
  font-weight: 950;
}

.service-grid p,
.work-info p,
.timeline p,
.package-grid p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.event-coverage {
  padding: 86px 0;
  color: var(--white);
  background: var(--ink);
}

.event-coverage .section-kicker {
  color: var(--lime);
}

.event-coverage .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.event-list article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.event-list article.wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(228, 43, 47, 0.82), rgba(12, 143, 147, 0.62)),
    rgba(255, 255, 255, 0.05);
}

.event-list span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-list h3 {
  margin-bottom: 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.18;
}

.proof-band {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.96), rgba(23, 32, 51, 0.86)),
    url("assets/nuhade-pattern.png") center / cover;
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.proof-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.proof-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase {
  padding: 86px 0 96px;
  background: #eef2f4;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.filter-btn.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.work-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(17, 19, 24, 0.08);
}

.work-card.featured {
  grid-column: span 2;
}

.video-thumb {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.video-thumb span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
}

.video-thumb:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.static-thumb {
  cursor: default;
}

.static-thumb img {
  filter: saturate(0.96) contrast(1.02);
}

.static-thumb:hover img {
  transform: none;
  opacity: 1;
}

.work-info {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-info h3 {
  margin-bottom: 12px;
}

.watch-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.timeline article:nth-child(2) {
  background: var(--red-dark);
}

.timeline article:nth-child(3) {
  background: var(--teal);
}

.timeline article:nth-child(4) {
  background: var(--navy);
}

.timeline span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 950;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.packages {
  padding: 86px 0;
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package-grid .section-heading {
  margin-bottom: 0;
  align-self: center;
}

.package-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.package-grid article.accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.package-grid article.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.package-grid a {
  width: fit-content;
  color: var(--red);
  font-weight: 950;
}

.contact {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(228, 43, 47, 0.93), rgba(17, 19, 24, 0.94)),
    url("assets/nuhade-background.png") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact p {
  max-width: 680px;
  font-size: 18px;
}

.office-location {
  width: min(100%, 560px);
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.office-location span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.office-location strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.office-location p {
  margin-bottom: 16px;
  font-size: 15px;
}

.office-location a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
  background: var(--white);
  border-radius: 8px;
}

.contact-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact-actions .btn {
  width: min(100%, 250px);
}

footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 750;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: #000;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  font: inherit;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  cursor: pointer;
}

.modal-panel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .intro-grid,
  .proof-grid,
  .contact-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .metrics,
  .service-grid,
  .event-list,
  .timeline,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card.featured {
    grid-column: span 2;
  }

  .section-heading.split {
    display: block;
  }

  .filters {
    margin-top: 22px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .event-list article.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand span {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 88vh;
    padding: 86px 18px 28px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(17, 19, 24, 0.52), rgba(17, 19, 24, 0.92)),
      linear-gradient(90deg, rgba(17, 19, 24, 0.74), rgba(17, 19, 24, 0.3));
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .intro-band,
  .showcase,
  .packages,
  .contact {
    padding: 56px 0;
  }

  .services,
  .process {
    padding: 46px 0 62px;
  }

  .metrics,
  .service-grid,
  .event-list,
  .timeline,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card.featured {
    grid-column: auto;
  }

  .event-list article.wide {
    grid-column: auto;
  }

  .service-grid article,
  .event-list article,
  .timeline article,
  .package-grid article {
    min-height: auto;
  }

  .service-number,
  .timeline span {
    margin-bottom: 34px;
  }

  .footer-inner {
    display: grid;
  }
}
