/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #1a1a2e;
  --ink-muted: #5a5a7a;
  --accent: #e8920c;
  --accent-dark: #c97a08;
  --border: #e8e4de;
  --navy: #1a1a2e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── Navigation ── */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--ink);
  color: #f5f5f5;
  padding: 5rem 2rem;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto .section-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  color: #b0b0c8;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.callout-box {
  background: var(--accent);
  padding: 2rem;
  border-radius: 2px;
}

.callout-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.callout-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
}

/* ── Section shared ── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 2.5rem;
}

.centered { text-align: center; }

/* ── Delivers ── */
.delivers {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.delivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border);
}

.deliver-card {
  padding: 2rem 1.75rem;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  background: var(--surface);
  transition: background 0.2s;
}

.deliver-card:nth-child(3n) { border-right: none; }
.deliver-card:nth-child(n+4) { border-bottom: none; }
.deliver-card:hover { background: #fffbf5; }

.deliver-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.deliver-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.deliver-card p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── Guarantee ── */
.guarantee {
  background: #f0ebe3;
  padding: 5rem 2rem;
}

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.guarantee-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.guarantee-sub {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
}

.pricing-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.pricing-divider {
  font-size: 1.5rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-top: -0.4rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ── Closing ── */
.closing {
  background: var(--ink);
  padding: 6rem 2rem;
  text-align: center;
}

.closing-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.closing-sub {
  color: #9898b8;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-link:hover { color: rgba(255,255,255,0.7); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-stats { gap: 2rem; }
  .stat-num { font-size: 2rem; }

  .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto { padding: 4rem 1.5rem; }

  .delivers { padding: 4rem 1.5rem; }
  .delivers-grid { grid-template-columns: 1fr 1fr; }
  .deliver-card:nth-child(3n) { border-right: 1.5px solid var(--border); }
  .deliver-card:nth-child(2n) { border-right: none; }
  .deliver-card:nth-child(n+4) { border-bottom: 1.5px solid var(--border); }
  .deliver-card:nth-last-child(-n+2) { border-bottom: none; }

  .guarantee { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }

  .nav { padding: 1rem 1.5rem; }
  .footer { padding: 1rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
  .hero-grid-bg { display: none; }
}

@media (max-width: 480px) {
  .delivers-grid { grid-template-columns: 1fr; }
  .deliver-card { border-right: none !important; }
  .deliver-card:last-child { border-bottom: none !important; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
}