:root {
  --bg: #f9f6f0;
  --fg: #1a1713;
  --accent: #a07850;
  --accent-light: #c4a882;
  --warm: #d4c4b0;
  --muted: #7a6e62;
  --surface: #efe9de;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.headline-top { display: block; }
.headline-bottom { display: block; }
.headline-bottom em { font-style: italic; color: var(--accent); }

.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  margin-bottom: 64px;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 16px 40px;
  text-decoration: none;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-primary:hover {
  background: transparent;
  color: var(--accent);
}

.hero-visual { display: flex; gap: 28px; align-items: flex-end; }

.memory-frame {
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--warm);
  flex: 1;
  max-width: 260px;
}
.frame-inner { display: flex; flex-direction: column; gap: 10px; }
.frame-photo { width: 100%; aspect-ratio: 4/3; }
.photo-1 { background: linear-gradient(135deg, #d4b896 0%, #c8a07a 50%, #b88f6a 100%); }
.photo-2 { background: linear-gradient(135deg, #e2d5c3 0%, #d4c4b0 50%, #c4a882 100%); }
.photo-3 { background: linear-gradient(135deg, #c4a882 0%, #b89a70 50%, #a88060 100%); }
.frame-1 { transform: rotate(-2.5deg); }
.frame-2 { transform: translateY(-20px) rotate(1deg); }
.frame-3 { transform: rotate(2deg); }

.frame-caption {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.manifesto { background: var(--fg); color: var(--bg); padding: 120px 10vw; }
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 20px;
}
.manifesto-aside { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(212,196,176,0.2); }
.manifesto-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent-light);
}
.manifesto-tagline em { color: var(--accent-light); }

.howitworks { padding: 120px 10vw; }
.howitworks-header { margin-bottom: 72px; }
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.step { position: relative; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

.stories { background: var(--surface); padding: 120px 10vw; }
.stories .section-label { display: block; margin-bottom: 16px; }
.stories .section-title { margin-bottom: 64px; }

.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.story-card {
  background: var(--bg);
  border: 1px solid var(--warm);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}
.story-card:hover { transform: translateY(-4px); }
.story-icon { color: var(--accent); margin-bottom: 8px; }
.story-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--fg); }
.story-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.story-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--warm);
}

.closing { background: var(--bg); padding: 140px 10vw; overflow: hidden; }
.closing-inner { display: flex; align-items: center; gap: 80px; }
.closing-text { flex: 1; }
.closing-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.3;
}
.closing-highlight { color: var(--accent); font-style: italic; }

.closing-visual { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.closing-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(160,120,80,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.closing-ring { position: absolute; border-radius: 50%; border: 1px solid var(--warm); inset: 0; }
.ring-1 { inset: 0; }
.ring-2 { inset: 30px; }
.ring-3 { inset: 60px; border-color: var(--accent-light); }

footer { background: var(--fg); color: var(--warm); padding: 60px 10vw; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--bg); }
.brand-tagline { font-size: 14px; color: var(--muted); margin-top: 8px; }
.footer-nav-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent-light);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.2s ease;
}
.footer-nav-cta:hover { color: var(--bg); }
.footer-copy { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .hero-visual { flex-wrap: wrap; }
  .closing-inner { flex-direction: column; }
  .closing-visual { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 6vw 40px; }
  .steps { grid-template-columns: 1fr; }
  .howitworks, .manifesto, .stories, .closing { padding: 80px 6vw; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .story-card { padding: 32px; }
}