:root {
  --black: #060605;
  --near: #10100e;
  --white: #f5f1e8;
  --muted: #c3baad;
  --soft: #8d8478;
  --gold: #b89b4b;
  --gold-soft: rgba(184, 155, 75, .2);
  --line: rgba(245, 241, 232, .13);
}

* { 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: Archivo, "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: .02;
  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: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  background: linear-gradient(180deg, rgba(6,6,5,.72), rgba(6,6,5,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: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 155, 75, .5);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.header-button,
.primary-button {
  color: var(--gold);
  background: rgba(6, 6, 5, .16);
}

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

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

.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: 140px 7vw 92px;
}

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

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,6,5,.94), rgba(6,6,5,.62) 45%, rgba(6,6,5,.3) 78%),
    linear-gradient(0deg, rgba(6,6,5,.82), transparent 50%, rgba(6,6,5,.4));
}

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

.eyebrow,
.section-label {
  margin: 0 0 30px;
  color: rgba(245,241,232,.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.8;
  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: 900px;
  margin-bottom: 32px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(60px, 7.4vw, 116px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: none;
}

h2 {
  margin-bottom: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(38px, 4.8vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.025em;
  text-transform: none;
}

h3 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
  text-transform: none;
}

.hero-subcopy {
  max-width: 650px;
  margin-bottom: 44px;
  color: rgba(245,241,232,.8);
  font-size: 18px;
  line-height: 1.85;
}

.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: 7vw;
  bottom: 92px;
  top: auto;
  width: min(520px, 36vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: none;
  border-top: 1px solid rgba(245,241,232,.22);
  border-left: 1px solid rgba(245,241,232,.16);
}

.hero-tags span {
  position: relative;
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 18px;
  color: rgba(245,241,232,.82);
  background: rgba(6,6,5,.18);
  border: 0;
  border-right: 1px solid rgba(245,241,232,.16);
  border-bottom: 1px solid rgba(245,241,232,.16);
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  animation: tagEntrance .9s cubic-bezier(.19, 1, .22, 1) both;
  transition: color .35s ease, background .35s ease;
}

.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: var(--white);
  background: rgba(184,155,75,.16);
}

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

.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; }

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

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

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: rgba(245,241,232,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  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: start;
  padding: 124px 7vw 112px;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(245,241,232,.72);
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -.02em;
}

.service-list span {
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.visual-services {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 760px;
  border-bottom: 1px solid var(--line);
  background: var(--near);
}

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

.visual-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) contrast(1) saturate(.8);
}

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

.service-list {
  align-self: center;
  display: block;
  padding: 64px 7vw 64px 6vw;
}

.service-list div {
  display: grid;
  grid-template-columns: 76px minmax(220px, 1fr) minmax(220px, .82fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list div:first-child {
  border-top: 1px solid var(--line);
}

.service-list p {
  max-width: 420px;
  margin: 0;
  color: rgba(245,241,232,.64);
  font-size: 15px;
  line-height: 1.65;
}

.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(.66) contrast(1.02) saturate(.82);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(6,6,5,.9), transparent 56%), linear-gradient(90deg, rgba(6,6,5,.86), transparent 64%);
}

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

.feature p:not(.section-label) {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(245,241,232,.72);
  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(.68) contrast(1) saturate(.84);
}

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

.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: var(--near);
  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 tagSheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tags span,
  .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;
    bottom: auto;
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    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 {
    padding: 56px 7vw;
  }

  .service-list div {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .service-list p {
    grid-column: 2;
  }
}

@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,
  .feature p:not(.section-label) {
    font-size: 15px;
  }

  .intro p:last-child {
    font-size: 20px;
    line-height: 1.55;
  }

  .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 {
    padding: 44px 6vw 58px;
  }

  .service-list div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .service-list p {
    grid-column: auto;
  }

  .feature {
    min-height: 560px;
  }

  .closing {
    min-height: 540px;
  }

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