:root {
  --bg: #F5F0E8;
  --ink: #18150F;
  --muted: #8C7B6B;
  --accent: #B8521A;
  --accent-warm: #D4894A;
  --surface: #EDE8DE;
  --border: #D9D0C3;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px 80px;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184, 82, 26, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(24, 21, 15, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 580px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.cta-primary {
  background: var(--accent);
  color: white;
}

.cta-primary:hover {
  background: #A04818;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 82, 26, 0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cta-secondary:hover {
  color: var(--ink);
  border-color: var(--muted);
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 80px;
  position: relative;
  z-index: 2;
}

.memory-orb {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-layer {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 82, 26, 0.15);
}

.orb-layer-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, rgba(212, 137, 74, 0.08) 0%, transparent 60%);
  animation: pulse-orb 6s ease-in-out infinite;
}

.orb-layer-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, rgba(184, 82, 26, 0.12) 0%, transparent 60%);
  animation: pulse-orb 6s ease-in-out infinite 1s;
}

.orb-layer-3 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 40% 40%, rgba(184, 82, 26, 0.18) 0%, transparent 60%);
  animation: pulse-orb 6s ease-in-out infinite 2s;
}

.orb-center {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(184, 82, 26, 0.3);
}

.orb-label {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* SYNTHESIS */
.synthesis {
  padding: 120px 60px;
  background: var(--ink);
  color: var(--bg);
}

.synthesis-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.synthesis-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.synthesis-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 72px;
  letter-spacing: -0.01em;
}

.synthesis-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.stream { padding: 0; }

.stream-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-warm);
}

.stream h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--bg);
}

.stream p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

/* RECALL */
.recall {
  padding: 120px 60px;
  background: var(--bg);
}

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

.recall-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}

.recall-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.recall-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recall-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recall-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(24, 21, 15, 0.08);
}

.card-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.card-place {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.card-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
}

/* CATEGORIES */
.categories {
  padding: 120px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.categories-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 64px;
  color: var(--ink);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-item:hover {
  border-color: var(--accent);
  background: rgba(184, 82, 26, 0.04);
}

.category-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 60px;
  background: var(--ink);
}

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

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.85);
  text-align: center;
}

/* CLOSING */
.closing {
  padding: 100px 60px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {}

.closing-tagline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

.closing-cta {
  display: inline-flex;
  margin-top: 32px;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.closing-cta:hover {
  background: #A04818;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 82, 26, 0.3);
}

/* FOOTER */
footer {
  padding: 32px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--ink);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 80px 32px;
    gap: 48px;
    min-height: auto;
  }

  .hero-visual {
    padding-left: 0;
  }

  .memory-orb {
    width: 200px;
    height: 200px;
  }

  .orb-layer-1 { width: 200px; height: 200px; }
  .orb-layer-2 { width: 150px; height: 150px; }
  .orb-layer-3 { width: 100px; height: 100px; }

  .synthesis { padding: 80px 32px; }
  .synthesis-streams { grid-template-columns: 1fr; gap: 40px; }

  .recall { padding: 80px 32px; }
  .recall-inner { grid-template-columns: 1fr; gap: 48px; }

  .categories { padding: 80px 32px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .manifesto { padding: 80px 32px; }
  .closing { padding: 80px 32px; }

  footer { padding: 24px 32px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 500px) {
  .hero-headline { font-size: 38px; }
  .category-grid { grid-template-columns: 1fr; }
}