:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0b0a09;
  --gold: #c8a35f;
  --gold-light: #ead39c;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--black);
  color: #f5f1e8;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 6vw, 90px) clamp(24px, 3vw, 42px);
  background: #000;
}

.hero::before, .hero::after { content: none; }

.brand {
  position: relative;
  z-index: 3;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand__logo-frame {
  position: relative;
  display: block;
  width: 360px;
  height: 300px;
  overflow: hidden;
}

.brand__logo {
  position: absolute;
  top: -330px;
  left: -300px;
  display: block;
  width: 960px;
  height: 960px;
  object-fit: contain;
}

.brand__fallback {
  color: var(--gold-light);
  font-family: "Bodoni MT", "Bodoni 72", Didot, Georgia, serif;
  font-size: 18px;
  letter-spacing: .025em;
}

.brand__fallback i { color: #fff; font-weight: 400; }

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(950px, 92vw);
  padding: 10px 0 80px;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Bodoni MT", "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: clamp(66px, 10vw, 152px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
  text-shadow: 0 12px 50px rgba(0,0,0,.7);
}

h1 i {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: min(220px, 50vw);
  margin: 36px auto 25px;
}

.divider span {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,163,95,.72));
}

.divider span:last-child { transform: scaleX(-1); }
.divider i { color: var(--gold); font-family: Georgia, serif; font-size: 12px; font-style: normal; }

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .46em;
  text-indent: .46em;
  text-transform: uppercase;
}

.card-shape {
  display: none;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(310px, 31vw, 480px);
  aspect-ratio: .69;
  border: 1px solid rgba(200,163,95,.11);
  border-radius: 30px;
  color: rgba(200,163,95,.075);
  transform: translate(-50%, -50%) rotate(8deg);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.01), 0 40px 110px rgba(0,0,0,.5);
  background: linear-gradient(145deg, rgba(39,31,18,.13), rgba(5,5,5,.06));
}

.card-shape::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200,163,95,.055);
  border-radius: 18px;
}

.card-shape__mark { position: absolute; top: 50%; left: 50%; font-size: clamp(100px, 14vw, 210px); transform: translate(-50%, -50%); }
.card-shape__corner { position: absolute; font-family: Georgia, serif; font-size: clamp(24px, 2.3vw, 38px); line-height: .72; text-align: center; }
.card-shape__corner i { font-size: .58em; font-style: normal; }
.card-shape__corner--top { top: 38px; left: 38px; }
.card-shape__corner--bottom { right: 38px; bottom: 38px; transform: rotate(180deg); }

.ambient { display: none; position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.ambient--one { left: 50%; top: 50%; width: 58vw; height: 58vw; border: 1px solid rgba(200,163,95,.035); transform: translate(-50%, -50%); }
.ambient--two { left: 50%; top: 50%; width: 43vw; height: 43vw; border: 1px solid rgba(200,163,95,.045); transform: translate(-50%, -50%); }

footer { position: relative; z-index: 3; display: flex; justify-content: center; }
footer span { width: 1px; height: 28px; background: linear-gradient(var(--gold), transparent); opacity: .42; }

@media (max-width: 700px) {
  .hero { padding: 24px 20px 20px; }
  .hero__content { padding: 0 0 64px; }
  .brand { min-height: 220px; }
  .brand__logo-frame { width: 280px; height: 220px; }
  .brand__logo { top: -245px; left: -220px; width: 720px; height: 720px; }
  h1 { font-size: clamp(62px, 22vw, 92px); }
  .card-shape { width: 280px; opacity: .82; }
  .ambient--one { width: 125vw; height: 125vw; }
  .ambient--two { width: 92vw; height: 92vw; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero__content { padding: 20px 0 38px; }
  h1 { font-size: 66px; }
  .divider { margin: 22px auto 17px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content { animation: reveal .9s cubic-bezier(.2,.7,.2,1) both; }
  .card-shape { animation: card-in 1.1s .05s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes reveal { from { opacity: 0; transform: translateY(12px); } }
  @keyframes card-in { from { opacity: 0; transform: translate(-50%, -47%) rotate(11deg); } }
}
