:root {
  color-scheme: dark;
  --ink: #fff8ec;
  --muted: rgba(255, 248, 236, 0.74);
  --line: rgba(255, 248, 236, 0.28);
  --gold: #f3bc65;
  --rose: #df7b8b;
  --teal: #22b7aa;
  --shadow: rgba(17, 10, 7, 0.72);
}

* {
  box-sizing: border-box;
}

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

body {
  background: #150f0b;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 248, 236, 0.4);
  text-underline-offset: 0.24em;
}

a:hover {
  text-decoration-color: var(--gold);
}

.page-shell {
  min-height: 100svh;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-art,
.hero-art img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 12, 8, 0.9) 0%, rgba(20, 12, 8, 0.7) 34%, rgba(20, 12, 8, 0.18) 70%),
    linear-gradient(0deg, rgba(17, 10, 7, 0.74) 0%, rgba(17, 10, 7, 0.08) 44%, rgba(17, 10, 7, 0.2) 100%);
}

.hero-content {
  align-self: center;
  width: min(100%, 760px);
  margin-left: clamp(0rem, 6vw, 5rem);
  padding-block: 5rem;
  text-shadow: 0 1.5rem 4rem var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--teal));
  content: "";
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9.25rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  max-width: 38rem;
  margin: 1.65rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.status-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  max-width: 100%;
  margin-top: 2.25rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
  color: rgba(255, 248, 236, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.pulse {
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(34, 183, 170, 0.6);
  animation: pulse 1.8s ease-out infinite;
  flex: 0 0 auto;
}

.site-footer {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  color: rgba(255, 248, 236, 0.76);
  font-size: 0.92rem;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.75rem rgba(34, 183, 170, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 183, 170, 0);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: 1rem;
  }

  .hero-art img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 10, 7, 0.34) 0%, rgba(17, 10, 7, 0.56) 38%, rgba(17, 10, 7, 0.92) 100%),
      linear-gradient(90deg, rgba(17, 10, 7, 0.84), rgba(17, 10, 7, 0.12));
  }

  .hero-content {
    align-self: end;
    margin-left: 0;
    padding-block: 8rem 5.5rem;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5.7rem);
  }

  .status-bar {
    border-radius: 1.25rem;
  }
}

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