/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #18130f;
  --surface: #211b14;
  --surface-2: #2a2318;
  --text: #f2ece0;
  --text-muted: #a08e74;
  --accent: #c75d35;
  --accent-2: #8b4f2b;
  --warm-gold: #d4a85a;
  --border: rgba(242, 236, 224, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(199, 93, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero-headline .line-one,
.hero-headline .line-two,
.hero-headline .line-three {
  display: block;
  opacity: 0.6;
}

.hero-headline .line-four {
  display: block;
  font-style: italic;
  color: var(--warm-gold);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
}

/* Hero Visual — CSS Orb */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199, 93, 53, 0.15);
}

.orb-ring-1 { width: 340px; height: 340px; animation: ring-pulse 4s ease-in-out infinite; }
.orb-ring-2 { width: 240px; height: 240px; animation: ring-pulse 4s ease-in-out infinite 0.5s; border-color: rgba(212, 168, 90, 0.12); }
.orb-ring-3 { width: 160px; height: 160px; animation: ring-pulse 4s ease-in-out infinite 1s; border-color: rgba(199, 93, 53, 0.2); }

.orb-core {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8a060, var(--accent), var(--accent-2));
  box-shadow: 0 0 60px rgba(199, 93, 53, 0.4), 0 0 120px rgba(199, 93, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.orb-sun {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 240, 220, 0.9);
  box-shadow: 0 0 20px rgba(255, 240, 220, 0.8);
}

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

/* === JOURNEY === */
.journey {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
}

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

.journey-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.journey-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 5rem;
  max-width: 480px;
}

.journey-steps {
  display: flex;
  gap: 0;
}

.step {
  flex: 1;
  padding-right: 3rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

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

.step-divider {
  width: 1px;
  background: var(--border);
  margin: 0 3rem;
  align-self: stretch;
}

/* === STRUCTURE === */
.structure {
  padding: 8rem 4rem;
  background: var(--surface);
}

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

.structure-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.day-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.day-phase {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface-2);
  transition: border-color 0.3s ease;
}

.day-phase:hover { border-color: rgba(199, 93, 53, 0.3); }

.phase-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.phase-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.phase-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.phase-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.day-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  padding-top: 4rem;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--warm-gold);
  line-height: 1.4;
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
}

.philosophy-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

/* === CLOSING === */
.closing {
  padding: 8rem 4rem 10rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(199, 93, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; }

.closing-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.closing-text em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  padding: 4rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 5rem 2rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-visual { display: none; }
  
  .journey { padding: 5rem 2rem; }
  .journey-steps { flex-direction: column; gap: 3rem; }
  .step-divider { width: 40px; height: 1px; margin: 0; }
  
  .structure { padding: 5rem 2rem; }
  .day-block { grid-template-columns: 1fr; gap: 1rem; }
  .day-divider { display: none; }
  .day-phase { padding: 2rem; }
  
  .philosophy { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem 7rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .step { padding-right: 0; }
}