:root {
  --ink: #e9e6dc;
  --muted: #a4aaa5;
  --gold: #c8ab70;
  --gold-soft: #806f4c;
  --night: #071310;
  --night-deep: #040b09;
  --line: rgba(233, 230, 220, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--night-deep);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--gold); color: var(--night); }

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.025) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 73% 42%, rgba(38, 91, 74, .21), transparent 32%),
    linear-gradient(142deg, #0a1b17 0%, var(--night) 48%, #050d0b 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: .11;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.ambient { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.ambient-one { width: 40rem; height: 40rem; top: -27rem; right: -7rem; border: 1px solid rgba(200,171,112,.12); }
.ambient-two { width: 25rem; height: 25rem; bottom: -18rem; left: 12%; border: 1px solid rgba(200,171,112,.09); }

.site-header, main, .site-footer { position: relative; z-index: 2; }

.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.5vw, 96px);
  border-bottom: 1px solid var(--line);
}

.brand { color: var(--ink); display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand-mark { width: 37px; height: 37px; fill: none; stroke: var(--gold); stroke-width: 1.2; }
.brand-name { font-family: "DM Sans", sans-serif; font-size: 13px; font-style: normal; font-weight: 500; letter-spacing: .22em; }
.brand-name i { display: inline-block; height: 13px; width: 1px; margin: 0 9px -2px 7px; background: var(--gold-soft); }

.header-status { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,171,112,.1); animation: pulse 2.5s ease-in-out infinite; }

main { padding: 0 clamp(24px, 5.5vw, 96px); }

.hero {
  min-height: min(650px, calc(100svh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  align-items: center;
  gap: 5vw;
  padding: clamp(70px, 9vh, 130px) 0;
}

.eyebrow, .section-label { margin: 0 0 25px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 13px 3px 0; background: var(--gold); }

h1 { margin: 0; font-family: "DM Sans", sans-serif; font-size: clamp(52px, 7vw, 112px); font-weight: 300; line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--gold); font-style: normal; font-weight: 300; }

.intro { max-width: 650px; margin-top: clamp(38px, 6vh, 70px); display: grid; grid-template-columns: 55px 1fr; gap: 22px; }
.intro-rule { height: 1px; margin-top: 11px; background: var(--gold-soft); }
.intro p { margin: 0; color: #bdc1bc; font-size: clamp(14px, 1.25vw, 17px); font-weight: 300; line-height: 1.9; }

.orbit-visual { position: relative; width: min(33vw, 460px); aspect-ratio: 1; justify-self: end; opacity: .85; }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(200,171,112,.22); border-radius: 50%; }
.orbit-middle { inset: 16%; border-color: rgba(233,230,220,.13); }
.orbit-inner { inset: 34%; border-color: rgba(200,171,112,.33); }
.orbit-axis { position: absolute; left: 50%; top: 0; height: 100%; width: 1px; background: linear-gradient(transparent, rgba(200,171,112,.28), transparent); transform: rotate(45deg); }
.axis-two { transform: rotate(-45deg); }
.orbit-core { position: absolute; inset: 42%; display: grid; place-items: center; border: 1px solid var(--gold-soft); border-radius: 50%; background: rgba(7,19,16,.75); box-shadow: 0 0 60px rgba(200,171,112,.09); }
.orbit-core span { color: var(--gold); font-family: "DM Sans", sans-serif; font-size: clamp(18px, 2vw, 30px); font-weight: 300; }
.orbit-node { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px rgba(200,171,112,.6); }
.node-one { top: 14%; left: 18%; }
.node-two { right: 3.5%; top: 62%; }
.node-three { left: 38%; bottom: 1%; width: 4px; height: 4px; }
.orbit-outer { animation: rotate 30s linear infinite; }
.orbit-outer::before { content: ""; position: absolute; top: 9%; right: 19%; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.vision { display: grid; grid-template-columns: 90px 1fr; gap: 5vw; padding: clamp(75px, 10vw, 150px) 0; border-top: 1px solid var(--line); }
.vision-number { color: var(--gold-soft); font-family: "DM Sans", sans-serif; font-size: 11px; letter-spacing: .16em; }
.vision-copy { max-width: 1100px; }
.vision-statement { margin: 0; color: #9da59f; font-family: "DM Sans", sans-serif; font-size: clamp(25px, 3.15vw, 48px); font-weight: 300; line-height: 1.37; letter-spacing: -.025em; }
.vision-statement span { color: var(--ink); }

.site-footer { min-height: 150px; padding: 35px clamp(24px, 5.5vw, 96px); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.coming-soon { margin: 0; font-family: "DM Sans", sans-serif; font-size: clamp(17px, 1.5vw, 22px); font-weight: 300; }
.coming-soon::after { content: ""; display: inline-block; width: 38px; height: 1px; margin: 0 0 5px 16px; background: var(--gold); }
.footer-meta { display: flex; align-items: center; gap: 18px; color: #7f8882; font-size: 9px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.meta-divider { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-soft); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .26s; }

@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 0 7px rgba(200,171,112,0); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 850px) {
  .site-header { height: 88px; }
  .header-status span:last-child { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 74px 0 90px; }
  .orbit-visual { position: absolute; width: 360px; right: -190px; top: 120px; opacity: .32; }
  .hero-copy { position: relative; z-index: 1; }
  .intro { max-width: 570px; }
  .vision { grid-template-columns: 1fr; gap: 25px; }
  .vision-number { display: none; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 520px) {
  .brand-mark { width: 32px; }
  .brand-name { font-size: 11px; letter-spacing: .18em; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .intro { grid-template-columns: 28px 1fr; gap: 15px; }
  .vision-statement { font-size: 25px; }
  .footer-meta { flex-wrap: wrap; gap: 10px; line-height: 1.7; }
}

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