@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/instrument-serif.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/instrument-serif-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/outfit.woff2") format("woff2");
}

:root {
  --void: #0b0a08;
  --ink: #12110e;
  --cream: #f3eee6;
  --stone: #b7aa97;
  --muted: #8a7e6d;
  --brass: #c4a574;
  --brass-soft: rgba(196, 165, 116, 0.22);
  --line: rgba(243, 238, 230, 0.1);
  --focus: #e8d4b0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--cream);
}

body {
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100dvh;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.55rem 0.9rem;
  background: var(--cream);
  color: var(--void);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
}

.skip:focus {
  top: 1rem;
}

.stage {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 1.15rem 1.2rem 1.35rem;
}

@media (min-width: 720px) {
  .stage {
    padding: 1.5rem 2.25rem 1.6rem;
  }
}

@media (min-width: 1100px) {
  .stage {
    padding: 1.75rem 3rem 1.75rem;
  }
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 118%, rgba(196, 165, 116, 0.16), transparent 58%),
    radial-gradient(ellipse 28% 22% at 28% 104%, rgba(212, 148, 72, 0.14), transparent 70%),
    radial-gradient(ellipse 28% 22% at 72% 104%, rgba(212, 148, 72, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 248, 236, 0.035), transparent 60%),
    var(--void);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("noise.svg");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  background-position: center bottom;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 62%);
}

.horizon {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-soft) 18%, rgba(243, 238, 230, 0.28) 50%, var(--brass-soft) 82%, transparent);
}

.lamps {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  height: 28%;
}

.lamp {
  position: absolute;
  bottom: 0;
  width: 42%;
  height: 100%;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.55;
}

.lamp-a {
  left: 8%;
  background: radial-gradient(circle, rgba(232, 196, 132, 0.28), transparent 68%);
}

.lamp-b {
  right: 8%;
  background: radial-gradient(circle, rgba(232, 196, 132, 0.28), transparent 68%);
}

@media (prefers-reduced-motion: no-preference) {
  .lamp {
    animation: idle 7.5s var(--ease) infinite alternate;
  }

  .lamp-b {
    animation-delay: -2.4s;
  }
}

@keyframes idle {
  from { opacity: 0.38; transform: scale(0.96); }
  to { opacity: 0.62; transform: scale(1.04); }
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand svg {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--brass);
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.2rem 0 3.6rem;
}

.hero {
  max-width: 46rem;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.kicker::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brass);
}

h1 {
  margin: 0 0 1.35rem;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(2.55rem, 9.2vw, 5.65rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 em {
  font-style: italic;
  color: var(--brass);
}

.lede {
  margin: 0 0 2.15rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--stone);
  text-wrap: pretty;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.92rem 1.25rem;
  background: var(--cream);
  color: var(--void);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

.cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.cta:hover {
  background: #fffaf3;
  transform: translateY(-1px);
}

.cta:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
  margin: 2.75rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}

@media (min-width: 560px) {
  .facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fact dt {
  margin: 0 0 0.28rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact dd {
  margin: 0;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.site-footer {
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
}

.disclaimer {
  max-width: 38rem;
}

.place {
  color: var(--stone);
}

@media (max-width: 719px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .hero {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
