:root {
  --bg: #fff7ef;
  --paper: rgba(255, 255, 255, 0.72);
  --ink: #211617;
  --muted: #6e5b58;
  --red: #ef3d2f;
  --coral: #ff7a59;
  --yellow: #ffd166;
  --line: rgba(33, 22, 23, 0.08);
  --shadow: 0 24px 60px rgba(109, 44, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 89, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(239, 61, 47, 0.18), transparent 22%),
    linear-gradient(180deg, #fff6ed 0%, #fffdf7 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 239, 0.84);
  border-bottom: 1px solid var(--line);
}
.nav-bar, .nav-links, .brand, .hero-actions, .page-chips, .footer-grid { display: flex; align-items: center; }
.nav-bar { justify-content: space-between; padding: 18px 0; gap: 24px; }
.nav-links { gap: 18px; flex-wrap: wrap; }
.brand { gap: 12px; font-weight: 800; letter-spacing: -0.03em; }
.brand img { width: 38px; height: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #c81915);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button-ghost {
  background: rgba(255,255,255,0.5);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero, .page-hero { padding: 72px 0; }
.hero-grid, .spotlight-grid, .split-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.hero-copy h1, .page-hero h1, .section-heading h2 { margin: 0; line-height: 0.95; letter-spacing: -0.05em; }
.hero-copy h1 { font-size: clamp(3rem, 8vw, 6.6rem); max-width: 10ch; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; line-height: 1.7; }
.eyebrow {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--red);
}
.hero-card-stack { display: grid; gap: 18px; }
.feature-card, .glass-panel, .post-card {
  padding: 26px;
  border-radius: 30px;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.feature-card strong { display: block; margin-top: 12px; font-size: 1.4rem; line-height: 1.2; }
.tilt { transform: rotate(-4deg); }
.coral { transform: translateX(20px); background: linear-gradient(180deg, rgba(255, 122, 89, 0.22), rgba(255,255,255,0.78)); }
.sunset { transform: rotate(3deg); }
.showcase, .spotlight, .journal-preview, .content-section { padding: 24px 0 72px; }
.section-heading { margin-bottom: 28px; }
.service-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-grid article, .post-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.spotlight-grid { background: linear-gradient(135deg, rgba(239, 61, 47, 0.12), rgba(255, 209, 102, 0.15)); padding: 32px; border-radius: 32px; }
.page-chips { flex-wrap: wrap; gap: 14px; }
.page-chips a { padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,0.82); border: 1px solid var(--line); }
.compact { padding-top: 56px; padding-bottom: 32px; }
.prose { font-size: 1.05rem; line-height: 1.8; }
.prose img { border-radius: 24px; margin: 26px 0; box-shadow: var(--shadow); }
.prose h1, .prose h2, .prose h3 { letter-spacing: -0.04em; }
.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.46);
}
.footer-grid { justify-content: space-between; align-items: flex-start; gap: 24px; }
.footer-grid > div { display: grid; gap: 10px; }
.footer-brand { margin-bottom: 10px; }

@media (max-width: 900px) {
  .hero-grid, .spotlight-grid, .split-grid, .service-grid, .post-grid, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .nav-bar, .nav-links { flex-direction: column; align-items: flex-start; }
  .hero-copy h1 { max-width: none; }
}
