:root {
  color-scheme: dark;
  --ink: #fffaf0;
  --muted: #d7c8a6;
  --gold: #d9ad5f;
  --gold-light: #f4d692;
  --panel: rgba(11, 14, 25, 0.66);
  --panel-strong: rgba(17, 18, 28, 0.86);
  --line: rgba(244, 214, 146, 0.28);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070812;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(217, 173, 95, 0.18), transparent 28%),
    radial-gradient(circle at 84% 75%, rgba(88, 116, 156, 0.22), transparent 30%),
    #070812;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 4vw, 42px);
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: url("assets/celestial-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.98) contrast(1.08);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 13, 0.88) 0%, rgba(5, 6, 13, 0.72) 39%, rgba(5, 6, 13, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 6, 13, 0.3) 0%, rgba(5, 6, 13, 0.74) 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__name,
.brand__sub {
  display: block;
}

.brand__name {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
}

.brand__sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar__call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(244, 214, 146, 0.38);
  border-radius: 999px;
  background: rgba(13, 15, 25, 0.54);
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.hero__stage {
  align-self: center;
  width: min(1180px, 100%);
  margin: 48px auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.hero__content {
  width: min(760px, 100%);
  padding-block: clamp(36px, 9vh, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: #efe3c6;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.launch-panel {
  width: min(620px, 100%);
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.launch-panel > div {
  padding: clamp(18px, 3vw, 26px);
}

.launch-panel > div + div {
  border-left: 1px solid var(--line);
}

.launch-panel__label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-panel strong,
.launch-panel a {
  display: block;
  color: var(--ink);
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  font-weight: 700;
}

.contact-card {
  width: min(620px, 100%);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: rgba(217, 173, 95, 0.14);
  color: var(--gold-light);
}

address {
  color: #efe3c6;
  font-style: normal;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.6;
}

.portrait-card {
  position: relative;
  justify-self: end;
  width: min(410px, 100%);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 18px 0;
  border: 1px solid rgba(244, 214, 146, 0.3);
  background:
    linear-gradient(180deg, rgba(244, 214, 146, 0.1), rgba(9, 11, 19, 0.62) 52%, rgba(9, 11, 19, 0.9)),
    rgba(8, 10, 18, 0.56);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 214, 146, 0.18);
  pointer-events: none;
}

.portrait-card__halo {
  position: absolute;
  top: 38px;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 214, 146, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 214, 146, 0.2), transparent 57%),
    conic-gradient(from 20deg, transparent, rgba(244, 214, 146, 0.26), transparent 34%, rgba(244, 214, 146, 0.22), transparent 72%);
  filter: blur(0.2px);
}

.portrait-card img {
  position: relative;
  z-index: 1;
  width: min(110%, 450px);
  max-height: 545px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.portrait-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(244, 214, 146, 0.3);
  background: rgba(7, 8, 18, 0.74);
  backdrop-filter: blur(14px);
}

.portrait-card__caption span,
.portrait-card__caption strong {
  display: block;
}

.portrait-card__caption span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-card__caption strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink);
}

.bottom-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 214, 146, 0.3);
  color: var(--muted);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.8rem, 1.4vw, 0.98rem);
  font-weight: 600;
}

.bottom-strip span {
  padding: 18px 16px;
  text-align: center;
}

.bottom-strip span + span {
  border-left: 1px solid rgba(244, 214, 146, 0.18);
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 18px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand {
    gap: 11px;
  }

  .brand__sub {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .topbar__call {
    padding: 0;
    width: 44px;
    overflow: hidden;
    color: transparent;
    position: relative;
  }

  .topbar__call::after {
    content: "Call";
    position: absolute;
    color: var(--gold-light);
    font-size: 0.78rem;
  }

  .hero__content {
    padding-block: 36px 28px;
  }

  .hero__stage {
    margin: 26px 0;
    grid-template-columns: 1fr;
  }

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

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .launch-panel > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-card {
    align-items: flex-start;
  }

  .portrait-card {
    justify-self: stretch;
    width: 100%;
    min-height: 430px;
  }

  .portrait-card img {
    max-height: 410px;
  }

  .bottom-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 0.78rem;
  }

  .bottom-strip span {
    padding: 13px 8px;
  }

  .bottom-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(244, 214, 146, 0.18);
  }

  .bottom-strip span:nth-child(4) {
    border-top: 1px solid rgba(244, 214, 146, 0.18);
  }
}

@media (max-width: 430px) {
  .brand__name {
    max-width: 190px;
  }

  .lede {
    line-height: 1.58;
  }
}
