:root {
  --ink: #fff8ea;
  --muted: rgba(245, 241, 232, 0.72);
  --gold: #eeb648;
  --dark: #111315;
  --panel: #1b2022;
  --line: rgba(245, 241, 232, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.86), rgba(17, 19, 21, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(238, 182, 72, 0.72);
  border-radius: 8px;
  color: #211503;
  background: var(--gold);
}

.nav-links {
  gap: 16px;
}

.nav-links a {
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.96) 0%, rgba(17, 19, 21, 0.82) 48%, rgba(17, 19, 21, 0.38) 100%),
    var(--dark);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 86px;
  content: "";
  background: linear-gradient(0deg, var(--dark), rgba(17, 19, 21, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 5.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.22rem;
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: #211503;
  background: var(--gold);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
  background: var(--dark);
}

.section-head {
  display: flex;
  width: min(1180px, 100%);
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin: 0 auto 28px;
}

h2 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.project-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 0.94fr));
  gap: 14px;
}

.project-card {
  position: relative;
  display: grid;
  min-height: 310px;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #f5f1e8;
  background: var(--panel);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(238, 182, 72, 0.72);
  background: #20272a;
}

.project-card.featured {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.18), rgba(17, 19, 21, 0.92)),
    url("assets/campaign-hero.png") center / cover no-repeat;
}

.project-card.featured img {
  position: absolute;
  top: 22px;
  left: 22px;
  width: min(260px, calc(100% - 44px));
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45));
}

.project-status,
.project-kicker,
.project-icon {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid rgba(238, 182, 72, 0.52);
  border-radius: 8px;
  color: #211503;
  background: var(--gold);
}

.project-status.muted {
  color: #f5f1e8;
  background: rgba(245, 241, 232, 0.08);
}

.project-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(245, 241, 232, 0.2);
  border-radius: 8px;
  color: var(--gold);
}

.project-kicker {
  color: var(--gold);
}

.project-card strong {
  max-width: 320px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.project-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  background: #16191b;
}

.future-list {
  display: grid;
  gap: 12px;
}

.future-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.04);
}

.future-list strong {
  font-size: 1.18rem;
}

.future-list span {
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--dark);
}

.footer a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.3rem;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.featured {
    grid-column: 1 / -1;
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    display: grid;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(17, 19, 21, 0.96);
  }

  .nav-links {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
    padding: 72px 16px 58px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .actions {
    display: grid;
  }

  .section {
    padding: 56px 16px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  h2 {
    font-size: 2.55rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.featured {
    min-height: 300px;
  }

  .project-card.featured img {
    width: min(220px, calc(100% - 44px));
  }

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