/* ===== WOMEN PAGE ===== */

/* HERO */
.w-hero {
  margin-top: 106px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: #f2e8ed;
}

.w-hero-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.w-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.w-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
}

.w-hero-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
}

.w-hero-photo {
  overflow: hidden;
}

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

/* WHY US */
.w-why {
  padding: 5rem 2rem;
  background: var(--white);
}

.w-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.w-why-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.w-why-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.w-why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.w-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.w-why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* SERVICES */
.w-services {
  padding: 5rem 2rem;
  background: var(--bg);
}

.w-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.w-service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.w-service-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.w-service-img-fallback {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.4;
}

.w-service-img-fallback svg {
  width: 100%;
  height: 100%;
}

.w-service-img img + .w-service-img-fallback {
  display: none;
}

.w-service-body {
  padding: 1.4rem 1.3rem;
}

.w-service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.w-service-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* GALLERY */
.w-gallery {
  padding: 5rem 2rem;
  background: var(--white);
}

.w-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.w-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg);
}

.w-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.w-gallery-item:hover img {
  transform: scale(1.04);
}

/* ABOUT ODELIA */
.w-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--bg);
}

.w-about-photo {
  overflow: hidden;
}

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

.w-about-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.w-about-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}

.w-about-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.w-about-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* CTA */
.w-cta {
  padding: 6rem 2rem;
  background: #a85c7a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.w-cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.w-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.btn-gold-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .w-hero {
    grid-template-columns: 1fr;
  }

  .w-hero-photo {
    height: 380px;
    order: -1;
  }

  .w-hero-content {
    padding: 2.5rem 1.5rem;
  }

  .w-hero-content h1 {
    font-size: 2rem;
  }

  .w-hero-text {
    font-size: 0.9rem;
  }

  .w-why {
    padding: 3rem 1.2rem;
  }

  .w-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .w-why-card {
    padding: 1.3rem 1rem;
  }

  .w-gallery {
    padding: 3rem 1.2rem;
  }

  .w-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

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

  .w-about-photo {
    height: 360px;
  }

  .w-about-content {
    padding: 2.5rem 1.5rem;
  }

  .w-about-content h2 {
    font-size: 1.6rem;
  }

  .w-cta {
    padding: 3.5rem 1.5rem;
  }

  .w-cta h2 {
    font-size: 1.5rem;
  }

  .w-cta p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .w-hero-content h1 {
    font-size: 1.8rem;
  }

  .w-why-grid {
    grid-template-columns: 1fr;
  }

  .w-gallery-grid {
    grid-template-columns: 1fr;
  }
}
