:root {
  color-scheme: light;
  --bg: #f6efe6;
  --bg-soft: #efe6db;
  --panel: #fff9f3;
  --panel-strong: #f5e9dc;
  --ink: #2a1c1b;
  --muted: #6f5c58;
  --accent: #f4b7c5;
  --accent-strong: #e98aa4;
  --accent-blue: #c7d8ff;
  --accent-gold: #f6d6a3;
  --border: rgba(132, 108, 101, 0.22);
  --shadow: 0 18px 40px rgba(72, 52, 45, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --grid-gap: clamp(16px, 2.8vw, 28px);
  --font-sans: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --font-handwritten: "Caveat", "Segoe Print", "Comic Sans MS", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -10% 0 0 0;
  background: radial-gradient(
      600px 420px at 10% 5%,
      rgba(244, 183, 197, 0.45),
      transparent
    ),
    radial-gradient(
      700px 440px at 90% 0%,
      rgba(199, 216, 255, 0.4),
      transparent
    ),
    radial-gradient(
      700px 480px at 50% 95%,
      rgba(246, 214, 163, 0.35),
      transparent
    );
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.28;
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--accent-strong);
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.shell {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(32px, 6vw, 60px) 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
}

h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

p {
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9c6d0, #f6d7a7);
  color: #2a1c1b;
  font-weight: 600;
  border: 1px solid rgba(137, 98, 93, 0.18);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(72, 52, 45, 0.2);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  box-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}
