/* Google Fonts - Elegant Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');

:root {
  color-scheme: light;

  /* Elegant Beige Premium Palette */
  --color-bg: #FAF7F2;
  --color-surface: #F5EFE6;
  --color-surface-alt: #EFE8DC;

  /* Primary Colors - Warm Beige & Sand */
  --color-primary: #D4C4A8;
  --color-primary-light: #E8DCC8;
  --color-primary-dark: #B8A890;
  --color-lavender: #E8DCC8;
  --color-lavender-light: #F5EFE6;

  /* Accent Colors - Warm Taupe & Caramel */
  --color-accent: #C9A875;
  --color-accent-light: #D9BA8F;
  --color-rose-gold: #B8956A;

  /* Legacy support */
  --color-secondary: #D4C4A8;

  /* Neutrals - Warm Taupe & Brown Palette */
  --color-text: #4A3F35;
  --color-text-secondary: #6B5F53;
  --color-muted: #8A7D6F;
  --color-gray-50: #FAF7F2;
  --color-gray-100: #F5EFE6;
  --color-gray-200: #EFE8DC;
  --color-gray-800: #3A3028;
  --color-gray-900: #2C2520;

  /* Mesh Gradients - High Contrast */
  --gradient-primary: linear-gradient(135deg, #B8956A 0%, #8A7D6F 50%, #6B5F53 100%);
  --gradient-accent: linear-gradient(135deg, #D4C4A8 0%, #C9A875 50%, #B8956A 100%);
  --gradient-hero: linear-gradient(135deg, #B8956A 0%, #8A7D6F 30%, #6B5F53 70%, #4A3F35 100%);
  --gradient-mesh:
    radial-gradient(at 0% 0%, rgba(212, 196, 168, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(201, 168, 117, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(184, 149, 106, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(232, 220, 200, 0.15) 0px, transparent 50%);

  /* Borders & Shadows - Warm Tones */
  --color-border: rgba(74, 63, 53, 0.08);
  --shadow-soft: 0 10px 40px rgba(74, 63, 53, 0.08);
  --shadow-medium: 0 20px 60px rgba(74, 63, 53, 0.12);
  --shadow-hard: 0 25px 80px rgba(74, 63, 53, 0.16);
  --shadow-glow-primary: 0 0 60px rgba(212, 196, 168, 0.4);
  --shadow-glow-accent: 0 0 60px rgba(201, 168, 117, 0.4);

  /* Layout */
  --container: min(1200px, 90vw);
  --container-wide: min(1400px, 92vw);

  /* Border Radius */
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;

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

  /* Typography Scale - Elegant Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding: 5rem 0;
}

.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero__container {
    gap: 2rem;
  }
}

.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero__media {
    max-width: none;
    margin: 0;
  }
}

.decor-circle,
.decor-flower {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 229, 229, 0.6);
  top: 10%;
  right: 10%;
  filter: blur(0);
}

.decor-flower {
  width: 80px;
  height: 80px;
  top: auto;
  bottom: 10%;
  left: 12%;
  background: rgba(232, 213, 255, 0.8);
}

.hero__content {
  max-width: 100%;
}

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: manual;
}

.hero__content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) or not (-webkit-background-clip: text) {
  .hero__content h1 {
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--color-primary);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.hero__metrics strong {
  display: block;
  font-size: 2rem;
  color: var(--color-accent);
}

/* Eyebrow moved to components.css - keeping this as backup */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.mission-card,
.audience__grid article,
.timeline__item,
.testimonial,
.contact__card,
.contact__details,
.gallery__item,
.stats__grid article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.signature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.audience__quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent);
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline__item {
  position: relative;
}

.accordion__trigger {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion__trigger::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion__trigger[aria-expanded='true']::after {
  content: '–';
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__content p {
  margin: 0.75rem 0 0;
}

.accordion.open .accordion__content,
.timeline__item.open .accordion__content {
  max-height: 200px;
}

.testimonials__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.testimonial {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(74, 63, 53, 0.15);
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
}

.carousel__dots button.active {
  background: var(--color-accent);
  width: 30px;
}

.stats {
  background: var(--color-surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stats__grid strong {
  font-size: 2.5rem;
}

/* ============================================
   Results Section - Happy Women Gallery
   ============================================ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card__image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover .result-card__image img {
  transform: scale(1.08);
}

.result-card__content {
  padding: 2rem;
  text-align: center;
}

.result-card__content h3 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.result-card__content p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .results__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .result-card__image {
    height: 320px;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact {
  background: var(--color-surface-alt);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery__item {
  border: none;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery__item img {
  border-radius: var(--radius-lg);
}

.site-footer {
  padding: 2rem 0;
  background: #1c1a1d;
  color: #fff;
}

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

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(74, 63, 53, 0.2),
    0 8px 24px rgba(184, 149, 106, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(74, 63, 53, 0.25),
    0 12px 32px rgba(184, 149, 106, 0.2);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.accordion__trigger:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 4px;
}

.btn--pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
}

.ready-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.ready-card h2 {
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.ready-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #111827;
}

.ready-card .ready-quote {
  font-size: 1.15rem;
  font-style: italic;
}

.ready-cta {
  margin-top: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 196, 168, 0.2);
  z-index: 10;
  box-shadow: 0 4px 24px rgba(74, 63, 53, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(74, 63, 53, 0.1);
  border-bottom-color: rgba(212, 196, 168, 0.3);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 0.25rem;
}

.logo span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

@supports not (background-clip: text) {
  .logo span {
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--color-primary);
  }
}

.logo small {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-transform: lowercase;
  font-style: italic;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.primary-nav a.active {
  color: var(--color-accent);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--color-secondary);
  z-index: 999;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.modal[aria-hidden='false'] {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal__dialog {
  position: relative;
  margin: 10vh auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(600px, calc(100vw - 2rem));
  box-shadow: var(--shadow-soft);
  max-height: 80vh;
  overflow-y: auto;
}

.modal__dialog--wide {
  width: min(900px, calc(100vw - 2rem));
}

[data-theme='dark'] .modal__dialog {
  background: var(--color-surface);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.scroll-cue {
  width: 40px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  margin-top: 2rem;
  position: relative;
}

.scroll-cue span {
  display: block;
  width: 6px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 999px;
  margin: 0 auto;
  animation: scrollCue 1.5s infinite;
}

@media (max-width: 768px) {
  .primary-nav ul {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .primary-nav.open ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================
   Parallax Background Sections
   ============================================ */
.parallax-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 63, 53, 0.75) 0%, rgba(44, 37, 32, 0.65) 100%);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

.parallax-section h2,
.parallax-section h3,
.parallax-section p,
.parallax-section strong,
.parallax-section .eyebrow {
  color: #FFFFFF !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.parallax-section h2 {
  font-size: 2.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

/* Mobile: Disable parallax transform for better performance */
@media (max-width: 768px) {
  .parallax {
    transform: none !important;
  }
}

/* Parallax variations */
.parallax-section.parallax-about {
  background-image: url('../assets/images/WhatsApp Image 2025-11-18 at 00.57.48.jpeg');
  min-height: 600px;
  padding: 6rem 0;
}

.parallax-section.parallax-ready {
  background-image: url('../assets/images/WhatsApp Image 2025-11-18 at 00.58.10.jpeg');
  min-height: 700px;
  padding: 8rem 0;
}

.parallax-section.parallax-audience {
  /* Background image now handled by .parallax-bg element */
  min-height: 600px;
  padding: 6rem 0;
}

/* JavaScript-driven Parallax Effect */
.parallax {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
  overflow: hidden;
}

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

/* ============================================
   Text Cards & Content Blocks
   ============================================ */
.text-card {
  background: rgba(255, 255, 255, 0.75);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(74, 63, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.text-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 196, 168, 0.3), rgba(201, 168, 117, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.text-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(74, 63, 53, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(212, 196, 168, 0.4);
}

.text-card:hover::before {
  opacity: 1;
}

.text-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.text-card p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.story-highlight {
  background: linear-gradient(135deg, rgba(232, 220, 200, 0.4), rgba(212, 196, 168, 0.3));
  border-left: 4px solid var(--color-accent);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border-radius: 20px;
  font-style: italic;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(74, 63, 53, 0.08);
  border: 1px solid rgba(212, 196, 168, 0.3);
  transition: all 0.3s ease;
}

.story-highlight:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(74, 63, 53, 0.12);
  border-left-width: 6px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(74, 63, 53, 0.08);
}

@media (max-width: 768px) {
  .text-card {
    padding: 1.5rem;
  }
}

/* ============================================
   MODERN DESIGN SYSTEM - 2024/2025 TRENDS
   ============================================ */

/* Glassmorphism Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(74, 63, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(74, 63, 53, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(212, 196, 168, 0.5);
}

/* Modern Gradients */
.gradient-border {
  position: relative;
  background: #fff;
  border-radius: 24px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #D4C4A8, #C9A875, #B8956A);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Organic Shapes Background */
.organic-bg {
  position: relative;
  overflow: hidden;
}

.organic-bg::before,
.organic-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.organic-bg::before {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #D4C4A8, #E8DCC8);
  top: -200px;
  right: -200px;
  filter: blur(100px);
}

.organic-bg::after {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #C9A875, #B8956A);
  bottom: -100px;
  left: -100px;
  filter: blur(80px);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Smooth Hover Lift */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 63, 53, 0.12);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #B8956A, #6B5F53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Soft Glow Effect */
.soft-glow {
  box-shadow: 
    0 0 20px rgba(212, 196, 168, 0.3),
    0 0 40px rgba(201, 168, 117, 0.2);
}

/* Fluid Typography */
.fluid-xl {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
}

.fluid-lg {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.fluid-md {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
}

/* Section Spacing */
.section-modern {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* Decorative Dots */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(212, 196, 168, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
