/* ========================
   HOMEPAGE V2 — Modern Light
   Scoped to body.theme-light
   ======================== */

/* ===== HERO V2 ===== */
body.theme-light .hero-v2 {
  position: relative;
  padding: calc(var(--space-12) + 60px) 0 var(--space-11);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 165, 176, 0.45), transparent 45%),
    radial-gradient(circle at 88% 8%, rgba(249, 224, 210, 0.6), transparent 50%),
    radial-gradient(circle at 75% 90%, rgba(244, 196, 204, 0.4), transparent 55%),
    var(--c-cream);
}

body.theme-light .hero-v2__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  align-items: center;
}

body.theme-light .hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-maroon);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

body.theme-light .hero-v2__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blush);
  box-shadow: 0 0 0 4px rgba(232, 165, 176, 0.25);
}

body.theme-light .hero-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-maroon);
  margin-bottom: var(--space-5);
}

body.theme-light .hero-v2__title em {
  font-style: italic;
  color: var(--c-rose);
  position: relative;
  white-space: nowrap;
}

body.theme-light .hero-v2__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 12px;
  background: rgba(232, 165, 176, 0.45);
  z-index: -1;
  border-radius: var(--radius-full);
}

body.theme-light .hero-v2__subtitle {
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-7);
}

body.theme-light .hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

body.theme-light .hero-v2__stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-line);
}

body.theme-light .hero-v2__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--c-maroon);
  line-height: 1;
  margin-bottom: 4px;
}

body.theme-light .hero-v2__stat span {
  font-size: var(--fs-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

body.theme-light .hero-v2__visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 60px);
  gap: var(--space-3);
}

body.theme-light .hero-v2__tile {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-spring);
}

body.theme-light .hero-v2__tile:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-strong);
}

body.theme-light .hero-v2__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.theme-light .hero-v2__tile--main { grid-column: 1 / span 6; grid-row: 1 / span 4; }
body.theme-light .hero-v2__tile--small1 { grid-column: 1 / span 3; grid-row: 5 / span 2; }
body.theme-light .hero-v2__tile--small2 { grid-column: 4 / span 3; grid-row: 5 / span 2; }

body.theme-light .hero-v2__floral {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

body.theme-light .hero-v2__floral--tl {
  top: 80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 165, 176, 0.55), transparent 60%);
  filter: blur(20px);
}

body.theme-light .hero-v2__floral--br {
  bottom: 0;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249, 224, 210, 0.7), transparent 60%);
  filter: blur(20px);
}

body.theme-light .hero-v2__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--c-ink-soft);
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.theme-light .hero-v2__scroll svg {
  width: 22px;
  height: 22px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ===== ABOUT V2 ===== */
body.theme-light .about-v2 {
  padding: var(--space-12) 0;
}

body.theme-light .about-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

body.theme-light .about-v2__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

body.theme-light .about-v2__text p {
  color: var(--c-ink-soft);
  line-height: 1.8;
  font-size: var(--fs-md);
  margin-bottom: var(--space-4);
}

body.theme-light .about-v2__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
}

body.theme-light .about-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-strong);
}

body.theme-light .about-v2__visual::before {
  content: '';
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: linear-gradient(135deg, var(--c-blush-light), var(--c-peach));
  border-radius: var(--radius-2xl);
  z-index: 1;
}

body.theme-light .about-v2__visual::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-blush) 0%, transparent 70%);
  top: -30px;
  right: -30px;
  z-index: 0;
  opacity: 0.6;
  filter: blur(8px);
}

/* ===== UPCOMING V2 ===== */
body.theme-light .upcoming-v2 {
  padding: var(--space-12) 0;
  background: var(--c-blush-bg);
  position: relative;
  overflow: hidden;
}

body.theme-light .upcoming-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 196, 204, 0.5), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

body.theme-light .upcoming-v2__card {
  position: relative;
  z-index: 1;
  background: var(--c-cream);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr;
}

body.theme-light .upcoming-v2__media {
  position: relative;
  display: block;
  background: var(--c-blush-soft);
  overflow: hidden;
  aspect-ratio: 4/5;
}

body.theme-light .upcoming-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

body.theme-light .upcoming-v2__media:hover img {
  transform: scale(1.04);
}

body.theme-light .upcoming-v2__media-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: 6px 14px;
  background: var(--c-cream);
  color: var(--c-maroon);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

body.theme-light .upcoming-v2__body {
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.theme-light .upcoming-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  color: var(--c-maroon);
}

body.theme-light .upcoming-v2__tagline {
  font-size: var(--fs-md);
  color: var(--c-rose);
  font-style: italic;
  margin-bottom: var(--space-6);
}

body.theme-light .upcoming-v2__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

body.theme-light .upcoming-v2__meta li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}

body.theme-light .upcoming-v2__meta li:last-child {
  border-bottom: none;
}

body.theme-light .upcoming-v2__meta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--c-rose);
  margin-top: 2px;
}

body.theme-light .upcoming-v2__meta-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-ink-soft);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

body.theme-light .upcoming-v2__meta-value {
  font-weight: var(--fw-semibold);
  color: var(--c-ink);
}

body.theme-light .upcoming-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

body.theme-light .upcoming-v2__chips span {
  padding: 6px 12px;
  background: var(--c-blush-soft);
  color: var(--c-maroon);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
}

body.theme-light .upcoming-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ===== SERVICES BENTO ===== */
body.theme-light .services-v2 {
  padding: var(--space-12) 0;
}

body.theme-light .services-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

body.theme-light .bento-tile {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

body.theme-light .bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--c-blush);
}

body.theme-light .bento-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  background: var(--c-blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-4);
}

body.theme-light .bento-tile__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}

body.theme-light .bento-tile__list {
  margin-bottom: var(--space-5);
  list-style: none;
  padding: 0;
}

body.theme-light .bento-tile__list li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--c-ink-soft);
  font-size: var(--fs-sm);
}

body.theme-light .bento-tile__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: var(--c-blush);
}

body.theme-light .bento-tile__text {
  color: var(--c-ink-soft);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

body.theme-light .bento-tile--featured {
  background: linear-gradient(135deg, var(--c-blush) 0%, var(--c-rose) 100%);
  color: var(--c-cream);
  border-color: transparent;
}

body.theme-light .bento-tile--featured .bento-tile__title,
body.theme-light .bento-tile--featured .bento-tile__text,
body.theme-light .bento-tile--featured .bento-tile__list li {
  color: var(--c-cream);
}

body.theme-light .bento-tile--featured .bento-tile__icon {
  background: rgba(255, 255, 255, 0.25);
  color: var(--c-cream);
}

body.theme-light .bento-tile--featured .bento-tile__list li::before {
  background: var(--c-cream);
}

body.theme-light .bento-tile--featured .btn--outline-dark {
  border-color: var(--c-cream);
  color: var(--c-cream);
}

body.theme-light .bento-tile--featured .btn--outline-dark:hover {
  background: var(--c-cream);
  color: var(--c-maroon);
}

body.theme-light .bento-tile--cream {
  background: var(--c-blush-bg);
}

body.theme-light .bento-tile--peach {
  background: var(--c-peach);
}

/* ===== STATS V2 ===== */
body.theme-light .stats-v2 {
  padding: var(--space-10) 0;
  background: var(--c-cream-warm);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

body.theme-light .stats-v2 .stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

body.theme-light .stats-v2 .stats__item {
  color: var(--c-ink);
}

body.theme-light .stats-v2 .stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-maroon), var(--c-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

body.theme-light .stats-v2 .stats__label {
  font-size: var(--fs-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

/* ===== GALLERY V2 (BENTO MOSAIC) ===== */
body.theme-light .gallery-v2 {
  padding: var(--space-12) 0;
}

body.theme-light .gallery-v2__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

body.theme-light .gallery-v2__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}

body.theme-light .gallery-v2__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

body.theme-light .gallery-v2__item:hover img {
  transform: scale(1.06);
}

body.theme-light .gallery-v2__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  background: linear-gradient(180deg, transparent 50%, rgba(74, 30, 42, 0.85) 100%);
  color: var(--c-cream);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

body.theme-light .gallery-v2__item:hover .gallery-v2__item-overlay {
  opacity: 1;
}

body.theme-light .gallery-v2__item-overlay span {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

/* ===== TESTIMONIALS V2 ===== */
body.theme-light .testimonials-v2 {
  padding: var(--space-12) 0;
  background: var(--c-cream-warm);
  position: relative;
  overflow: hidden;
}

body.theme-light .testimonials-v2::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: Georgia, serif;
  font-size: 24rem;
  color: rgba(232, 165, 176, 0.18);
  line-height: 1;
  pointer-events: none;
  font-weight: bold;
}

body.theme-light .testimonials-v2 .testimonials {
  margin-top: var(--space-8);
}

body.theme-light .testimonials-v2 .testimonials {
  background: var(--c-cream);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--c-line);
  padding-bottom: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

body.theme-light .testimonials-v2 .testimonial-card {
  /* keep min-width: 100% from base so slider math works */
  text-align: center;
  padding: var(--space-9) var(--space-7) var(--space-5);
}

body.theme-light .testimonials-v2 .testimonial-card__quote-icon {
  display: none;
}

body.theme-light .testimonials-v2 .testimonial-card__text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--c-maroon);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto var(--space-6);
}

body.theme-light .testimonials-v2 .testimonial-card__avatar {
  border: 3px solid var(--c-blush);
  box-shadow: var(--shadow-soft);
}

body.theme-light .testimonials-v2 .testimonial-card__name {
  color: var(--c-maroon);
  font-weight: var(--fw-semibold);
}

body.theme-light .testimonials-v2 .testimonial-card__event {
  color: var(--c-rose);
}

body.theme-light .testimonials-v2 .testimonials__arrow {
  background: var(--c-cream);
  border-color: var(--c-line-strong);
  color: var(--c-maroon);
}

body.theme-light .testimonials-v2 .testimonials__arrow:hover {
  background: var(--c-blush);
  color: var(--c-cream);
  border-color: var(--c-blush);
}

body.theme-light .testimonials-v2 .testimonials__dot {
  background: var(--c-line-strong);
}

body.theme-light .testimonials-v2 .testimonials__dot--active {
  background: var(--c-blush);
}

/* ===== CTA V2 ===== */
body.theme-light .cta-v2 {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--c-blush) 0%, var(--c-rose) 60%, var(--c-maroon) 100%);
  position: relative;
  overflow: hidden;
}

body.theme-light .cta-v2::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

body.theme-light .cta-v2::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 248, 243, 0.25), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

body.theme-light .cta-v2__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--c-cream);
}

body.theme-light .cta-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--c-cream);
  margin-bottom: var(--space-5);
}

body.theme-light .cta-v2__text {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(255, 248, 243, 0.92);
  margin-bottom: var(--space-7);
}

body.theme-light .cta-v2 .btn--primary {
  background: var(--c-cream);
  color: var(--c-maroon);
  border-color: var(--c-cream);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  padding: var(--space-4) var(--space-9);
}

body.theme-light .cta-v2 .btn--primary:hover {
  background: var(--c-cream-warm);
  color: var(--c-maroon-deep);
  border-color: var(--c-cream-warm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ===== Floral SVG accents ===== */
body.theme-light .floral-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-3) auto;
  color: var(--c-blush);
}

body.theme-light .floral-divider span {
  height: 1px;
  width: 60px;
  background: var(--c-line-strong);
}

body.theme-light .floral-divider svg {
  width: 22px;
  height: 22px;
}

/* ===== RESPONSIVE — TABLET (640px+) ===== */
@media (min-width: 640px) {
  body.theme-light .hero-v2__inner { grid-template-columns: 1.1fr 1fr; }
  body.theme-light .about-v2__grid { grid-template-columns: 1fr 1fr; }
  body.theme-light .upcoming-v2__card { grid-template-columns: 1fr 1.1fr; }
  body.theme-light .upcoming-v2__media { aspect-ratio: 3/4; height: 100%; }
  body.theme-light .upcoming-v2__meta { grid-template-columns: 1fr 1fr; }
  body.theme-light .stats-v2 .stats__grid { grid-template-columns: repeat(4, 1fr); }
  body.theme-light .gallery-v2__mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  body.theme-light .gallery-v2__item--lg { grid-column: span 2; grid-row: span 2; }
  body.theme-light .gallery-v2__item--wide { grid-column: span 2; }
  body.theme-light .services-v2__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE — DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  body.theme-light .hero-v2 {
    padding-top: calc(var(--space-12) + 80px);
    padding-bottom: var(--space-12);
  }

  body.theme-light .services-v2__grid {
    grid-template-columns: 2fr 1.2fr 1.2fr;
    grid-template-rows: 1fr 1fr;
  }
  body.theme-light .bento-tile--featured {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  body.theme-light .gallery-v2__mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  body.theme-light .gallery-v2__item--lg { grid-column: span 3; grid-row: span 2; }
  body.theme-light .gallery-v2__item--wide { grid-column: span 3; grid-row: span 1; }
  body.theme-light .gallery-v2__item { grid-column: span 2; }
}
