/* ============================================================
   OLGA — Doula & Postpartum Support
   Production CSS — One-Page Website
   ============================================================ */

/* -------------------------------------------------------
   0. IMPORTS & CUSTOM PROPERTIES
   ------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  /* Color Palette */
  --sage:             #7C9A82;
  --sage-dark:        #5B7A61;
  --sage-light:       #D4E2D4;
  --sage-ultra-light: #EDF3ED;
  --cream:            #FAF8F5;
  --rose-sand:        #E8D5C4;
  --rose-sand-light:  #F3EBE3;
  --charcoal:         #2D2926;
  --warm-gray:        #6B6560;
  --warm-gray-light:  #A39E99;
  --white:            #FFFFFF;

  /* Typography Scale (fluid) */
  --fs-xs:    clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm:    clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-base:  clamp(1rem, 0.92rem + 0.4vw, 1.125rem);
  --fs-md:    clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-lg:    clamp(1.25rem, 1rem + 1vw, 1.75rem);
  --fs-xl:    clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  --fs-2xl:   clamp(2rem, 1.2rem + 3vw, 3.25rem);
  --fs-3xl:   clamp(2.5rem, 1.5rem + 4vw, 4.5rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;
  --space-4xl:  8rem;

  /* Layout */
  --max-width:      1200px;
  --max-text-width: 720px;
  --nav-height:     80px;
  --border-radius:  16px;
  --border-radius-lg: 20px;
  --border-radius-pill: 999px;

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(45, 41, 38, 0.06);
  --shadow-md:  0 4px 20px rgba(45, 41, 38, 0.08);
  --shadow-lg:  0 8px 40px rgba(45, 41, 38, 0.12);
  --shadow-lift: 0 12px 48px rgba(45, 41, 38, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--sage) var(--cream);
  scrollbar-width: thin;
}

/* Custom Scrollbar — Webkit */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sage-dark);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover {
  color: var(--sage);
}

/* Focus Styles — Accessibility */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--sage-light);
  color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--warm-gray);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------------------------------------------
   2. UTILITY CLASSES
   ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-container {
  max-width: var(--max-text-width);
  margin: 0 auto;
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

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

.accent-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sage-dark);
}

/* Decorative horizontal line */
.divider {
  width: 60px;
  height: 2px;
  background: var(--sage-light);
  border: none;
  margin: var(--space-lg) auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: var(--border-radius-pill);
  transition: all var(--duration) var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(124, 154, 130, 0.3);
}
.btn--primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 154, 130, 0.4);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn--secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}

.btn--white {
  background: var(--white);
  color: var(--sage-dark);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* -------------------------------------------------------
   4. NAVIGATION
   ------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(124, 154, 130, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color var(--duration) var(--ease);
  z-index: 1001;
}
.nav__brand:hover {
  color: var(--sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width var(--duration) var(--ease);
}
.nav__link:hover {
  color: var(--sage-dark);
}
.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 40px rgba(45, 41, 38, 0.1);
  }

  .nav__links.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: var(--fs-lg);
  }

  .nav__links .btn {
    margin-top: var(--space-sm);
    width: 100%;
    text-align: center;
  }
}

/* -------------------------------------------------------
   5. HERO
   ------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
  background: var(--cream);
  overflow: hidden;
}

/* Inner grid container for hero content */
.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
    text-align: left;
  }
}

/* Noise / Grain Texture Overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}
.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--warm-gray);
  max-width: 540px;
  margin: 0 0 var(--space-xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-start;
  margin-bottom: var(--space-3xl);
}

@media (max-width: 767px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
}

/* Portrait & Blob Wrapper */
.hero__visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.hero__blob {
  position: absolute;
  inset: -30px;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.hero__blob svg {
  width: 100%;
  height: 100%;
  fill: var(--sage-light);
  opacity: 0.6;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: var(--sage-ultra-light);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: pulse-soft 4s ease-in-out infinite;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative blob elements */
.hero__deco-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.hero__deco-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  top: -100px;
  right: -150px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 8s ease-in-out infinite;
}
.hero__deco-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--rose-sand);
  bottom: -80px;
  left: -100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 7s ease-in-out infinite reverse;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--warm-gray-light);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}

/* -------------------------------------------------------
   6. EMPATHY SECTION
   ------------------------------------------------------- */
.empathy {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--rose-sand-light) 30%,
    var(--rose-sand-light) 70%,
    var(--cream) 100%
  );
  overflow: hidden;
}

.empathy__inner {
  max-width: var(--max-text-width);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
}

.empathy__quote {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
}

.empathy__text {
  font-size: var(--fs-md);
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}
.empathy__text:last-child {
  margin-bottom: 0;
}

/* Decorative leaf/organic accent */
.empathy::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 10%;
  width: 120px;
  height: 120px;
  background: var(--sage-light);
  opacity: 0.15;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  pointer-events: none;
}

/* -------------------------------------------------------
   7. ABOUT (Über mich)
   ------------------------------------------------------- */
.about {
  background: var(--cream);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  position: relative;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-ultra-light);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sage overlay */
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 154, 130, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Decorative element behind image */
.about__image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--sage-light);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: -1;
}

.about__content {
  max-width: 540px;
}

.about__name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.about__role {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--sage);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__text {
  margin-bottom: var(--space-md);
  color: var(--warm-gray);
}

.about__qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.about__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 6px 16px;
  background: var(--sage-ultra-light);
  color: var(--sage-dark);
  border-radius: var(--border-radius-pill);
  border: 1px solid var(--sage-light);
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-3xl);
  }

  .about__content {
    max-width: none;
  }
}

/* -------------------------------------------------------
   8. JOURNEY TIMELINE
   ------------------------------------------------------- */
.journey {
  background: var(--sage-ultra-light);
  position: relative;
  overflow: hidden;
}

.journey__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--space-lg);
  width: 2px;
  background: var(--sage-light);
}

.timeline__item {
  position: relative;
  padding-left: calc(var(--space-2xl) + 10px);
  padding-bottom: var(--space-3xl);
}
.timeline__item:last-child {
  padding-bottom: 0;
}

/* Dot */
.timeline__dot {
  position: absolute;
  left: calc(var(--space-lg) - 8px);
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--sage);
  border: 3px solid var(--sage-light);
  border-radius: 50%;
  z-index: 2;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(124, 154, 130, 0.15);
}

.timeline__phase {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  color: var(--warm-gray);
  max-width: 480px;
}

/* Desktop: alternating layout */
@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__item {
    width: 50%;
    padding-left: 0;
    padding-right: var(--space-2xl);
  }

  .timeline__dot {
    left: auto;
    right: calc(-9px);
  }

  .timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-left: var(--space-2xl);
    padding-right: 0;
    text-align: left;
  }
  .timeline__item:nth-child(even) .timeline__dot {
    right: auto;
    left: -9px;
  }

  .timeline__item:nth-child(odd) {
    text-align: right;
  }
  .timeline__item:nth-child(odd) .timeline__text {
    margin-left: auto;
  }
}

/* -------------------------------------------------------
   9. SERVICES (Leistungen)
   ------------------------------------------------------- */
.services {
  background: var(--cream);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(124, 154, 130, 0.1);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(124, 154, 130, 0.2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-ultra-light);
  border-radius: 50%;
  color: var(--sage);
  font-size: 1.5rem;
  border: 2px solid var(--sage-light);
  transition: all var(--duration) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.service-card__text {
  color: var(--warm-gray);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.service-card__features {
  text-align: left;
  margin-bottom: var(--space-lg);
}
.service-card__features li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--warm-gray);
}
.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

/* Coming soon card */
.service-card--coming-soon {
  opacity: 0.65;
  pointer-events: none;
}
.service-card--coming-soon::after {
  content: 'Bald verfügbar';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 14px;
  background: var(--rose-sand);
  color: var(--charcoal);
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.05em;
}

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

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -------------------------------------------------------
   10. TESTIMONIALS
   ------------------------------------------------------- */
.testimonials {
  background: var(--rose-sand-light);
  position: relative;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials__carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  text-align: center;
  padding: 0 var(--space-lg);
  display: none;
}
.testimonial.active {
  display: block;
}

.testimonial__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 0.6;
  margin-bottom: var(--space-md);
  user-select: none;
}

.testimonial__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
}

.testimonial__author {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial__role {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  color: var(--warm-gray-light);
}

/* Carousel dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.testimonials__dot.active,
.testimonials__dot:hover {
  background: var(--sage);
  transform: scale(1.2);
}

/* Carousel arrows */
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: all var(--duration) var(--ease);
}
.testimonials__arrow:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

/* -------------------------------------------------------
   11. CTA / CONTACT
   ------------------------------------------------------- */
.cta {
  background: linear-gradient(
    135deg,
    var(--sage) 0%,
    var(--sage-dark) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Organic decorative shape */
.cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
}
.cta__contact-item a {
  color: var(--white);
}
.cta__contact-item a:hover {
  color: var(--rose-sand-light);
}
.cta__contact-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* -------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: var(--warm-gray-light);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--warm-gray-light);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer__links a {
  font-size: var(--fs-sm);
  color: var(--warm-gray-light);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover {
  color: var(--sage-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--warm-gray-light);
}
.footer__copy a {
  color: var(--warm-gray-light);
}
.footer__copy a:hover {
  color: var(--sage-light);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}
.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--warm-gray-light);
}
.footer__legal a:hover {
  color: var(--sage-light);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* -------------------------------------------------------
   13. ANIMATIONS & KEYFRAMES
   ------------------------------------------------------- */

/* Float — hero blob */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(1deg);
  }
  66% {
    transform: translateY(6px) rotate(-1deg);
  }
}

/* Fade-in up — scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle pulse — portrait */
@keyframes pulse-soft {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 154, 130, 0.15),
                var(--shadow-lg);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(124, 154, 130, 0),
                var(--shadow-lg);
  }
}

/* -------------------------------------------------------
   14. SCROLL-TRIGGERED FADE-IN
   ------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.fade-in-stagger.visible > * {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .fade-in-stagger > * {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }

  .hero__blob,
  .hero__portrait,
  .hero__deco-blob--1,
  .hero__deco-blob--2 {
    animation: none;
  }
}

/* -------------------------------------------------------
   15. RESPONSIVE — DESKTOP ENHANCEMENTS
   ------------------------------------------------------- */
@media (min-width: 1024px) {
  .section-padding {
    padding: var(--space-4xl) 0;
  }

  .hero__visual {
    width: 340px;
    height: 340px;
  }

  .hero__portrait {
    width: 300px;
    height: 300px;
  }
}

/* -------------------------------------------------------
   16. PRINT STYLES
   ------------------------------------------------------- */
@media print {
  .nav,
  .hero__scroll,
  .hero__blob,
  .hero__deco-blob--1,
  .hero__deco-blob--2,
  .testimonials__nav,
  .testimonials__dots {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .cta {
    background: #eee;
    color: #000;
  }
  .cta__title,
  .cta__text {
    color: #000;
  }

  .testimonial {
    display: block !important;
  }
}
