/* =========================================
   SABINE BÜRGER EMOTIONSDESIGN WORKSHOP LP
   ========================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ---- DESIGN TOKENS ---- */
:root {
  --blush:      #f5e8e4;
  --ivory:      #faf7f0;
  --plum:       #6b2d5e;
  --plum-dark:  #4e1f45;
  --plum-light: #8b3d7e;
  --gold:       #c49a6c;
  --charcoal:   #2c2c2c;
  --warm-gray:  #5c5c5c;
  --mid-gray:   #8a8a8a;
  --white:      #ffffff;
  --border:     #e8ddd8;

  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(107, 45, 94, 0.10);
  --shadow-sm:  0 2px 8px rgba(44, 44, 44, 0.08);
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-blush {
  background: var(--blush);
}

.section-plum {
  background: var(--plum);
  color: var(--white);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: 0.5rem; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1.3;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 45, 94, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 45, 94, 0.45);
}

.btn-submit {
  width: 100%;
  padding: 18px 36px;
  font-size: 1.1rem;
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(196, 154, 108, 0.4);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background: #b8865a;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sticky {
  background: var(--plum);
  color: var(--white);
  width: 100%;
  text-align: center;
  box-shadow: none;
  border-radius: 0;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
}

/* ---- MICROCOPY & PROOF NOTE ---- */
.microcopy {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 0.6rem;
  margin-bottom: 0 !important;
}

.social-proof-note {
  font-size: 0.82rem;
  color: var(--plum);
  font-weight: 600;
  margin-top: 0.4rem;
  margin-bottom: 0 !important;
}

/* ---- SITE HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ---- HERO ---- */
.hero {
  background: var(--ivory);
  padding: 72px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(107, 45, 94, 0.2);
}

.hero h1 {
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-image {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ivory);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---- COUNTDOWN ---- */
.countdown-bar {
  background: var(--plum-dark);
  color: var(--white);
  padding: 20px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 0;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.countdown-unit span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.countdown-unit small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 2px;
}

.countdown-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

/* ---- PAIN SECTION ---- */
.pain {
  background: var(--white);
}

.section-intro {
  color: var(--warm-gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.pain-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 4px solid var(--plum);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.check {
  color: var(--plum);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-close {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
}

.pain-close p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

/* ---- MECHANISM SECTION ---- */
.mechanism-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mechanism-text h2 {
  margin-top: 0.5rem;
}

.mechanism-text p {
  color: var(--warm-gray);
  font-size: 1.05rem;
}

.mechanism-quote {
  background: var(--white);
  border-left: 4px solid var(--plum);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 2rem;
  font-style: italic;
  color: var(--charcoal);
  font-size: 1rem;
}

.mechanism-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--plum);
  font-size: 0.9rem;
  margin-top: 10px;
}

.mechanism-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mechanism-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 18% center;
}

/* ---- OUTCOMES SECTION ---- */
.outcomes {
  background: var(--white);
}

.outcomes > .container > .eyebrow,
.outcomes > .container > h2 {
  text-align: center;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2.5rem;
}

.outcome-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.outcome-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.outcome-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--plum);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}

.outcome-card h3 {
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.outcome-card p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* ---- AGENDA SECTION ---- */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 2.5rem;
}

.agenda-day {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.agenda-day-header {
  display: flex;
  gap: 0;
  flex-direction: column;
}

.agenda-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.agenda-day-label {
  padding: 20px 24px 16px;
}

.tag {
  display: inline-block;
  background: var(--blush);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.agenda-day-label h3 {
  color: var(--charcoal);
  font-size: 1.1rem;
}

.agenda-day > p {
  padding: 0 24px;
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.agenda-list {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agenda-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.agenda-list li::before {
  content: "→";
  color: var(--plum);
  flex-shrink: 0;
  font-weight: 700;
}

.agenda-cta {
  margin-top: 3rem;
  text-align: center;
}

.agenda-cta .microcopy {
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- ABOUT SECTION ---- */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--warm-gray);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--plum);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ---- PROOF SECTION ---- */
.proof {
  text-align: center;
}

.proof > .container > .eyebrow,
.proof > .container > h2 {
  text-align: center;
}

.proof h2 {
  margin-bottom: 2.5rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 3rem;
}

.proof-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-group {
  position: relative;
}

.proof-group img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-group-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.proof-cta {
  text-align: center;
}

.proof-cta .microcopy {
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- FAQ SECTION ---- */
.faq {
  background: var(--white);
}

.faq > .container > .eyebrow,
.faq > .container > h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq > .container > h2 {
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--plum);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.25s;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.open .faq-question {
  color: var(--plum);
}

.faq-item.open .faq-icon {
  background: var(--plum);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--warm-gray);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---- FORM SECTION ---- */
.form-section {
  background: var(--plum);
}

.form-container {
  max-width: 560px;
}

.form-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.form-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  opacity: 0.7;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.field input:invalid:not(:placeholder-shown) {
  border-color: #e87070;
}

.form-error {
  background: rgba(232, 112, 112, 0.2);
  border: 1px solid rgba(232, 112, 112, 0.5);
  border-radius: var(--radius);
  color: #ffb3b3;
  font-size: 0.88rem;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: none;
}

.form-error.visible {
  display: block;
}

.btn-submit {
  margin-top: 8px;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

/* ---- FORM SUCCESS ---- */
.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.success-date {
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  width: 100%;
  margin-bottom: 0;
}

/* ---- STICKY CTA (mobile only) ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  box-shadow: 0 -4px 20px rgba(44, 44, 44, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* ---- TABLET: <= 900px ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-image {
    width: min(100%, 360px);
    max-width: 360px;
    justify-self: center;
    margin: 0 auto;
    order: -1;
  }

  .hero-text {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .mechanism-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mechanism-image {
    max-width: 480px;
  }

  .mechanism-image img {
    height: 320px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    position: static;
    max-width: 380px;
  }

  .about-image img {
    height: 380px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .section {
    padding: 64px 0;
  }
}

/* ---- MOBILE: <= 640px ---- */
@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }

  .site-header {
    padding: 10px 0;
  }

  .logo {
    height: 36px;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero-image {
    display: none;
  }

  .btn {
    padding: 15px 28px;
    font-size: 0.95rem;
  }

  .countdown-inner {
    flex-direction: column;
    gap: 12px;
  }

  .countdown-unit span {
    font-size: 1.6rem;
  }

  .pain-list li {
    padding: 14px 16px;
  }

  .pain-close {
    padding: 24px 20px;
  }

  .about-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Show sticky CTA on mobile */
  .sticky-cta {
    display: block;
  }

  /* Extra bottom padding so sticky CTA doesn't overlap content */
  body {
    padding-bottom: 60px;
  }

  .footer {
    padding-bottom: 80px;
  }
}

/* ---- ACCESSIBILITY ---- */
:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
