:root {
  --bg: #f3f4ef;
  --ink: #11151d;
  --muted: #5d6575;
  --panel: rgba(255, 255, 255, 0.8);
  --line: rgba(17, 21, 29, 0.14);
  --brand: #c1521f;
  --brand-2: #f0b16a;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(20, 22, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at 20% 20%, #f7ead5 0, var(--bg) 44%, #eceee8 100%);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: #f7c9a9;
  top: -90px;
  right: -70px;
}

.orb-b {
  width: 240px;
  height: 240px;
  background: #d7dfcb;
  bottom: -80px;
  left: -70px;
}

.site-header,
main,
.site-footer {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 0 10px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.9;
}

.hero {
  padding: 38px 0 16px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "IBM Plex Serif", serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  max-width: 64ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 20, 24, 0.12);
}

.btn-solid {
  background: linear-gradient(135deg, var(--brand), #d4783f);
  color: #fff;
}

.btn-outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #ffffff99;
}

.grid-2 {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(6px);
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.card li {
  margin-bottom: 8px;
}

.card a {
  color: #1c2230;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metrics article {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 16px;
  background: #fff9;
}

.site-footer {
  padding: 28px 0 36px;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: #1f293c;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.reveal {
  animation: rise 0.65s ease both;
}

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

@media (max-width: 860px) {
  .grid-2,
  .metrics,
  .list-grid {
    grid-template-columns: 1fr;
  }
}
