:root {
  --bg: #f7f2ec;
  --bg-warm: #ede4d8;
  --fg: #2d3a2e;
  --accent: #c4796b;
  --accent-dark: #8b6f5c;
  --fg-light: #5c4a3a;
  --white: #ffffff;
  --border: rgba(45, 58, 46, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,121,107,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding: 80px 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-light);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
  opacity: 0.7;
}

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid rgba(139,111,92,0.3);
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.face-illustration {
  width: 100%;
  max-width: 300px;
}

.face-illustration svg { width: 100%; height: auto; }

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--fg);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 8px;
  gap: 2px;
}

.hero-badge span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-bottom-bar {
  border-top: 1px solid var(--border);
  padding: 20px 80px;
  display: flex;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-light);
  font-weight: 400;
}

/* Sections shared */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 56px;
}

/* Philosophy */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 80px;
}

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

.philosophy-quote {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.philosophy-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.85;
  font-weight: 400;
}

.philosophy-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.philosophy-item { display: flex; flex-direction: column; gap: 12px; }

.philo-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.philosophy-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bg);
}

.philosophy-item p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.7;
}

/* Exercises */
.exercises { padding: 100px 80px; background: var(--bg); }
.exercises-inner { max-width: 1200px; margin: 0 auto; }

.exercise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.exercise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exercise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,58,46,0.08);
}

.exercise-icon { margin-bottom: 4px; }
.exercise-icon svg { width: 48px; height: 48px; }

.exercise-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}

.exercise-card p {
  font-size: 0.85rem;
  color: var(--fg-light);
  line-height: 1.6;
}

.exercise-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* Formats */
.formats { padding: 100px 80px; background: var(--bg-warm); }
.formats-inner { max-width: 1200px; margin: 0 auto; }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.format-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.format-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.format-icon-card { display: flex; justify-content: flex-start; }

.format-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}

.format-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.format-desc { font-size: 0.85rem; color: var(--fg-light); line-height: 1.6; }

.format-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.format-features li {
  font-size: 0.82rem;
  color: var(--fg-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.format-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%23c4796b' stroke-width='1.2' fill='none'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23c4796b' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-top: 2px;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg);
}
.success-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.success-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.success-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.success-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.success-body {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.delivery-form { display: flex; flex-direction: column; gap: 0; }
.form-group { text-align: left; margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-light);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); }
.btn-deliver {
  padding: 15px 32px;
  background: var(--fg);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-deliver:hover { background: var(--accent); transform: translateY(-1px); }
.btn-deliver:active { transform: translateY(0); }
.btn-deliver:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--fg-light); margin-top: 12px; opacity: 0.7; }
.success-footer { margin-top: 40px; }
.back-link { font-size: 0.85rem; color: var(--fg-light); text-decoration: none; }
.back-link:hover { color: var(--fg); }

/* Buy buttons */
.btn-buy {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--fg);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-buy:hover { background: var(--accent); transform: translateY(-1px); }
.btn-buy:active { transform: translateY(0); }

.format-card { position: relative; }

/* Manifesto */
.manifesto {
  padding: 100px 80px;
  background: var(--bg);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 32px;
}

.manifesto-body { display: flex; flex-direction: column; gap: 16px; }

.manifesto-body p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.75;
}

.evidence-block {
  background: var(--fg);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.evidence-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.evidence-item { display: flex; flex-direction: column; gap: 8px; }

.evidence-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.evidence-item p {
  font-size: 0.82rem;
  color: rgba(247,242,236,0.65);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 80px;
  background: var(--accent);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.closing-rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 32px auto;
}

.closing-message p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* Footer */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-meta p {
  font-size: 0.78rem;
  opacity: 0.45;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 40px 40px; gap: 40px; }
  .hero-text { text-align: left; }
  .hero-visual { order: -1; }
  .hero-bottom-bar { padding: 20px 40px; gap: 20px; }
  .philosophy { padding: 80px 40px; }
  .philosophy-three { grid-template-columns: 1fr; gap: 28px; }
  .exercises { padding: 80px 40px; }
  .exercise-grid { grid-template-columns: 1fr; }
  .formats { padding: 80px 40px; }
  .formats-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 40px; }
  .footer { padding: 48px 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .bar-item span { display: none; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 40px 24px 32px; }
  .hero-bottom-bar { padding: 16px 24px; gap: 16px; }
  .philosophy, .exercises, .formats, .manifesto, .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
  .bar-item { gap: 6px; }
}