:root {
  --bg: #f5efe5;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-soft: rgba(255, 248, 239, 0.92);
  --text: #1f1a16;
  --muted: #6d6258;
  --line: rgba(210, 141, 27, 0.18);
  --accent: #d28d1b;
  --accent-soft: rgba(210, 141, 27, 0.12);
  --shadow: 0 28px 60px rgba(54, 38, 18, 0.12);
  --radius-xl: 34px;
  --max-width: 1180px;
}

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

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(210, 141, 27, 0.11), transparent 26%),
    radial-gradient(circle at bottom left, rgba(36, 33, 29, 0.05), transparent 28%),
    linear-gradient(180deg, #f8f3ea 0%, #f5efe5 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 62px);
  padding: clamp(18px, 4vw, 36px) 0 clamp(28px, 5vw, 60px);
}

.hero-card {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(100%, 940px);
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-logo {
  width: min(100%, 560px);
  margin-top: 8px;
}

h1 {
  margin: 0;
  font-family: "Darumadrop One", cursive;
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  line-height: 1;
  white-space: nowrap;
}

.lead,
.body-copy {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.status-pill,
.subtle-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.status-pill {
  color: #fdf9f1;
  background: #24211d;
  font-family: "Darumadrop One", cursive;
  font-size: 1.05rem;
}

.subtle-note {
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 18px;
  }

  h1 {
    white-space: normal;
  }

  .hero-card {
    padding: 24px 20px 28px;
    border-radius: 26px;
  }

  .lead,
  .body-copy {
    max-width: 32ch;
  }
}
