:root {
  --black: #050505;
  --white: #f6f4ef;
  --muted: #b0aca6;
  --soft: #77716a;
  --gold: #d4b12d;
  --line: rgba(246, 244, 239, .14);
}

* { box-sizing: border-box; }

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle, #fff 0 1px, transparent 1px);
  background-size: 3px 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,0));
}

.brand {
  width: clamp(138px, 11vw, 190px);
}

.brand img {
  width: 100%;
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 177, 45, .55);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.header-button,
.primary-button {
  color: var(--gold);
  background: rgba(0, 0, 0, .2);
}

.header-button::after {
  content: "↗";
  margin-left: 14px;
}

.secondary-button {
  color: var(--white);
  border-color: rgba(246, 244, 239, .22);
  background: rgba(0, 0, 0, .18);
}

.header-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 124px 7vw 82px;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.72) contrast(1.08) saturate(.9);
}

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.56) 42%, rgba(0,0,0,.18) 78%),
    linear-gradient(0deg, rgba(0,0,0,.76), transparent 46%, rgba(0,0,0,.44));
}

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

.eyebrow,
.section-label {
  margin: 0 0 28px;
  color: rgba(246,244,239,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1.7;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow span {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--white);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(58px, 8.3vw, 132px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 86px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-subcopy {
  max-width: 640px;
  margin-bottom: 42px;
  color: rgba(246,244,239,.82);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button,
.closing-actions .primary-button,
.closing-actions .secondary-button {
  min-width: 230px;
  min-height: 58px;
}

.hero-tags {
  position: absolute;
  z-index: 2;
  right: 3.6vw;
  top: 50%;
  width: 240px;
  display: grid;
  gap: 12px;
  transform: translateY(-42%);
  perspective: 900px;
}

.hero-tags span {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(246,244,239,.56);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(212, 177, 45, 0);
  transform: translate3d(0, 0, 0);
  animation: tagEntrance .9s cubic-bezier(.19, 1, .22, 1) both, tagFloat 5.8s ease-in-out infinite;
  transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
  will-change: transform;
}

.hero-tags span::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 0 28%, rgba(255,255,255,.22) 46%, transparent 66% 100%);
  transition: opacity .35s ease;
}

.hero-tags span:hover {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(212, 177, 45, .24);
  transform: translate3d(-10px, -2px, 0) scale(1.035);
}

.hero-tags span:hover::before {
  opacity: 1;
  animation: tagSheen .85s ease forwards;
}

.hero-tags span:nth-child(4),
.hero-tags span:nth-child(7) {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212, 177, 45, .18);
  animation: tagEntrance .9s cubic-bezier(.19, 1, .22, 1) both, tagFloat 5.8s ease-in-out infinite, tagPulse 3.8s ease-in-out infinite;
}

.hero-tags span:nth-child(1) { animation-delay: .08s, .08s; }
.hero-tags span:nth-child(2) { animation-delay: .16s, .46s; }
.hero-tags span:nth-child(3) { animation-delay: .24s, .18s; }
.hero-tags span:nth-child(4) { animation-delay: .32s, .62s, .32s; }
.hero-tags span:nth-child(5) { animation-delay: .40s, .28s; }
.hero-tags span:nth-child(6) { animation-delay: .48s, .54s; }
.hero-tags span:nth-child(7) { animation-delay: .56s, .12s, .56s; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "✦";
  margin: 0 42px;
  color: var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 8vw;
  align-items: end;
  padding: 110px 7vw;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.visual-services {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 760px;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.visual-services article {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.visual-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.06) saturate(.92);
}

.visual-services article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.48));
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
}

.service-list div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list span {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.service-list p {
  max-width: 300px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 90px 7vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.feature img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) contrast(1.08) saturate(.9);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,.88), transparent 54%), linear-gradient(90deg, rgba(0,0,0,.82), transparent 62%);
}

.feature div {
  position: relative;
  z-index: 2;
  width: min(850px, 86vw);
}

.feature p:not(.section-label) {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.closing {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 90px 7vw;
  text-align: center;
}

.closing img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.05);
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.58);
}

.closing > div {
  position: relative;
  z-index: 2;
  width: min(960px, 92vw);
}

.closing .closing-actions {
  justify-content: center;
  margin-top: 42px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 30px 4vw 34px;
  color: var(--soft);
  background: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s ease, transform .95s cubic-bezier(.19, 1, .22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes tagEntrance {
  from {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) scale(.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tagFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: -7px -8px; }
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 177, 45, .14); }
  50% { box-shadow: 0 0 42px rgba(212, 177, 45, .3); }
}

@keyframes tagSheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tags span,
  .hero-tags span:nth-child(4),
  .hero-tags span:nth-child(7),
  .ticker div,
  .reveal {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .hero-content {
    width: min(760px, 88vw);
  }

  .hero-tags {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(2, max-content);
    margin-top: 44px;
    transform: none;
  }

  .hero-tags span {
    justify-self: start;
  }

  .intro,
  .visual-services {
    grid-template-columns: 1fr;
  }

  .visual-services,
  .visual-services article {
    min-height: auto;
  }

  .visual-services article {
    height: 56vw;
    min-height: 430px;
  }

  .service-list {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 0 5vw;
  }

  .brand {
    width: 132px;
  }

  .header-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 10px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 6vw 58px;
  }

  .hero-layer {
    background:
      linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.45)),
      linear-gradient(0deg, rgba(0,0,0,.82), transparent 48%, rgba(0,0,0,.38));
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow,
  .section-label {
    font-size: 10px;
    letter-spacing: .22em;
  }

  .eyebrow span {
    width: 30px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 76px);
    letter-spacing: -.035em;
  }

  h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .hero-subcopy,
  .intro p:last-child,
  .feature p:not(.section-label) {
    font-size: 15px;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .closing-actions .primary-button,
  .closing-actions .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .hero-tags {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 34px;
  }

  .hero-tags span {
    min-height: 34px;
    font-size: 10px;
  }

  .intro,
  .feature,
  .closing {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .intro {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .visual-services article {
    height: 420px;
    min-height: 420px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list div {
    min-height: 260px;
    padding: 32px 6vw;
    border-right: 0;
  }

  .feature {
    min-height: 560px;
  }

  .closing {
    min-height: 540px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
