/* ============================================
   REVAMP STORY — 2-Column Origin Story
   ============================================ */

.rstory {
  position: relative;
  overflow: hidden;
}

/* Grid */
.rstory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 960px) {
  .rstory__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
}

/* Media column */
.rstory__image-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .rstory__image-frame { min-height: 480px; }
}

@media (min-width: 960px) {
  .rstory__image-frame { min-height: 580px; }
}

.rstory__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rstory__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e2d6 0%, #d4ccbb 40%, #c9bfaa 100%);
  position: relative;
}

.rstory__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(60, 66, 46, 0.04) 10px,
      rgba(60, 66, 46, 0.04) 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(60, 66, 46, 0.04) 10px,
      rgba(60, 66, 46, 0.04) 11px
    );
}

/* Content column */
.rstory__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 960px) {
  .rstory__content { gap: 18px; }
}

/* Eyebrow */
.rstory__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-primary);
  line-height: 1.4;
}

/* Heading */
.rstory__heading {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0.018em;
  font-size: clamp(2.25rem, 5vw + 0.5rem, 4.5rem);
}

.rstory__heading-line1 {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-primary);
}

.rstory__heading-line2 {
  display: block;
  font-weight: 400;
  color: var(--clr-primary);
  line-height: 1.15;
}

/* Body paragraphs */
.rstory__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rstory__paragraph,
.rstory__body p {
  margin: 0;
  font-size: var(--font-size-lg);
  line-height: 1.65;
  font-weight: 300;
  color: var(--clr-text-secondary);
}

/* Closing quote */
.rstory__quote {
  margin: var(--space-xs) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: var(--clr-primary);
}

/* Link CTA */
.rstory__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-primary);
  opacity: 0.75;
  transition: opacity 0.3s ease, gap 0.3s ease;
}

.rstory__cta:hover {
  opacity: 1;
  gap: 12px;
}

.rstory__cta:focus-visible {
  outline: 2px solid var(--clr-brand-accent);
  outline-offset: 4px;
}

.rstory__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
