:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --fg: #f0ede8;
  --fg-dim: #9a908a;
  --accent: #7a0f1a;
  --accent-light: #a3162a;
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(122, 15, 26, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(122, 15, 26, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

.hero-ornament svg { opacity: 0.7; animation: float 6s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 3rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tagline-line {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--accent-light);
  opacity: 0.8;
}

.hero-vertical-text {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  opacity: 0.2;
  white-space: nowrap;
}

/* ——— MANIFESTO ——— */
.manifesto {
  padding: 8rem 4rem;
  background: var(--bg);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto 5rem;
  text-align: center;
}

.manifesto-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.manifesto-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.manifesto-body p {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.8;
}

/* ——— PROCESS ——— */
.process {
  padding: 8rem 4rem;
  background: #0d0d0d;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1rem;
  color: var(--fg-dim);
  font-style: italic;
  font-family: var(--font-display);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: #0d0d0d;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s ease;
}

.process-card:hover { background: #111111; }

.process-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.process-card-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ——— CURATION ——— */
.curation {
  padding: 8rem 4rem;
  background: var(--bg);
}

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

.curation-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.curation-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.curation-desc {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.curation-metrics {
  display: flex;
  gap: 3rem;
}

.curation-metric {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-light);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

.curation-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.curation-block {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dark-1 { background: #130808; border: 1px solid rgba(122, 15, 26, 0.2); }
.dark-2 { background: #0d080a; border: 1px solid rgba(122, 15, 26, 0.15); }
.dark-3 { background: #0a0d0a; border: 1px solid rgba(122, 15, 26, 0.1); }
.dark-4 { background: #0a0a10; border: 1px solid rgba(122, 15, 26, 0.2); }

.curation-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  opacity: 0.6;
}

/* ——— COMMUNITY ——— */
.community {
  padding: 8rem 4rem;
  background: #0d0d0d;
  text-align: center;
  position: relative;
}

.community::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.community-inner { max-width: 760px; margin: 0 auto; }

.community-icon { margin-bottom: 2.5rem; display: flex; justify-content: center; }

.community-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.community-desc {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.community-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.community-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

.pillar-icon { color: var(--accent); font-size: 0.6rem; }

/* ——— CLOSING ——— */
.closing {
  padding: 10rem 4rem;
  background: var(--bg);
  text-align: center;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

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

.closing-ornament { margin-bottom: 3rem; display: flex; justify-content: center; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-light);
}

/* ——— FOOTER ——— */
.site-footer {
  background: #080808;
  padding: 4rem 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

.footer-meta p {
  font-size: 0.8rem;
  color: var(--fg-dim);
  opacity: 0.5;
  text-align: right;
  line-height: 1.6;
}

.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: var(--fg-dim);
  opacity: 0.3;
  letter-spacing: 0.1em;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-ornament { display: none; }
  .hero-content { padding: 5rem 2rem 4rem; }
  .hero-vertical-text { display: none; }

  .manifesto,
  .process,
  .curation,
  .community,
  .closing { padding: 5rem 2rem; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .curation-inner { grid-template-columns: 1fr; gap: 3rem; }
  .curation-visual { display: none; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .curation-metrics { flex-direction: column; gap: 1.5rem; }
}
