@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;700&display=swap");

:root {
  --sand-100: #f8f3e8;
  --sand-200: #eaddc3;
  --sand-300: #d7c3a1;
  --ink-900: #1c1914;
  --ink-700: #3d372d;
  --ink-500: #665d51;
  --gold-500: #b88a3b;
  --gold-600: #9f7428;
  --card: #fffdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink-900);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, #fff9eb 0%, transparent 36%),
    radial-gradient(circle at 94% 82%, #f7e6c7 0%, transparent 42%),
    linear-gradient(130deg, var(--sand-100), var(--sand-200));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(28, 25, 20, 0.08) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  opacity: 0.22;
}

.hero {
  width: min(980px, calc(100% - 2rem));
  margin: 2rem auto 1rem;
  background: color-mix(in srgb, var(--card) 93%, white);
  border: 1px solid var(--sand-300);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(26, 22, 15, 0.14);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  animation: rise-in 700ms ease-out both;
}

.badge {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--gold-600);
}

h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 6.4vw, 4rem);
  line-height: 0.95;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--ink-900);
}

.lead {
  max-width: 65ch;
  margin: 0.9rem 0 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.pillar {
  background: linear-gradient(150deg, #fffef9, #f7ebd5);
  border: 1px solid var(--sand-300);
  border-radius: 16px;
  padding: 0.95rem;
}

.pillar h2 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
}

.pillar p {
  margin: 0.45rem 0 0;
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta {
  border: none;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-500), var(--gold-600));
  color: #fffef9;
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 20px rgba(140, 96, 20, 0.28);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(140, 96, 20, 0.34);
}

.result {
  min-height: 1.4rem;
  margin: 0.9rem 0 0;
  color: var(--ink-700);
  font-weight: 500;
}

.footer-note {
  margin: 1rem 0 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.site-footer {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  color: var(--ink-500);
  font-size: 0.82rem;
}

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

@media (max-width: 780px) {
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 1rem;
  }
}
