
:root {
  --bg: #161C18;
  --gold: #D6B58B;
  --gold-light: #E7CAA4;
  --cream: #F4EEE6;
  --muted: rgba(244,238,230,.66);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); }

body {
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(214,181,139,.035), transparent 34rem),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 170px rgba(0,0,0,.18);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .8s ease, visibility .8s ease;
}
.loader img {
  width: min(22vw, 150px);
  animation: breathe 1.8s ease-in-out infinite;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 30px clamp(22px,5vw,78px) 26px;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ambient-symbol {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-52%);
  opacity: .025;
  pointer-events: none;
}
.ambient-symbol img { width: min(76vw, 700px); }

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: .67rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.brand {
  width: min(88vw, 760px);
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.copy {
  max-width: 680px;
  margin-top: 10px;
}
.copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .95;
}
.copy p {
  margin: 20px auto 0;
  max-width: 600px;
  color: var(--muted);
  font-weight: 300;
  font-size: clamp(.95rem,1.6vw,1.1rem);
  line-height: 1.8;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.actions a {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .74rem;
  font-weight: 500;
  transition: .22s ease;
}
.primary { background: var(--gold); color: var(--bg); }
.secondary { color: var(--cream); border: 1px solid rgba(214,181,139,.28); }
.actions a:hover { transform: translateY(-2px); }
.secondary:hover { border-color: rgba(214,181,139,.7); color: var(--gold-light); }

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: rgba(244,238,230,.48);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214,181,139,.08);
  animation: pulse 2.2s infinite;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(214,181,139,.15);
  color: rgba(244,238,230,.38);
  font-size: .66rem;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--gold-light); }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal .95s cubic-bezier(.22,.8,.26,1) forwards;
}
.r1 { animation-delay: .1s; }
.r2 { animation-delay: .22s; }
.r3 { animation-delay: .36s; }
.r4 { animation-delay: .5s; }
.r5 { animation-delay: .64s; }

@keyframes reveal { to { opacity:1; transform:none; } }
@keyframes pulse { 50% { transform:scale(1.12); opacity:1; } }
@keyframes breathe { 50% { transform:scale(1.045); opacity:.85; } }

@media (max-width:700px) {
  .page { padding-top: 20px; }
  .hero { min-height: calc(100vh - 135px); }
  .brand { width: min(96vw,620px); }
  .actions { width: min(100%,390px); }
  .actions a { width: 100%; }
  .footer { flex-direction: column; align-items:center; text-align:center; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
