@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");

:root {
  color-scheme: light;
  --ink: #20231f;
  --muted: #6d7169;
  --paper: #f4f1eb;
  --line: rgba(32, 35, 31, 0.13);
  --accent: #df6d45;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 20%, rgba(223, 109, 69, 0.1), transparent 28%),
    radial-gradient(circle at 84% 75%, rgba(91, 117, 86, 0.1), transparent 30%),
    var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

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

.site-header {
  height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
}

.status {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: #5f8a57;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(95, 138, 87, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1rem;
  animation: arrive 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intro {
  max-width: 34rem;
  margin: 1.75rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(68vw, 760px);
  aspect-ratio: 1;
  transform: rotate(-12deg) scaleY(0.45);
}

.orbit-two {
  width: min(48vw, 520px);
  aspect-ratio: 1;
  border-color: rgba(223, 109, 69, 0.2);
  transform: rotate(18deg) scaleY(0.5);
}

.site-footer {
  min-height: 76px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 520px) {
  .site-header {
    height: 72px;
  }

  .hero {
    min-height: 390px;
  }

  .orbit-one {
    width: 125vw;
  }

  .orbit-two {
    width: 90vw;
  }

  .site-footer {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }
}
