/* ============================================================
   LIFESEC — FINAL PREMIUM POLISH
   Homepage section directly below Best Sellers.
   Surgical adjustments only: crop, spacing, hierarchy, restraint.
   ============================================================ */

/* ---------- SECTION CANVAS ---------- */
body .dartee-home .lifesec,
.lifesec {
  min-height: clamp(520px, 76vh, 900px) !important;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  background: #0b211b;
}

/* Subtle localized readability scrim behind the copy area only.
   Does NOT darken the full photograph or the belt. */
body .dartee-home .lifesec::before,
.lifesec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 22% 28%,
    rgba(8, 42, 36, 0.28) 0%,
    rgba(8, 42, 36, 0.10) 32%,
    transparent 62%
  );
}

/* ---------- PHOTOGRAPHY ---------- */
body .dartee-home .lifesec__img,
.lifesec__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slight shift to make the belt/buckle ~10-15% more prominent
     while keeping the polo, glove, stance, and course context. */
  object-position: 60% 92%;
}

/* ---------- COPY GROUP ---------- */
body .dartee-home .lifesec__copy,
.lifesec__copy {
  position: relative;
  z-index: 2;
  max-width: min(560px, 44vw);
  /* Move the group right ~2-3% and down ~3-5% for more intentional breathing room. */
  padding: clamp(64px, 9vw, 130px) clamp(32px, 7.5vw, 120px) clamp(32px, 4vw, 64px);
}

/* ---------- EYEBROW ---------- */
body .dartee-home .lifesec__eyebrow,
.lifesec__eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cro-pink, #e94b8b);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

/* ---------- HEADLINE ---------- */
body .dartee-home .lifesec__title,
.lifesec__title {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--cro-cream, #f3efe5);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
  letter-spacing: 0.01em;
}

/* ---------- SUPPORTING COPY ---------- */
body .dartee-home .lifesec__sub,
.lifesec__sub {
  margin: 16px 0 0;
  max-width: 24ch;
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(243, 239, 230, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* ---------- CTA ---------- */
body .dartee-home .lifesec__cta,
.lifesec__cta {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cro-cream, #f3efe5);
  text-decoration: none;
  border-bottom: 1px solid var(--cro-pink, #e94b8b);
  padding-bottom: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

body .dartee-home .lifesec__cta:hover,
.lifesec__cta:hover {
  color: var(--cro-pink, #e94b8b);
  border-bottom-color: var(--cro-pink, #e94b8b);
}

/* ============================================================
   MOBILE DEDICATED CROP
   Preserve belt, glove, striped polo, and environmental context.
   Position type in available negative space; never cover the belt.
   ============================================================ */
@media (max-width: 900px) {
  body .dartee-home .lifesec,
  .lifesec {
    /* Keep the mobile section shorter than the image's scaled height so the
       portrait image is cropped vertically; this lets object-position crop
       the head and push the belt/buckle into the frame. */
    min-height: min(130vw, 540px) !important;
    max-height: none;
    position: relative;
    display: block !important;
    overflow: hidden;
  }

  body .dartee-home .lifesec__img,
  .lifesec__img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    /* Mobile crop: bottom-weighted, head hidden, belt/buckle as the visual payoff. */
    object-position: 58% 90% !important;
  }

  /* Replace the heavy full-image overlay with a very subtle localized
     gradient behind the upper-left copy only. */
  body .dartee-home .lifesec::before,
  body .dartee-home .lifesec::after,
  .lifesec::before,
  .lifesec::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
      radial-gradient(
        120% 90% at 0% 0%,
        rgba(8, 42, 36, 0.45) 0%,
        rgba(8, 42, 36, 0.22) 30%,
        rgba(8, 42, 36, 0.06) 52%,
        transparent 72%
      ) !important;
  }

  body .dartee-home .lifesec__copy,
  .lifesec__copy {
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
    max-width: 76% !important;
    /* Push the copy well into the torso/grass negative space so the
       subject-safe zone (face, visor, head, belt, buckle) stays completely clear. */
    padding: 86px var(--m-gutter, 20px) 0 !important;
  }

  body .dartee-home .lifesec__eyebrow,
  .lifesec__eyebrow {
    margin: 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
  }

  body .dartee-home .lifesec__title,
  .lifesec__title {
    margin: 12px 0 0 !important;
    font-size: clamp(34px, 10vw, 60px) !important;
    line-height: 0.92 !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42) !important;
  }

  body .dartee-home .lifesec__sub,
  .lifesec__sub {
    margin: 12px 0 0 !important;
    max-width: 28ch !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(243, 239, 230, 0.9) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35) !important;
  }

  body .dartee-home .lifesec__cta,
  .lifesec__cta {
    margin-top: 18px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.2em !important;
    border-bottom-width: 1px !important;
  }
}
