/* ============================================================
   THE DARTEE STANDARD — heritage-green panel + B&W editorial photo
   ============================================================ */

.dartee-home .standard {
  background-color: #082A24;
}

.dartee-home .standard__inner {
  display: grid;
  grid-template-columns: 41% 59%;
  gap: 0;
  min-height: clamp(575px, 60vh, 625px);
  height: clamp(575px, 60vh, 625px);
}

/* LEFT — copy */
.dartee-home .standard__copy {
  background: #082A24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.5vw, 72px) clamp(32px, 4.5vw, 72px);
  transform: translateY(clamp(8px, 1.2vh, 18px));
}

.dartee-home .standard__eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EC4D8B;
  margin-bottom: clamp(16px, 1.8vw, 22px);
}

.dartee-home .standard__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #F4F0E6;
  margin: 0 0 clamp(18px, 2vw, 26px);
  max-width: 18ch;
}

.dartee-home .standard__body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.4;
  color: rgba(244, 240, 230, 0.78);
  margin: 0 0 clamp(24px, 2.6vw, 34px);
  max-width: 30ch;
}

.dartee-home .standard__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4F0E6;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}

.dartee-home .standard__cta:hover { color: #EC4D8B; }

.dartee-home .standard__cta-text {
  position: relative;
  padding-bottom: 5px;
}

.dartee-home .standard__cta-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 1px;
  background: #EC4D8B;
}

.dartee-home .standard__cta:hover .standard__cta-text::after {
  width: 100%;
  transition: width 0.2s ease;
}

.dartee-home .standard__cta:hover span[aria-hidden] {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

/* RIGHT — photograph, no overlays */
.dartee-home .standard__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #082A24;
}

.dartee-home .standard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  display: block;
}

.dartee-home .standard__media::after { content: none; }

/* MOBILE — image first, then green panel */
@media (max-width: 900px) {
  .dartee-home .standard__inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .dartee-home .standard__media {
    order: 1;
    height: clamp(360px, 78vw, 480px);
  }

  .dartee-home .standard__media img {
    object-position: 62% 52%;
  }

  .dartee-home .standard__copy {
    order: 2;
    padding: clamp(32px, 7vw, 46px) clamp(24px, 6vw, 44px);
    transform: none;
  }

  .dartee-home .standard__title { max-width: 22ch; }
}
