/* ── Tokens ── */
:root {
  --bg: #faf7f2;
  --bg-alt: #f3ede3;
  --bg-warm: #ede5d8;
  --fg: #1a2820;
  --fg-muted: #5a6b5e;
  --fg-faint: #9aab9f;
  --primary: #1c3328;
  --accent: #c97d35;
  --accent-dark: #a56520;
  --accent-light: #fdf0e0;
  --border: #ddd5c4;
  --border-light: #ece7de;
  --white: #ffffff;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --max-w: 1120px;
  --radius: 6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Shared ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-primary:hover {
  background: #253f33;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28, 51, 40, 0.22);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-img {
  height: 38px;
  width: auto;
  border-radius: 4px;
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-tagline {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: clamp(4rem, 9vw, 7rem) 2rem clamp(5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--border-light);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--primary);
  max-width: 660px;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.hero-social-proof svg { color: var(--accent); }

/* ── Philosophy ── */
.philosophy {
  background: var(--primary);
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.philosophy-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  max-width: 620px;
  letter-spacing: -0.02em;
}
.philosophy-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.82;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.philosophy-text p:last-child {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ── Why FetchUp ── */
.why {
  background: var(--bg);
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-header {
  margin-bottom: 3rem;
}
.why-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 540px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(28, 51, 40, 0.1);
  transform: translateY(-2px);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.why-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.why-card-body p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.72;
}

/* ── How It Works ── */
.how-it-works {
  background: var(--bg-alt);
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.how-it-works-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Features ── */
.features {
  background: var(--bg);
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features-header {
  margin-bottom: 3rem;
  max-width: 600px;
}
.features-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 2rem 1.75rem;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  background: var(--primary);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.closing-meta {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

/* ── Footer ── */
.footer {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img {
  height: 30px;
  width: auto;
  border-radius: 3px;
  opacity: 0.8;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-faint);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 36px 1fr; grid-template-rows: auto auto; }
  .step-connector:last-child { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card:hover { transform: none; }

  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .closing { padding: 4rem 1.5rem; }
  .closing-statement { font-size: 1.9rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-brand { justify-content: center; flex-direction: column; }
  .nav-tagline { display: none; }
}