:root {
  color-scheme: light;
  --bg: #f4ede2;
  --bg-deep: #d9c0a2;
  --card: rgba(255, 248, 239, 0.8);
  --card-edge: rgba(110, 66, 28, 0.14);
  --text: #1f1309;
  --muted: #5f4737;
  --accent: #c35f1f;
  --accent-soft: rgba(195, 95, 31, 0.16);
  --shadow: 0 24px 70px rgba(72, 35, 8, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 34%),
    radial-gradient(circle at bottom right, rgba(195, 95, 31, 0.18), transparent 25%),
    linear-gradient(135deg, #f8f2e8 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

body::before {
  top: 8vh;
  right: 8vw;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 255, 255, 0.22);
}

body::after {
  left: -4rem;
  bottom: 10vh;
  width: 14rem;
  height: 14rem;
  background: rgba(195, 95, 31, 0.12);
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0;
}

.site-mark,
.site-link,
.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-mark,
.eyebrow {
  color: var(--muted);
}

.site-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 19, 9, 0.18);
  padding-bottom: 0.15rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 3rem);
}

.hero-copy {
  max-width: 34rem;
  animation: rise 800ms ease-out both;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.95;
  font-weight: 700;
}

.logo-stage {
  display: flex;
  justify-content: center;
  animation: rise 950ms ease-out both;
}

.logo-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border-radius: 2.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(247, 236, 220, 0.82));
  border: 1px solid var(--card-edge);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.logo-halo {
  position: absolute;
  inset: 18% 12% auto;
  height: 44%;
  background: radial-gradient(circle, var(--accent-soft) 0%, rgba(195, 95, 31, 0) 70%);
  filter: blur(14px);
  transform: translateY(-8%);
}

.logo-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 1.5rem, 42rem);
    padding-top: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .logo-card {
    width: min(100%, 30rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}