/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --terra:   #C8623A;
  --rust:    #A04828;
  --cream:   #F4EEE0;
  --ink:     #2C1A0E;
  --mid:     #6B4232;
  --light:   #FAF7F2;
  --white:   #FFFFFF;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(44,26,14,.10);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--light);
  color: var(--ink);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,98,58,.12);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--terra);
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: .9rem;
}
.nav-links a {
  color: var(--mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--terra) 0%, var(--rust) 100%);
  color: var(--cream);
  text-align: center;
  padding: 96px 5vw 80px;
}
.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { opacity: .75; font-weight: 400; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 36px;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .85rem;
  letter-spacing: .04em;
  font-weight: 600;
}

/* ── Sections ────────────────────────────────────────────────────────── */
section { padding: 72px 5vw; }
.section-label {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Feature grid ────────────────────────────────────────────────────── */
.features { background: var(--white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── About ───────────────────────────────────────────────────────────── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  width: 160px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
@media (max-width: 640px) {
  .about { grid-template-columns: 1fr; }
  .about-img { margin-bottom: 24px; }
}

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, var(--terra) 0%, var(--rust) 100%);
  color: var(--cream);
  text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { opacity: .88; max-width: 480px; margin: 0 auto 32px; }
.btn {
  display: inline-block;
  background: var(--cream);
  color: var(--terra);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(244,238,224,.6);
  text-align: center;
  padding: 32px 5vw;
  font-size: .85rem;
}
footer a {
  color: var(--cream);
  opacity: .8;
  transition: opacity .2s;
}
footer a:hover { opacity: 1; }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  list-style: none;
}

/* ── Privacy page ────────────────────────────────────────────────────── */
.privacy-hero {
  background: linear-gradient(160deg, var(--terra) 0%, var(--rust) 100%);
  color: var(--cream);
  padding: 64px 5vw 48px;
}
.privacy-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
.privacy-hero p { opacity: .8; font-size: .95rem; }

.privacy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 5vw 80px;
}
.privacy-body h2 {
  font-size: 1.25rem;
  margin: 40px 0 10px;
  color: var(--terra);
}
.privacy-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 6px;
}
.privacy-body p, .privacy-body li { font-size: .95rem; color: var(--mid); margin-bottom: 10px; }
.privacy-body ul { padding-left: 20px; margin-bottom: 10px; }
.privacy-body strong { color: var(--ink); }
.privacy-body a { color: var(--terra); text-decoration: underline; }
.privacy-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .9rem;
}
.privacy-body th, .privacy-body td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(200,98,58,.15);
}
.privacy-body th { font-weight: 700; color: var(--ink); background: var(--cream); }
