/* =========================================================
   HOUSE OF SVARA — OUR STORY PAGE
   ========================================================= */

.site-nav a[aria-current="page"] {
  color: var(--purple-700);
}


/* Hero */

.story-page-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem max(7vw, 2rem);
  background:
    linear-gradient(
      135deg,
      #f5ecdf 0%,
      #e7d1ba 48%,
      #dbc2cd 100%
    );
}

.story-page-logo {
  display: grid;
  place-items: center;
}

.story-page-logo img {
  width: min(210px, 60%);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(42, 16, 59, 0.14));
}

.story-page-intro {
  max-width: 720px;
}

.story-page-intro h1 {
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.story-page-intro > p:last-child {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: #5e505b;
  font-size: 1.05rem;
}


/* Main story */

.story-page-body {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

.story-copy-block h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 500;
}

.story-copy-block > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.story-quote {
  padding: 2.5rem;
  border-radius: 28px;
  background: var(--purple-950);
  color: white;
  box-shadow: var(--shadow);
}

.story-quote > span {
  display: block;
  height: 60px;
  color: var(--gold-300);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.story-quote blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.story-quote p {
  margin: 1.4rem 0 0;
  color: var(--gold-300);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Values */

.story-values {
  padding: 6rem max(6vw, 2rem);
  background: #ffffff;
}

.story-values-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.story-values-head h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 500;
}

.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.story-values-grid article {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--ivory);
}

.story-values-grid span {
  color: var(--gold-600);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.story-values-grid h3 {
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: 600;
}

.story-values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}


/* Curation */

.story-curation {
  padding: 6rem max(7vw, 2rem);
  background:
    linear-gradient(
      135deg,
      #efe3d3 0%,
      #dcc5aa 55%,
      #cfae87 100%
    );
}

.story-curation > div {
  max-width: 780px;
}

.story-curation h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 500;
}

.story-curation p {
  color: #5e505b;
}

.story-curation .button {
  margin-top: 1.2rem;
}


/* CTA */

.story-contact {
  padding: 5.5rem max(6vw, 2rem);
  text-align: center;
  background:
    linear-gradient(
      135deg,
      var(--olive-700),
      #424724
    );
  color: white;
}

.story-contact .eyebrow {
  color: var(--gold-300);
}

.story-contact h2 {
  color: white;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 500;
}

.story-contact > p:not(.eyebrow) {
  margin: 1rem auto 1.8rem;
  color: rgba(255, 255, 255, 0.78);
}


/* Mobile */

@media (max-width: 800px) {

  .story-page-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.4rem;
    text-align: center;
  }

 .story-page-logo img {
  width: 150px;
}
  .story-page-intro > p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .story-page-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
  }

  .story-values {
    padding: 4rem 1rem;
  }

  .story-values-grid {
    grid-template-columns: 1fr;
  }

  .story-curation {
    padding: 4rem 1.4rem;
  }

  .story-contact {
    padding: 4rem 1.4rem;
  }

}
