  /* ===============================
     GLOBAL SAFETY RESET
     (prevents Kadence weird offsets)
  ================================ */

  .site,
  .site-content,
  .content-area {
    overflow-x: hidden;
  }

  /* ===============================
     HOMEPAGE HERO FIX
     Targets ONLY the hero card
  ================================ */

  .m360-hero {
    max-width: 1200px;
    margin: 3rem auto 4rem;
    padding-inline: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .m360-hero > .wp-block-kadence-rowlayout,
  .m360-hero > .kb-row-layout-wrap {
    width: 100%;
  }

  @media (max-width: 768px) {
    .m360-hero {
      margin: 1.5rem auto 3rem;
      padding-inline: 1rem;
    }
  }

  /* ===============================
     REMOVE RANDOM DEFAULT SPACING
  ================================ */

  .entry-content {
    margin: 0 auto;
    padding: 0;
  }

  /* ===============================
     ALL BUTTONS - PILL SHAPED
  ================================ */

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-lg,
  .entry-content .wp-block-button__link,
  .wtw-feature__btn {
    border-radius: 999px !important;
  }

  /* ===============================
     HERO SECONDARY BUTTON FIX
  ================================ */

  .hero .btn-secondary {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }

  .hero .btn-secondary:hover {
    background-color: #ffffff;
    color: #2c1a46;
  }

  /* ===============================
     CREDIBILITY STRIP - RECOGNIZED BY
  ================================ */

  .credibility-strip__item img {
    max-height: 70px;
    width: auto;
  }

  /* ===============================
     TEAM PAGE FIXES
  ================================ */

  .hero .eyebrow {
    color: #ffffff !important;
    opacity: 0.8;
  }

  .hero--team {
    text-align: center;
    min-height: 50vh;
  }

  .hero--team .hero__content {
    max-width: 800px;
    margin: 0 auto;
  }

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

  /* ===============================
     TEAM GRID - 4 COLUMNS
  ================================ */

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

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

  .team-card__image-wrapper {
    aspect-ratio: 4 / 5;
  }

  .team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===============================
     TEAM PREVIEW (HOMEPAGE)
  ================================ */

  .team-preview .team-card__image-wrapper {
    aspect-ratio: 3 / 4;
  }

  .team-preview .team-card__image {
    object-position: top center;
  }

  /* ===============================
     FEATURED TEAM CARD
  ================================ */

  .team-card--featured {
    position: relative;
  }

  .team-card--featured::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1;
  }

  .team-card--featured .team-card__name {
    color: var(--color-primary);
  }

  .team-card--featured .team-card__role {
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary);
  }

  /* ===============================
     WOMAN TO WATCH FEATURE SECTION
  ================================ */

  .wtw-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
		align-items: center;
		justify-items:center;
    background: #d4c4d8;
    overflow: hidden;
    max-width: 2200px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .wtw-feature {
      grid-template-columns: 1fr;
    }
  }

  .wtw-feature__content {
    padding: 4rem 3rem;
		max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .wtw-feature__label {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c1a46;
    margin-bottom: 1rem;
  }

  .wtw-feature__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1a46;
    margin-bottom: 1rem;
  }

  .wtw-feature__text {
    font-size: 1rem;
    color: #424952;
    margin-bottom: 2rem;
    max-width: 400px;
  }

  .wtw-feature__btn {
    display: inline-block;
    background: #2c1a46;
    color: #fff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .wtw-feature__btn:hover {
    background: #43255b;
    transform: translateY(-2px);
  }

  .wtw-feature__logo {
    margin-top: 2rem;
    max-width: 280px;
  }

  .wtw-feature__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4c4d8;
    padding: 2rem;
  }

  .wtw-feature__image img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .wtw-feature__image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }

  /* ===============================
     ABOUT PAGE - VALUE CARDS
  ================================ */

  .value-card {
    text-align: center;
    padding: 2rem;
  }

  .value-card h3 {
    color: #2c1a46;
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .value-card p {
    color: #424952;
    line-height: 1.7;
  }

  /* ===============================
     ABOUT PAGE - STORY LAYOUT
  ================================ */

  .story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .story-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #424952;
  }

  .story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }

  .section-heading--left {
    text-align: left;
  }

  .section-heading--left .eyebrow {
    text-align: left;
  }

  /* ===============================
     ABOUT PAGE - FOUNDER LAYOUT
  ================================ */

  .founder-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .founder-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }

  .founder-title {
    font-size: 1.1rem;
    color: #43255b;
    font-weight: 500;
    margin-top: -0.5rem;
  }

  .founder-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #424952;
  }

  .founder-content p:last-child {
    margin-bottom: 0;
  }
/* ==========================================================================
   PASTE THIS ENTIRE FILE INTO:
   WordPress Admin > Appearance > Customize > Additional CSS

   This will IMMEDIATELY fix the WTW section and add premium styling
   ========================================================================== */

/* ==========================================================================
   WTW FEATURE SECTION FIX - Image fills purple area, logo not stretched
   ========================================================================== */

.wtw-feature {
    display: grid !important;
    grid-template-columns: 1fr !important;
    background: linear-gradient(135deg, #2c1a46 0%, #43255b 50%, #2c1a46 100%) !important;
    overflow: hidden !important;
    position: relative !important;
    min-height: 500px !important;
}

@media (min-width: 768px) {
    .wtw-feature {
        grid-template-columns: 1fr 1fr !important;
        min-height: 600px !important;
    }
}

/* Left content area */
.wtw-feature__content {
    padding: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    color: #fff !important;
    position: relative !important;
    z-index: 2 !important;
}

@media (min-width: 1024px) {
    .wtw-feature__content {
        padding: 4rem 3rem 4rem 5rem !important;
    }
}

.wtw-feature__label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 1.5rem !important;
}

.wtw-feature__title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
    line-height: 1.15 !important;
}

@media (min-width: 1024px) {
    .wtw-feature__title {
        font-size: 3.5rem !important;
    }
}

.wtw-feature__text {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.wtw-feature__btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 1rem 2rem !important;
    background: #fff !important;
    color: #2c1a46 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 999px !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.wtw-feature__btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    color: #2c1a46 !important;
}

/* FIX: Logo should NOT stretch */
.wtw-feature__logo {
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    max-width: 220px !important;
    margin-top: 2rem !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

/* IMAGE SECTION - MUST FILL THE PURPLE AREA */
.wtw-feature__image {
    position: relative !important;
    min-height: 350px !important;
    overflow: hidden !important;
}

@media (min-width: 768px) {
    .wtw-feature__image {
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 50% !important;
        height: 100% !important;
    }
}

/* THE ACTUAL IMAGE - Fill completely */
.wtw-feature__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* ==========================================================================
   PREMIUM OVERRIDES - Everything else
   ========================================================================== */

/* Bigger text everywhere */
body {
    font-size: 18px !important;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 700 !important;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
}

h3 {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
}

/* Credibility badges BIGGER */
.credibility-strip__item img {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
}

@media (min-width: 768px) {
    .credibility-strip__item img {
        height: 100px !important;
        max-height: 100px !important;
    }
}

.credibility-strip__item:hover img {
    transform: scale(1.1) !important;
    filter: grayscale(0%) !important;
}

/* Premium Hero */
.hero {
    background: linear-gradient(135deg, #2c1a46 0%, #43255b 50%, #2c1a46 100%) !important;
}

.hero h1 {
    color: #fff !important;
}

/* Premium Buttons */
.btn,
a.btn,
button.btn {
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 1rem 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #2c1a46 0%, #43255b 100%) !important;
    border: none !important;
}

/* Premium Cards */
.service-card,
.testimonial-card,
.team-card,
.news-card {
    box-shadow: 0 4px 20px rgba(44, 26, 70, 0.1) !important;
    border-radius: 16px !important;
    transition: all 0.4s ease !important;
}

.service-card:hover,
.testimonial-card:hover,
.team-card:hover,
.news-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(44, 26, 70, 0.2) !important;
}

/* Service card icons */
.service-card__icon {
    width: 64px !important;
    height: 64px !important;
    background: linear-gradient(135deg, #2c1a46 0%, #43255b 100%) !important;
    border-radius: 12px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Section headings with underline */
.section-heading h2::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #2c1a46, #43255b) !important;
    border-radius: 2px !important;
    margin: 1rem auto 0 !important;
}

/* Instagram section darker */
.instagram-section {
    background: linear-gradient(135deg, #1e1230 0%, #2c1a46 100%) !important;
}

/* Testimonials section */
.testimonials-section {
    background: linear-gradient(135deg, #f5f3f7 0%, #ebe8f0 100%) !important;
}

/* Team card names bigger */
.team-card__name {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}

.team-card__role {
    font-size: 1rem !important;
    color: #43255b !important;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
