:root {
  --ink: #f2efe8;
  --ink-soft: rgba(242, 239, 232, 0.78);
  --ink-muted: rgba(242, 239, 232, 0.55);
  --line: rgba(242, 239, 232, 0.16);
  --surface: #141816;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.18);
  --glow: #2a4038;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(42, 64, 56, 0.75), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(196, 165, 116, 0.12), transparent 50%),
    linear-gradient(165deg, #101412 0%, #1a221e 45%, #121614 100%);
  animation: drift 18s ease-in-out infinite alternate;
}

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

@keyframes drift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.04) translate3d(-1.5%, 1%, 0);
  }
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2rem) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
}

.brand {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  animation: fadein 1.1s ease 200ms both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1 {
  margin: 0.35rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 18ch;
}

.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 36rem;
}

.status {
  margin: 0.35rem 0 0;
  padding: 1rem 1.1rem;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  backdrop-filter: blur(8px);
}

.status li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.status li::before {
  content: "- ";
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
  animation: fadein 1s ease 350ms both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

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

.cta.primary {
  background: var(--ink);
  color: var(--surface);
}

.cta.primary:hover {
  background: #fff;
}

.cta.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.cta.ghost:hover {
  border-color: var(--accent);
}

.note {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  max-width: 34rem;
}

footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.88rem;
}

footer p {
  margin: 0.25rem 0;
}

footer strong {
  color: var(--ink-soft);
  font-weight: 500;
}

.address {
  font-size: 0.82rem;
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
  }

  .cta {
    width: 100%;
  }
}
