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

:root {
  --bg: #F5F0E8;
  --bg-card: #FDFBF7;
  --fg: #1A1714;
  --fg-muted: #6B5E52;
  --accent: #B85C38;
  --accent-light: #E8C5A8;
  --border: #DDD5C8;
  --white: #FDFBF7;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === SECTIONS === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.section-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
}
.hero-meta-sep {
  color: var(--border);
}

/* Hero illustration */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}
.frame-stack {
  position: relative;
  width: 320px;
  height: 380px;
}
.frame {
  position: absolute;
  border: 1.5px solid var(--border);
  border-radius: 4px;
}
.frame-1 {
  width: 220px; height: 310px;
  top: 0; left: 20px;
  background: var(--fg);
  transform: rotate(-6deg);
  display: flex; align-items: center; justify-content: center;
}
.frame-2 {
  width: 220px; height: 310px;
  top: 30px; left: 60px;
  background: var(--accent-light);
  transform: rotate(2deg);
}
.frame-3 {
  width: 220px; height: 310px;
  top: 60px; left: 100px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(26, 23, 20, 0.15);
}
.film-glow {
  position: absolute;
  bottom: 40px;
  left: 80px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}

/* === DLACZEGO === */
.dlaczego {
  padding: 100px 0;
  background: var(--fg);
  color: var(--bg);
}
.dlaczego .section-label { color: var(--accent-light); }
.dlaczego .section-title { color: var(--bg); }
.dlaczego .section-body { color: rgba(245, 240, 232, 0.65); }
.dlaczego-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}
.dlaczego-card {
  padding: 48px 40px;
  border-right: 1px solid rgba(245, 240, 232, 0.15);
}
.dlaczego-card:last-child { border-right: none; }
.dlaczego-icon {
  margin-bottom: 20px;
  color: var(--accent-light);
}
.dlaczego-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 12px;
}
.dlaczego-card p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
}

/* === FORMAT / STEPS === */
.format {
  padding: 100px 0;
  background: var(--bg-card);
}
.format .section-title { margin-bottom: 64px; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* === SESSIONY === */
.sessiony {
  padding: 100px 0;
  background: var(--bg);
}
.sessiony .section-title { margin-bottom: 56px; }
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  position: relative;
  transition: box-shadow 0.2s;
}
.session-card:hover { box-shadow: 0 8px 32px rgba(26, 23, 20, 0.08); }
.session-card--full {
  opacity: 0.55;
}
.session-film {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.session-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}
.session-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.spot-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}
.spot-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.spot-text {
  font-size: 12px;
  color: var(--fg-muted);
}
.session-full-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
}

/* === ONA === */
.ona {
  padding: 100px 0;
  background: var(--fg);
}
.ona-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.ona-portrait { }
.portrait-frame {
  width: 280px;
  height: 340px;
  background: var(--accent-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}
.portrait-placeholder svg { width: 100%; height: 100%; }
.ona-content .section-label { color: var(--accent-light); }
.ona-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}
.ona-title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 28px;
}
.ona-bio {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.ona-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--bg);
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  margin-top: 24px;
}

/* === CLOSING === */
.closing {
  padding: 120px 0;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}
.closing-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.value { text-align: center; }
.value-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.value-desc {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
}
.value-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === FOOTER === */
.footer {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-headline { font-size: 44px; }
  .hero-lede { max-width: 100%; margin: 0 auto 32px; }
  .hero-meta { justify-content: center; }
  .hero-illustration { display: none; }
  .section-inner { padding: 0 24px; }
  .dlaczego-grid { grid-template-columns: 1fr; }
  .dlaczego-card { border-right: none; border-bottom: 1px solid rgba(245, 240, 232, 0.15); }
  .sessions-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 36px; }
  .ona-inner { grid-template-columns: 1fr; gap: 40px; }
  .ona-name { font-size: 36px; }
  .closing-values { flex-direction: column; gap: 24px; }
  .value-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .dlaczego, .format, .sessiony, .ona, .closing { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .step { grid-template-columns: 1fr; }
  .step-number { font-size: 28px; }
}