/* Argo “Our Story” — scoped to .argo-story; safe to delete to revert */

.argo-story {
  --argo-plum: #29121c;
  --argo-blush: #fffaf8;
  --argo-cream: #fff6f1;
  --argo-peach: #ecaf92;
  --argo-motif: rgba(41, 18, 28, 0.1);
  --argo-border: rgba(41, 18, 28, 0.08);

  background: linear-gradient(180deg, var(--argo-blush) 0%, var(--argo-cream) 100%);
  color: var(--argo-plum);
  padding: clamp(3.75rem, 8vw, 7rem) 0;
  overflow-x: clip;
}

.argo-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.argo-story__copy {
  max-width: 28rem;
}

.argo-story__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(41, 18, 28, 0.55);
}

.argo-story__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--argo-plum);
}

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

.argo-story__body p {
  margin: 0 0 1rem;
}

.argo-story__body p:last-child {
  margin-bottom: 0;
}

.argo-story__closing {
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--argo-plum);
}

.argo-story__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  min-width: 150px;
  height: 51px;
  padding: 0 2.15rem;
  border-radius: 999px;
  background: var(--argo-plum);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

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

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

.argo-story__visual {
  position: relative;
  min-width: 0;
}

.argo-story__panel {
  position: relative;
  isolation: isolate;
  aspect-ratio: 5 / 6;
  max-height: min(640px, 72vh);
  margin-inline: auto;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff8f4 0%, #ffe8dc 55%, #ffdccb 100%);
  border: 1px solid var(--argo-border);
  overflow: hidden;
}

.argo-story__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 899px) {
  .argo-story__layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 2.75rem);
  }

  .argo-story__copy {
    max-width: 36rem;
  }

  .argo-story__panel {
    aspect-ratio: 4 / 5;
    max-height: min(480px, 60vh);
  }
}

@media (max-width: 767px) {
  .argo-story {
    padding: clamp(3rem, 10vw, 4rem) 0;
  }

  .argo-story__layout {
    gap: 1.5rem;
  }

  .argo-story__cta {
    width: auto;
    min-width: 155px;
  }
}
