/* =================================================================
   RaumWerk Frankfurt - Soft Pastel Design System
   Design Style: Soft Pastel (dreamy, gentle, calming aesthetics)
   ================================================================= */

/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #5a5a5a;
  background: linear-gradient(to bottom, #fef9f5 0%, #fff5f0 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===========================
   SOFT PASTEL COLOR PALETTE
   =========================== */
:root {
  --pastel-sage: #c8d5c5;
  --pastel-peach: #ffd4c8;
  --pastel-lavender: #e8d9f3;
  --pastel-mint: #d4f1e8;
  --pastel-cream: #fef9f5;
  --pastel-rose: #f9e5e5;
  --pastel-sky: #d4e8f5;
  --soft-gray: #8a8a8a;
  --dark-text: #5a5a5a;
  --light-text: #7a7a7a;
  --white: #ffffff;
  --shadow-soft: rgba(200, 200, 220, 0.15);
}

/* ===========================
   TYPOGRAPHY - SOFT & DREAMY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark-text);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--light-text);
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===========================
   HEADER - GENTLE & FLOATING
   =========================== */
header {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-rose) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 2px 8px var(--shadow-soft));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* MAIN NAVIGATION - DESKTOP */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--dark-text);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: var(--pastel-lavender);
  color: var(--dark-text);
  transform: translateY(-2px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pastel-peach);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 80%;
}

/* ===========================
   MOBILE MENU - SMOOTH SLIDE
   =========================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sage) 100%);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(to bottom, var(--pastel-cream) 0%, var(--pastel-lavender) 100%);
  z-index: 2500;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px var(--shadow-soft);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-peach);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--pastel-rose);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--dark-text);
  font-size: 18px;
  padding: 15px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 10px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  transform: translateX(10px);
  background: var(--pastel-sky);
}

/* ===========================
   HERO SECTION - DREAMY
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sky) 50%, var(--pastel-lavender) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

.hero h1 {
  font-size: 48px;
  color: var(--dark-text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-indicators span {
  background: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  color: var(--dark-text);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

/* ===========================
   BUTTONS - SOFT & ROUNDED
   =========================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  color: var(--dark-text);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-soft);
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sage) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  color: var(--dark-text);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-soft);
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
}

/* ===========================
   CARDS & GRIDS - FLEXBOX ONLY
   =========================== */
.services-grid,
.benefits-grid,
.projects-grid,
.testimonials-grid,
.team-grid,
.links-grid,
.methods-grid,
.consultation-grid,
.process-steps,
.philosophy-grid,
.values-grid,
.milestones,
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

/* SERVICE CARDS */
.service-card,
.project-card,
.benefit,
.value,
.team-member,
.link-card,
.method,
.consultation-option {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-sage) 0%, var(--pastel-lavender) 50%, var(--pastel-peach) 100%);
}

.service-card:hover,
.project-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px var(--shadow-soft);
}

.service-card h3,
.project-card h3,
.benefit h3,
.value h4,
.team-member h3 {
  color: var(--dark-text);
  margin-bottom: 12px;
}

.service-card p,
.project-card p,
.benefit p,
.value p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--pastel-sage);
  margin-top: 16px;
  display: block;
}

/* ===========================
   PROCESS STEPS - FLEXBOX
   =========================== */
.step {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  border-radius: 50%;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
}

/* ===========================
   TESTIMONIALS - READABLE
   =========================== */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-cream) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  margin-bottom: 20px;
  position: relative;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.author {
  font-size: 14px;
  font-weight: 600;
  color: var(--soft-gray);
  margin-bottom: 8px;
}

.rating {
  color: var(--pastel-peach);
  font-size: 20px;
}

.trust-badge {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: var(--dark-text);
}

/* ===========================
   FOOTER - SOFT & ORGANIZED
   =========================== */
footer {
  background: linear-gradient(to bottom, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h3 {
  color: var(--dark-text);
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--light-text);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--dark-text);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(90, 90, 90, 0.1);
  padding-top: 24px;
  text-align: center;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-nav a {
  font-size: 12px;
  color: var(--light-text);
}

.legal-nav a:hover {
  color: var(--dark-text);
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-cream) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-soft);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: var(--dark-text);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  color: var(--dark-text);
}

.cookie-reject {
  background: var(--pastel-rose);
  color: var(--dark-text);
}

.cookie-settings {
  background: transparent;
  color: var(--dark-text);
  border: 2px solid var(--pastel-lavender);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

/* ===========================
   INTERNAL PAGES
   =========================== */
.hero-internal {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-lavender) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--pastel-sage);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.subtitle {
  font-size: 18px;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   SECTION VARIATIONS
   =========================== */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
}

/* ===========================
   SPECIAL SECTIONS
   =========================== */
.service-detail,
.project-showcase,
.workshop-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  margin-bottom: 40px;
  position: relative;
}

.service-number,
.project-number,
.workshop-number {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--soft-gray);
  margin-bottom: 16px;
}

/* ===========================
   404 ERROR PAGE
   =========================== */
.error-section {
  text-align: center;
  padding: 80px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thank-you {
  text-align: center;
  padding: 80px 20px;
}

.checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  animation: checkmarkPop 0.5s ease;
}

@keyframes checkmarkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.next-steps {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.next-steps li {
  padding: 12px 0;
  border-bottom: 1px solid var(--pastel-lavender);
}

/* ===========================
   TABLES & LISTS
   =========================== */
.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.hours-table tr {
  background: var(--white);
}

.hours-table td {
  padding: 12px 16px;
  border: 1px solid var(--pastel-lavender);
}

.hours-table td:first-child {
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  color: var(--dark-text);
}

.hours-table td:last-child {
  border-radius: 0 10px 10px 0;
  color: var(--light-text);
}

.cert-list,
.benefits-list {
  max-width: 700px;
  margin: 24px auto;
}

.cert-list li,
.benefits-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.cert-list li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-sage);
  font-weight: 700;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  max-width: 900px;
  margin: 40px auto;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--soft-gray);
}

.legal-page ul,
.legal-page ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* ===========================
   RESPONSIVE DESIGN - MOBILE FIRST
   =========================== */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Flexbox adjustments */
  .service-card,
  .project-card,
  .benefit,
  .value,
  .team-member,
  .step,
  .testimonial-card,
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer content stacks */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Legal nav wraps better */
  .legal-nav {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Error code smaller */
  .error-code {
    font-size: 80px;
  }
  
  /* Stats and milestones stack */
  .stats,
  .milestones {
    flex-direction: column;
  }
  
  .stat,
  .milestone {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* 2-column layouts on tablets */
  .service-card,
  .project-card,
  .benefit,
  .value,
  .team-member,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===========================
   ANIMATIONS & TRANSITIONS
   =========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.project-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===========================
   ACCESSIBILITY
   =========================== */
:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 2px solid var(--pastel-sage);
  outline-offset: 3px;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .service-card,
  .project-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* ===========================
   FINAL TOUCHES - SOFT PASTEL
   =========================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(232, 217, 243, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 212, 200, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

blockquote {
  border-left: 4px solid var(--pastel-lavender);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark-text);
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  color: var(--soft-gray);
}

strong {
  color: var(--dark-text);
  font-weight: 600;
}

/* END OF CSS */