/* Argo homepage olive-oil teaser — scoped to .argo-home-olive; safe to delete to revert */

.argo-home-olive {
  --argo-plum: #29121c;
  --argo-blush: #fffaf8;
  --argo-cream: #fff6f1;
  --argo-peach: #ecaf92;
  --argo-border: rgba(41, 18, 28, 0.08);
  --argo-muted: rgba(41, 18, 28, 0.78);

  color: var(--argo-plum);
  background: linear-gradient(180deg, var(--argo-cream) 0%, var(--argo-blush) 100%);
  /* Tighter top gap so the teaser reads as a follow-on to Our Story */
  padding: clamp(1.35rem, 2.75vw, 2rem) 0 clamp(2.25rem, 4.5vw, 3.5rem);
  overflow-x: clip;
}

.argo-home-olive__card {
  max-width: 58.5rem; /* ~12.5% wider than prior 52rem; still not full-bleed */
  margin: 0 auto;
  padding: clamp(1.5rem, 3.25vw, 2.25rem) clamp(1.4rem, 3.25vw, 2.55rem);
  border-radius: 20px;
  border: 1px solid var(--argo-border);
  background: var(--argo-blush);
  box-shadow: 0 10px 28px rgba(41, 18, 28, 0.05);
}

.argo-home-olive__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: clamp(1.35rem, 3.25vw, 2.5rem);
  align-items: center;
}

.argo-home-olive__copy {
  max-width: 29rem;
  min-width: 0;
}

.argo-home-olive__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--argo-peach);
}

.argo-home-olive__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--argo-plum);
  overflow-wrap: break-word;
}

.argo-home-olive__body {
  margin: 0 0 0.9rem;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--argo-muted);
}

.argo-home-olive__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0.15rem 0 0;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(41, 18, 28, 0.72);
}

.argo-home-olive__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 175, 146, 0.62);
  background: rgba(236, 175, 146, 0.28);
  color: var(--argo-plum);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.argo-home-olive__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  min-width: 150px;
  min-height: 48px;
  height: auto;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--argo-plum);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.argo-home-olive__cta:hover {
  background: #3d1c2a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(61, 28, 42, 0.16);
}

.argo-home-olive__cta:focus-visible {
  outline: 3px solid rgba(236, 175, 146, 0.75);
  outline-offset: 3px;
}

.argo-home-olive__visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.35rem, 1.5vw, 0.75rem) 0;
}

/* Soft circular halo — same treatment as /olive-oil/ product section */
.argo-home-olive__glow {
  position: absolute;
  inset: 8% 6% 10% 6%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 48%,
    rgba(236, 175, 146, 0.34) 0%,
    rgba(255, 246, 241, 0.45) 38%,
    rgba(255, 250, 248, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.argo-home-olive__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(96%, 12.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 46%,
    rgba(255, 250, 248, 0.95) 0%,
    rgba(255, 246, 241, 0.55) 42%,
    rgba(236, 175, 146, 0.18) 68%,
    rgba(236, 175, 146, 0) 100%
  );
  box-shadow: 0 0 0 1px rgba(236, 175, 146, 0.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.argo-home-olive__figure {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 10.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.argo-home-olive__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 22px rgba(41, 18, 28, 0.1));
}

/* Desktop only: nudge bottle slightly lower inside the halo for grounding */
@media (min-width: 900px) {
  .argo-home-olive__figure {
    transform: translateY(6px);
  }
}

@media (max-width: 899px) {
  .argo-home-olive__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: stretch;
  }

  .argo-home-olive__copy {
    max-width: 36rem;
  }

  .argo-home-olive__visual {
    order: 2;
  }

  .argo-home-olive__figure {
    max-width: 9rem;
  }
}

@media (max-width: 767px) {
  .argo-home-olive {
    /* Keep mobile breathing room; only modest top trim vs desktop story link */
    padding: clamp(1.65rem, 5.5vw, 2.35rem) 0 clamp(1.75rem, 6vw, 2.5rem);
  }

  .argo-home-olive__card {
    padding: 1.35rem 1.15rem 1.15rem;
    border-radius: 16px;
  }

  .argo-home-olive__layout {
    gap: 1rem;
  }

  .argo-home-olive__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .argo-home-olive__cta {
    width: 100%;
    max-width: none;
  }

  .argo-home-olive__figure {
    max-width: 6.6rem; /* ~17.5% smaller than prior 8rem */
  }

  .argo-home-olive__halo {
    width: min(96%, 8.7rem); /* ~17% smaller than prior 10.5rem */
  }
}

@media (max-width: 399px) {
  .argo-home-olive__title {
    font-size: 1.4rem;
  }

  .argo-home-olive__offer {
    font-size: 0.9rem;
  }
}
