@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --beige-light: #FAF6F1;
  --beige: #F0E6D8;
  --beige-medium: #E3D5C3;
  --beige-dark: #C9B99A;
  --rosa-light: #F8E4EC;
  --rosa: #E8B4C8;
  --rosa-medium: #D4899F;
  --rosa-dark: #B86B82;
  --text-dark: #3A2D2D;
  --text-medium: #6B5656;
  --text-light: #9A8585;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(58, 45, 45, 0.06);
  --shadow-medium: 0 8px 30px rgba(58, 45, 45, 0.1);
  --shadow-hover: 0 12px 40px rgba(58, 45, 45, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background-color: var(--beige-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 185, 154, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rosa-dark);
  letter-spacing: 0.02em;
}

.nav-logo span {
  font-weight: 400;
  color: var(--text-medium);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rosa-dark);
  background: var(--rosa-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rosa-light) 50%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(232, 180, 200, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(240, 230, 216, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-text .label {
  display: inline-block;
  background: var(--rosa-light);
  color: var(--rosa-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-text h1 em {
  color: var(--rosa-dark);
  font-style: italic;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image .image-frame {
  width: 420px;
  height: 520px;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--white);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rosa-medium), var(--rosa-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184, 107, 130, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 107, 130, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--rosa-dark);
  border: 2px solid var(--rosa);
}

.btn-secondary:hover {
  background: var(--rosa-light);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── IMAGE PLACEHOLDERS ─── */
.img-placeholder {
  background: linear-gradient(135deg, var(--beige) 0%, var(--rosa-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  aspect-ratio: 3/4;
  border: 1px solid rgba(200, 185, 154, 0.12);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.img-placeholder span {
  opacity: 0.6;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 0;
}

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

.section-rosa {
  background: linear-gradient(135deg, var(--rosa-light) 0%, var(--beige-light) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header .label {
  display: inline-block;
  background: var(--rosa-light);
  color: var(--rosa-dark);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(200, 185, 154, 0.12);
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image .img-placeholder {
  min-height: 240px;
}

.card-body {
  padding: 1.8rem;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.card-body p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.card-tag {
  display: inline-block;
  background: var(--rosa-light);
  color: var(--rosa-dark);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─── ABOUT SECTION (Startseite) ─── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview .image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 3px solid var(--white);
}

.about-preview .image-wrapper .img-placeholder {
  min-height: 450px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about-text .highlight {
  border-left: 3px solid var(--rosa);
  padding-left: 1.2rem;
  font-style: italic;
  color: var(--text-medium);
  margin: 1.5rem 0;
}

/* ─── FEATURES / SERVICES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(200, 185, 154, 0.12);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--rosa-dark);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
}

/* ─── BOOK SHOWCASE ─── */
.book-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(200, 185, 154, 0.12);
}

.book-cover {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 2/3;
}

.book-cover .img-placeholder {
  min-height: 100%;
}

.book-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.book-info .book-meta {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.book-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* ─── COACHING ─── */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.coaching-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(200, 185, 154, 0.12);
  position: relative;
  overflow: hidden;
}

.coaching-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rosa), var(--rosa-dark));
}

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

.coaching-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.coaching-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.coaching-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.coaching-card ul li {
  padding: 0.3rem 0;
  color: var(--text-medium);
  font-size: 0.92rem;
  padding-left: 1.5rem;
  position: relative;
}

.coaching-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosa);
}

/* ─── PODCAST ─── */
.podcast-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.podcast-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 1;
}

.podcast-cover .img-placeholder {
  min-height: 100%;
}

.podcast-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.podcast-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.podcast-topics {
  list-style: none;
  margin-bottom: 2rem;
}

.podcast-topics li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--beige);
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.podcast-topics li svg {
  width: 18px;
  height: 18px;
  color: var(--rosa-medium);
  flex-shrink: 0;
}

.episode-list {
  margin-top: 3rem;
}

.episode-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(200, 185, 154, 0.12);
}

.episode-card:hover {
  box-shadow: var(--shadow-hover);
}

.episode-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--rosa);
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}

.episode-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.episode-content p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ─── CONTACT ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--rosa-light), var(--beige));
  border-radius: var(--radius);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 185, 154, 0.2);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-dark);
  flex-shrink: 0;
}

.contact-detail .icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail .info h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail .info p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--beige-light);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rosa);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 180, 200, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--rosa);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--rosa-dark);
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--rosa);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* ─── TV PAGE ─── */
.tv-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tv-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rosa);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 2rem;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
  padding-left: 2.5rem;
}

.timeline-item:nth-child(odd) {
  padding-right: 2.5rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rosa);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline-item:nth-child(odd)::after {
  right: -7px;
}

.timeline-item:nth-child(even)::after {
  left: -7px;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 185, 154, 0.12);
}

.timeline-content .year {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--rosa-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-medium);
}

/* ─── PAGE HERO (Sub-pages) ─── */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--rosa-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(232, 180, 200, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--rosa-medium), var(--rosa-dark));
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--rosa-dark);
  position: relative;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ─── ABOUT PAGE ─── */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.about-sidebar .image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 3px solid var(--white);
  margin-bottom: 2rem;
}

.about-sidebar .image-wrapper .img-placeholder {
  min-height: 500px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--rosa-dark);
  font-weight: 600;
}

.stat-card .label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--rosa-dark);
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text .btn-group {
    justify-content: center;
  }

  .hero-image .image-frame {
    width: 320px;
    height: 400px;
  }

  .about-preview,
  .about-full,
  .podcast-hero,
  .book-showcase {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--beige);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .card-grid,
  .features-grid,
  .coaching-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .book-showcase {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .book-cover {
    max-width: 250px;
    margin: 0 auto;
  }

  .tv-timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 3rem;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item::after,
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 13px;
    right: auto;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-image .image-frame {
    width: 260px;
    height: 340px;
  }
}
