/* ============================================================
   DARTEE — TWO-PANEL PHOTOGRAPHIC MOMENT + COMPACT EDUCATION
   Loaded last: intentionally overrides legacy munisec/wtdsec.
   ============================================================ */

.duosec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #082a24;
  margin: 0;
  padding: 0 !important;
  border: 0;
}

.duosec__panel {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  height: 110vh;
  max-height: 1100px;
  display: block;
  background: #082a24;
}

.duosec__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: normal !important;
}

/* taller panels show the full golfer and more texture */
.duosec__img--muni { object-position: 50% 55%; }
.duosec__img--wtd  { object-position: 50% 30%; }

.duosec__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 42, 36, 0.5) 0%, rgba(8, 42, 36, 0.18) 34%, rgba(8, 42, 36, 0) 62%);
  pointer-events: none;
}


.duosec__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
  z-index: 2;
}

.duosec__eyebrow {
  display: block;
  font-family: Archivo, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ec4d8b;
  margin: 0 0 14px;
  text-shadow: 0 1px 10px rgba(8, 42, 36, 0.85), 0 0 22px rgba(8, 42, 36, 0.65);
}


.duosec__title {
  font-family: Anton, Archivo, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #f4f0e6;
  margin: 0;
  text-shadow: 0 2px 18px rgba(8, 42, 36, 0.45);
}

.duosec__cta {
  display: inline-block;
  margin-top: 20px;
  font-family: Archivo, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f4f0e6;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.5);
  text-shadow: 0 1px 8px rgba(8, 42, 36, 0.75);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.duosec__cta span { color: #ec4d8b; margin-left: 6px; text-shadow: 0 1px 6px rgba(8, 42, 36, 0.85); }
.duosec__cta:hover { color: #ec4d8b; border-bottom-color: #ec4d8b; }

/* ---------- COMPACT PRODUCT EDUCATION ---------- */
.duofeat {
  background: #f4f0e6;
  background-image: none !important;
  padding: clamp(24px, 2.6vw, 34px) 20px !important;
}

.duofeat__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.duofeat__item {
  padding: 2px clamp(16px, 3vw, 40px);
  text-align: center;
  border-left: 1px solid rgba(8, 42, 36, 0.1);
}
.duofeat__item:first-child { border-left: 0; }


.duofeat__title {
  font-family: Anton, Archivo, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #082a24;
  margin: 0 0 8px;
}

.duofeat__text {
  font-family: Archivo, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(8, 42, 36, 0.72);
  margin: 0;
  max-width: 30ch;
  margin-inline: auto;
}

/* ---------- MOBILE ---------- */
@media (max-width: 860px) {
  .duosec {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .duosec__panel {
    min-height: 80vh;
    height: 80vh;
    max-height: none;
  }
  .duosec__img--muni { object-position: 50% 50%; }
  .duosec__img--wtd  { object-position: 50% 0%; }

  .duosec__copy { bottom: 8%; padding: 0 22px; }
  .duosec__title { font-size: clamp(30px, 9vw, 40px); }
  .duosec__eyebrow { margin-bottom: 12px; }

  .duofeat__inner {
    grid-template-columns: 1fr;
  }
  .duofeat__item {
    border-left: 0;
    border-top: 1px solid rgba(8, 42, 36, 0.14);
    padding: 20px 8px;
  }
  .duofeat__item:first-child { border-top: 0; padding-top: 0; }
}

/* Muni: marker + buckle centered vertically; copy sits above with a stronger
   top-down scrim so the pink eyebrow and CTA read cleanly on the woven texture. */
.duosec__panel:first-child .duosec__copy { bottom: auto; top: 15%; }
.duosec__panel:first-child .duosec__scrim {
  background: linear-gradient(to bottom, rgba(8, 42, 36, 0.45) 0%, rgba(8, 42, 36, 0.15) 30%, rgba(8, 42, 36, 0) 62%);
}

/* right panel: copy group lifted ~6%, matching pink eyebrow */
.duosec__panel + .duosec__panel .duosec__copy { bottom: 29%; }
.duosec__panel + .duosec__panel .duosec__eyebrow { color: #ec4d8b; }
.duosec__panel + .duosec__panel .duosec__scrim {
  background: linear-gradient(to top, rgba(8, 42, 36, 0.42) 0%, rgba(8, 42, 36, 0.26) 44%, rgba(8, 42, 36, 0.04) 72%);
}

@media (max-width: 1100px) {
  .duosec__title { font-size: clamp(26px, 3.4vw, 40px); }
  .duosec__copy { padding: 0 clamp(16px, 3vw, 32px); }
}

@media (max-width: 860px) {
  .duosec__img--muni { object-position: 16% 84%; }
  .duosec__img--wtd  { object-position: 52% 72%; }
  .duosec__copy { bottom: 14%; }
  .duosec__panel:first-child .duosec__copy { top: 12%; bottom: auto; }
  .duosec__panel + .duosec__panel .duosec__copy { bottom: 20%; }
}

