/* Argo “Visit Argo” — scoped to .argo-visit; safe to delete to revert */

.argo-visit {
  --argo-plum: #29121c;
  --argo-blush: #fffaf8;
  --argo-cream: #fff6f1;
  --argo-peach: #ecaf92;
  --argo-neon: rgba(236, 175, 146, 0.28);
  --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-visit__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  grid-template-areas: "visual copy";
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.argo-visit__copy {
  grid-area: copy;
  max-width: 28rem;
  justify-self: start;
}

.argo-visit__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-visit__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-visit__body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(41, 18, 28, 0.78);
}

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

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

/* Address / hours / phone often follow the invite — slightly tighter */
.argo-visit__body p + p {
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(41, 18, 28, 0.72);
}

.argo-visit__body a {
  color: var(--argo-plum);
  text-decoration: underline;
  text-decoration-color: rgba(41, 18, 28, 0.28);
  text-underline-offset: 0.15em;
  transition: text-decoration-color 200ms ease;
}

.argo-visit__body a:hover {
  text-decoration-color: rgba(41, 18, 28, 0.7);
}

.argo-visit__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-visit__cta:hover {
  background: #3d1c2a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(61, 28, 42, 0.16);
}

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

.argo-visit__visual {
  grid-area: visual;
  position: relative;
  min-width: 0;
}

.argo-visit__glow {
  position: absolute;
  inset: 12% 8% 18% 6%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 40% 45%,
    var(--argo-neon) 0%,
    rgba(255, 246, 241, 0) 70%
  );
  pointer-events: none;
  z-index: 0;
}

.argo-visit__photos {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 5 / 6;
}

.argo-visit__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--argo-border);
  background: #fff8f4;
  box-shadow: 0 18px 40px rgba(41, 18, 28, 0.1);
}

.argo-visit__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.argo-visit__photo--main {
  position: absolute;
  inset: 0 12% 10% 0;
  z-index: 1;
}

.argo-visit__photo--detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  z-index: 2;
  box-shadow: 0 14px 32px rgba(41, 18, 28, 0.14);
}

.argo-visit__photos--single .argo-visit__photo--main {
  inset: 0;
}

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

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

  .argo-visit__photos {
    max-width: 420px;
    aspect-ratio: 4 / 5;
  }
}

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

  .argo-visit__layout {
    gap: 1.5rem;
  }

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

  .argo-visit__photos {
    max-width: 100%;
  }

  .argo-visit__photo--main {
    inset: 0 10% 8% 0;
  }

  .argo-visit__photos--single .argo-visit__photo--main {
    inset: 0;
  }

  .argo-visit__photo--detail {
    width: 35%;
    bottom: 8%;
    right: 2%;
  }

  .argo-visit__body a[href^="tel:"] {
    color: rgba(41, 18, 28, 0.72);
    text-decoration: underline;
    text-decoration-color: rgba(41, 18, 28, 0.28);
    text-underline-offset: 0.15em;
    transition:
      color 200ms ease,
      text-decoration-color 200ms ease;
  }

  .argo-visit__body a[href^="tel:"]:hover,
  .argo-visit__body a[href^="tel:"]:focus-visible {
    color: #29121c;
    text-decoration-color: rgba(41, 18, 28, 0.7);
  }
}
