:root {
  --bg: #f4efe9;
  --ink: #14120f;
  --muted: #5e5b56;
  --accent: #c46b2c;
  --accent-2: #1f6f62;
  --paper: #fff8f0;
  --shadow: rgba(20, 18, 15, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #f9f2e7 0%, #f4efe9 45%, #efe6dd 100%);
  min-height: 100vh;
}

body.reduce-motion * {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
}

header {
  position: relative;
  z-index: 2;
  padding: 28px 6vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
}

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

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 6vw 60px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3vw + 2rem, 4.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(196, 107, 44, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover { transform: translateY(-2px); }

.hero-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-card .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(20, 18, 15, 0.08);
}

.stat strong {
  font-size: 1.1rem;
}

.section {
  position: relative;
  z-index: 2;
  padding: 40px 6vw 80px;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(20, 18, 15, 0.08);
  border: 1px solid rgba(20, 18, 15, 0.05);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 98, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.process {
  display: grid;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fffaf3;
  border-radius: 16px;
  border: 1px solid rgba(20, 18, 15, 0.08);
}

.process-step span {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.cta {
  background: linear-gradient(120deg, #1f6f62, #144a42);
  color: white;
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  gap: 16px;
  box-shadow: 0 26px 60px rgba(20, 18, 15, 0.2);
}

.cta a { border-color: white; color: white; }

footer {
  padding: 40px 6vw;
  color: var(--muted);
  font-size: 0.95rem;
}

.float-shape {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(196, 107, 44, 0.12);
  top: -80px;
  right: 6vw;
  filter: blur(2px);
  animation: drift 10s ease-in-out infinite;
}

.float-shape.two {
  width: 180px;
  height: 180px;
  background: rgba(31, 111, 98, 0.16);
  top: 420px;
  left: 4vw;
  animation-delay: 1s;
}

@keyframes drift {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(18px); }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.7s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.15s; }
.reveal.delay-2 { animation-delay: 0.3s; }
.reveal.delay-3 { animation-delay: 0.45s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  nav { display: none; }
  .hero { padding-top: 48px; }
  .cta { padding: 32px; }
  .float-shape { display: none; }
}
