/* Base Reset & Variables */
:root {
  --bg: #F8F1EC;
  --fg: #2A1F1A;
  --accent: #C4722A;
  --accent-warm: #D4916A;
  --accent-deep: #8B4E1A;
  --muted: #8C6E5A;
  --sand: #E8DDD4;
  --cream-dark: #EFE6DE;
  --white: #FFFFFF;
  --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;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: rgba(248, 241, 236, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 114, 42, 0.12);
}

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

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-alif {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--accent); }

/* ─── Section Commons ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ─── Manifesto ─── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-letter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alif-glyph {
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
}

.alif-glyph::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(196, 114, 42, 0.15) 0%, transparent 70%);
  transform: scale(1.5);
}

.manifesto-text {}

.overline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.manifesto-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(196, 114, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Journey ─── */
.journey {
  padding: 6rem 3rem;
  background: var(--cream-dark);
}

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

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.journey-step {
  position: relative;
  padding-top: 1rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.step-ornament {
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1rem;
}

.step-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Modalities ─── */
.modalities {
  padding: 6rem 3rem;
  background: var(--bg);
}

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

.mod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.mod-card {
  padding: 2rem 0;
  border-top: 1px solid var(--sand);
}

.mod-icon {
  margin-bottom: 1.2rem;
}

.mod-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.8rem;
}

.mod-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Space ─── */
.space {
  padding: 6rem 3rem;
  background: var(--fg);
  color: var(--bg);
}

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

.space-content .section-label { color: var(--accent-warm); }
.space-content .section-heading { color: var(--bg); }

.space-body {
  font-size: 1rem;
  color: rgba(248, 241, 236, 0.65);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.space-detail {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(248, 241, 236, 0.15);
  padding-top: 2rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.4rem;
}

.detail-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bg);
}

/* Orb visual */
.space-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 114, 42, 0.2);
  animation: pulse-ring 4s ease-in-out infinite;
}

.orb-ring-1 {
  width: 120px; height: 120px;
  animation-delay: 0s;
  border-color: rgba(196, 114, 42, 0.25);
}

.orb-ring-2 {
  width: 170px; height: 170px;
  animation-delay: 0.8s;
  border-color: rgba(196, 114, 42, 0.15);
}

.orb-ring-3 {
  width: 220px; height: 220px;
  animation-delay: 1.6s;
  border-color: rgba(196, 114, 42, 0.08);
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}

.orb-core {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at center, rgba(196, 114, 42, 0.3), rgba(196, 114, 42, 0.05));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-glyph {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-warm);
  opacity: 0.9;
}

/* ─── Closing ─── */
.closing {
  padding: 7rem 3rem;
  background: var(--cream-dark);
}

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

.closing-symbol {
  margin-bottom: 3rem;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 2rem;
  quotes: none;
}

.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── Footer ─── */
.site-footer {
  padding: 4rem 3rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--sand);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-alif {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--sand);
  color: rgba(42, 31, 26, 0.4);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-nav { gap: 1.5rem; }
  .manifesto { padding: 7rem 1.5rem 4rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .alif-glyph { font-size: 8rem; }
  .manifesto-headline { font-size: 2rem; }
  .journey { padding: 4rem 1.5rem; }
  .journey-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .modalities { padding: 4rem 1.5rem; }
  .mod-grid { grid-template-columns: 1fr; }
  .space { padding: 4rem 1.5rem; }
  .space-inner { grid-template-columns: 1fr; gap: 3rem; }
  .space-visual { display: none; }
  .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: 0.75rem; }
  .space-detail { flex-direction: column; gap: 1.5rem; }
}