:root {
  --ink: #18201d;
  --paper: #f1ede3;
  --accent: #e4552d;
  --sage: #adb9a7;
  --line: rgba(24, 32, 29, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 clamp(1.35rem, 4vw, 4.75rem);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(24, 32, 29, .045) 50%, transparent 50.1%),
    var(--paper);
}

.grain {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  width: min(36vw, 34rem);
  aspect-ratio: 1;
  top: -13rem;
  right: 8vw;
  background: var(--sage);
  opacity: .7;
  animation: drift 13s ease-in-out infinite alternate;
}

.orb-two {
  width: min(20vw, 17rem);
  aspect-ratio: 1;
  left: -7rem;
  bottom: 10vh;
  border: 1px solid rgba(228, 85, 45, .5);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6rem;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot {
  width: .5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(228, 85, 45, .45);
  animation: pulse 2s infinite;
}

.hero {
  display: flex;
  min-height: calc(100svh - 10.5rem);
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(2.5rem, 5vw, 5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
  color: rgba(24, 32, 29, .64);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: rise .7s ease-out both;
}

.eyebrow-line {
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 1180px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10.6vw, 10.8rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
  animation: rise .85s .08s ease-out both;
}

h1 em {
  color: var(--accent);
  font-weight: 400;
}

.intro {
  max-width: 38rem;
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
  text-wrap: pretty;
  animation: rise .85s .18s ease-out both;
}

footer {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(24, 32, 29, .62);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer p { margin: 0; }

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 .45rem rgba(228, 85, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 85, 45, 0); }
}

@keyframes drift {
  to { transform: translate(2rem, 1.75rem) scale(1.06); }
}

@media (max-width: 760px) {
  .site-shell { background: var(--paper); }
  .topbar { min-height: 5rem; }
  .brand span { display: none; }
  .hero {
    min-height: calc(100svh - 9.25rem);
    justify-content: space-between;
    padding: 3.2rem 0 2.5rem;
  }
  h1 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
    line-height: .87;
  }
  .intro { margin-top: 4rem; }
  footer p:first-child { max-width: 16rem; line-height: 1.5; }
}

@media (max-width: 420px) {
  .status-pill { padding: .55rem .7rem; font-size: .6rem; }
}

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

