:root {
  --navy: #071827;
  --navy-soft: #0d2235;
  --navy-panel: #0b1d2e;
  --gold: #d4af37;
  --gold-light: #f2cf74;
  --ivory: #f4efe3;
  --muted: #aab4bd;
  --line: rgba(212, 175, 55, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: "Segoe UI", Aptos, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 28%),
    radial-gradient(circle at 78% 48%, rgba(212, 175, 55, 0.07), transparent 28%),
    var(--navy);
}

.site-shell::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 8%, black 54%, transparent 96%);
  opacity: 0.11;
  content: "";
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  will-change: transform, opacity;
}

.ambient-one {
  top: -22vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(242, 207, 116, 0.15), transparent 66%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.ambient-two {
  right: 20vw;
  bottom: -34vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  animation: ambient-drift 22s ease-in-out -6s infinite alternate-reverse;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1460px);
  margin: 0 auto;
  padding: 24px 0 8px;
}

.brand {
  display: inline-flex;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 3px;
  background: #10183f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7d2c8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  animation: status-pulse 3s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 118px);
  width: min(100% - 64px, 1460px);
  margin: 0 auto;
  padding: clamp(44px, 7vh, 92px) 0 clamp(54px, 8vh, 110px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform-origin: left;
  animation: line-breathe 6s ease-in-out infinite;
}

h1 {
  max-width: 800px;
  margin: 0;
  color: var(--ivory);
  font-family: "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.55rem, 7.4vw, 7.75rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 span {
  display: block;
  padding-bottom: 0.12em;
  color: transparent;
  background: linear-gradient(100deg, #f8e5ae 4%, var(--gold) 56%, #f5d77e 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: #c9d0d5;
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  font-weight: 350;
  line-height: 1.7;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  margin: 38px 0 0;
  padding: 0;
  color: #e5e0d7;
  list-style: none;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.focus-list li {
  display: flex;
  align-items: center;
}

.focus-list li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 18px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(64vh, 660px);
  perspective: 1000px;
}

.brand-stage::after {
  position: absolute;
  right: 0;
  bottom: 5%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 24px 4px rgba(212, 175, 55, 0.22);
  content: "";
}

.monolith {
  position: absolute;
  width: min(62%, 320px);
  height: 90%;
  border: 1px solid rgba(242, 207, 116, 0.48);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(212, 175, 55, 0.015));
  box-shadow:
    inset 0 0 70px rgba(212, 175, 55, 0.035),
    0 0 70px rgba(212, 175, 55, 0.08);
  transform: rotateY(-8deg) skewY(-1.5deg);
}

.monolith::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 236, 182, 0.12) 50%, transparent 64%);
  content: "";
  animation: sheen 9s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 106%;
  height: 42%;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.2));
  transform: rotate(-12deg);
  animation: orbit-breathe 10s ease-in-out infinite;
}

.orbit-two {
  width: 82%;
  height: 31%;
  border-color: rgba(242, 207, 116, 0.18);
  transform: rotate(19deg);
  animation-delay: -4s;
  animation-duration: 14s;
}

.logo-panel {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(68%, 350px);
  padding: 26px 28px 22px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(7, 24, 39, 0.76);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  animation: panel-float 7s ease-in-out infinite;
}

.logo-panel img {
  display: block;
  width: 100%;
  height: auto;
  margin: 14px 0 12px;
  mix-blend-mode: screen;
}

.logo-kicker,
.logo-caption {
  justify-self: stretch;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.logo-caption {
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  color: #b8c0c7;
  text-align: right;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1460px);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.footer p {
  margin: 0;
  color: #d6d2ca;
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(0.95rem, 1.35vw, 1.14rem);
}

.footer strong {
  color: var(--gold);
  font-weight: 600;
}

.footer > span {
  color: #7f8b95;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes ambient-drift {
  to {
    opacity: 0.72;
    transform: translate3d(-5%, 6%, 0) scale(1.08);
  }
}

@keyframes status-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes line-breathe {
  50% {
    opacity: 0.5;
    transform: scaleX(1.4);
  }
}

@keyframes sheen {
  0%,
  20% {
    opacity: 0;
    transform: translateX(-80%);
  }
  45% {
    opacity: 0.8;
  }
  75%,
  100% {
    opacity: 0;
    transform: translateX(80%);
  }
}

@keyframes orbit-breathe {
  50% {
    opacity: 0.55;
    transform: rotate(-9deg) scale(1.025);
  }
}

@keyframes panel-float {
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .brand-stage {
    min-height: 520px;
  }

  .brand-stage::after {
    right: 8%;
    left: 8%;
  }

  .monolith {
    height: 94%;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .footer {
    width: min(100% - 36px, 1460px);
  }

  .topbar {
    padding-top: 18px;
  }

  .brand {
    width: 72px;
    height: 72px;
  }

  .status {
    max-width: 145px;
    justify-content: flex-end;
    font-size: 0.62rem;
    line-height: 1.45;
    text-align: right;
  }

  .hero {
    gap: 34px;
    padding: 48px 0 58px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  .intro {
    margin-top: 26px;
  }

  .focus-list {
    display: grid;
    margin-top: 30px;
  }

  .focus-list li:not(:last-child)::after {
    width: 24px;
    height: 1px;
    margin: 0 0 0 14px;
  }

  .brand-stage {
    min-height: 430px;
  }

  .logo-panel {
    width: min(72%, 290px);
  }

  .footer {
    align-items: flex-start;
    gap: 22px;
  }

  .footer p {
    max-width: 230px;
    line-height: 1.45;
  }

  .footer > span {
    padding-top: 4px;
    text-align: right;
  }
}

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