:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe2;
  --fg: #1a1614;
  --fg-muted: #6b5e54;
  --accent: #c8572a;
  --accent-warm: #e8845f;
  --surface: #ffffff;
  --border: #ddd5c8;
  --grid-1: #c8572a;
  --grid-2: #2c2420;
  --grid-3: #e8845f;
  --grid-4: #8b7d72;
  --grid-5: #d4c4b0;
  --grid-6: #f0ebe2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

/* Hero */
.hero {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
  font-weight: 300;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28, 24, 20, 0.12);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
}

.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 8px;
}

.manifesto-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--fg);
}

.manifesto-content p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Section Label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Offerings */
.offerings {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.offerings-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offerings-header {
  margin-bottom: 64px;
}

.offerings-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.offering-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.offering-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.offering-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.offering-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 64px;
}

.process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

.process-note {
  margin-top: 40px;
  text-align: center;
}

.process-note p {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Closing */
.closing {
  padding: 100px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
}

.closing-attr {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-meta p {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { order: -1; }
  .manifesto { padding: 72px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-number { font-size: 40px; }
  .offerings { padding: 72px 24px; }
  .offerings-grid { grid-template-columns: 1fr; gap: 20px; }
  .process { padding: 72px 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-number { font-size: 32px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 480px) {
  .hero-img { border-radius: 6px; }
}