/* Argo “Why You’ll Love Argo” — scoped to .argo-love; safe to delete to revert */

.argo-love {
  --argo-plum: #29121c;
  --argo-blush: #fffaf8;
  --argo-cream: #fff6f1;
  --argo-border: rgba(41, 18, 28, 0.08);
  --argo-border-strong: rgba(41, 18, 28, 0.14);
  --argo-motif: rgba(41, 18, 28, 0.12);

  background: #ffffff;
  color: var(--argo-plum);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  overflow-x: clip;
}

.argo-love__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.argo-love__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--argo-plum);
  margin: 0 0 0.85rem;
}

.argo-love__intro {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(41, 18, 28, 0.78);
  margin: 0;
}

.argo-love__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.argo-love__card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(165deg, var(--argo-blush) 0%, var(--argo-cream) 100%);
  border: 1px solid var(--argo-border);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.65rem) clamp(1.65rem, 2.5vw, 2.1rem);
  box-shadow: 0 1px 2px rgba(41, 18, 28, 0.03);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.argo-love__card:hover,
.argo-love__card:focus-within {
  transform: translateY(-3px);
  border-color: var(--argo-border-strong);
  box-shadow: 0 10px 24px rgba(41, 18, 28, 0.08);
}

.argo-love__card-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--argo-plum);
  margin: 0 0 0.65rem;
}

.argo-love__card-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(41, 18, 28, 0.78);
  margin: 0;
}

/* Motifs — decorative only; coherent Argo line-art (~10–12% opacity) */
.argo-love__motif {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 0;
  width: 2.75rem; /* 44px */
  height: 2.75rem;
  pointer-events: none;
  color: var(--argo-plum);
  opacity: 0.11;
  box-sizing: border-box;
}

/* 1 — Greek meander / key (abstract line frame) */
.argo-love__motif--halo {
  border: 1.5px solid currentColor;
}

.argo-love__motif--halo::before,
.argo-love__motif--halo::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: 1.5px solid currentColor;
}

.argo-love__motif--halo::before {
  top: -1.5px;
  left: 28%;
  width: 44%;
  height: 38%;
  border-bottom: none;
  border-left: none;
}

.argo-love__motif--halo::after {
  right: -1.5px;
  bottom: 28%;
  width: 38%;
  height: 44%;
  border-left: none;
  border-top: none;
}

/* 2 — soft steam curves (no cup) */
.argo-love__motif--wing::before,
.argo-love__motif--wing::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
}

.argo-love__motif--wing::before {
  left: 18%;
  top: 6%;
  width: 42%;
  height: 88%;
  transform: rotate(-8deg);
}

.argo-love__motif--wing::after {
  left: 48%;
  top: 14%;
  width: 36%;
  height: 72%;
  transform: rotate(6deg);
  opacity: 0.9;
}

/* 3 — clearer cinnamon-roll spiral */
.argo-love__motif--spiral {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(28deg);
}

.argo-love__motif--spiral::before,
.argo-love__motif--spiral::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.argo-love__motif--spiral::before {
  inset: 0.38rem;
  border-bottom-color: transparent;
  transform: rotate(55deg);
}

.argo-love__motif--spiral::after {
  inset: 0.76rem;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(20deg);
}

/* 4 — thin halo ring + tiny sparkle accent */
.argo-love__motif--curve {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.argo-love__motif--curve::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  right: 0.28rem;
  width: 0.45rem;
  height: 0.45rem;
  background:
    linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat;
}

.argo-love__motif--curve::after {
  content: none;
}

@media (max-width: 991.98px) {
  .argo-love__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .argo-love {
    padding: 2.75rem 0;
  }

  .argo-love__header {
    margin-bottom: 1.75rem;
    padding: 0 0.25rem;
  }

  .argo-love__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .argo-love__card {
    padding: 1.4rem 1.25rem 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .argo-love__card,
  .argo-love__card:hover,
  .argo-love__card:focus-within {
    transition: none;
    transform: none;
  }
}
