:root {
    --ink: #080604;
    --black: #050403;
    --cream: #f5ead5;
    --gold: #d7b866;
    --gold2: #f0d88a;
    --pink: #d55399;
    --purple: #7f73da;
    --muted: #c9b99e;
    --line: rgba(215, 184, 102, 0.22);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--black);
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
}
.interior-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4vw;
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.72), transparent);
    backdrop-filter: blur(10px);
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-link img {
    width: 210px;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
}
.interior-nav nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.interior-nav nav a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 10px;
    font-weight: 800;
    color: #dbcba9;
}
.interior-nav nav a:hover {
    color: #fff;
}
.mobile-toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    border-radius: 99px;
    padding: 10px 14px;
}
.page-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 150px 6vw 90px;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(4, 4, 5, 0.98) 0%,
      rgba(4, 4, 5, 0.92) 30%,
      rgba(4, 4, 5, 0.62) 48%,
      rgba(4, 4, 5, 0.12) 70%,
      rgba(4, 4, 5, 0.04) 100%
    ),
    url("../assets/yasha-sterling-black-blazer-fullb.png");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 62% 0%;
  background-attachment: scroll;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 36%,
      rgba(0, 0, 0, 0.32) 100%
    );
}

.page-hero > * {
  position: relative;
  z-index: 2;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.9);
}
.hero-copy {
  width: min(620px, 47vw);
  max-width: 620px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}
.page-hero h1 {
  max-width: 660px;
  margin: 15px 0 24px;
  font:
    400 clamp(58px, 6.8vw, 106px) / 0.88
    Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.055em;
}

.page-hero .lead {
  max-width: 610px;
  margin: 0 0 14px;
  color: rgba(248, 242, 234, 0.82);
  font:
    400 clamp(17px, 1.5vw, 22px) / 1.65
    Inter,
    Arial,
    sans-serif;
}

.page-hero .lead:first-of-type {
  color: #f8f2ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.5;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border: 1px solid rgba(240, 216, 138, 0.64);
    border-radius: 99px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 10px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.025);
}
.btn:hover {
    background: rgba(215, 184, 102, 0.14);
    transform: translateY(-3px);
}
.content-section {
    padding: 100px 6vw;
    background: #090604;
}
.content-section.alt {
    background: #f4ead8;
    color: #321f12;
}
.section-head {
    max-width: 950px;
    margin-bottom: 50px;
}
.section-head h2 {
    font:
        400 clamp(48px, 7vw, 100px) / 0.9 Georgia,
        serif;
    margin: 10px 0 20px;
    letter-spacing: -0.04em;
}
.section-head p {
    font:
        italic 22px/1.55 Georgia,
        serif;
    color: #d7c5a7;
}
.alt .section-head p {
    color: #6b4a31;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

}
.card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}
.alt .card {
    background: #fffaf1;
    border-color: rgba(92, 59, 25, 0.18);
    box-shadow: 0 18px 45px rgba(81, 47, 15, 0.12);
}
.card h3 {
    font:
        400 34px/1 Georgia,
        serif;
    margin: 10px 0 15px;
}
.card p {
    line-height: 1.65;
    color: #d4c4aa;
}
.alt .card p {
    color: #6b4a31;
}
.card small {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 900;
}
.feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}
.feature-media {
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #120b07;
}
.feature-media img,
.feature-media video {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}
.feature-copy h2 {
    font:
        400 clamp(50px, 6vw, 94px) / 0.9 Georgia,
        serif;
    margin: 10px 0 22px;
}
.feature-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: #d4c4aa;
}
.quote-band {
    padding: 110px 7vw;
    text-align: center;
    background: radial-gradient(circle at center, rgba(127, 115, 218, 0.16), transparent 35%), #08060c;
}
.quote-band blockquote {
    max-width: 1200px;
    margin: auto;
    font:
        italic clamp(45px, 7vw, 110px) / 0.95 Georgia,
        serif;
    color: #fff1d2;
}
.timeline {
    display: grid;
    gap: 18px;
    max-width: 1100px;
}
.timeline article {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}
.timeline strong {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
}
.timeline h3 {
    font:
        400 32px Georgia,
        serif;
    margin: 0 0 8px;
}
.timeline p {
    margin: 0;
    color: #d1c0a4;
    line-height: 1.6;
}
.page-footer {
    padding: 90px 6vw;
    text-align: center;
    background: #030201;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.page-footer img {
    width: min(520px, 86vw);
    margin-bottom: 24px;
}
.page-footer p {
    color: #a99471;
}
.page-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.page-footer nav a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
    color: #d9c49a;
}
.media-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.media-item {
    min-height: 280px;
    border-radius: 20px;
    border: 1px solid var(--line);
    display: grid;
    place-items: end start;
    padding: 22px;
    background: linear-gradient(145deg, #2a1710, #0b0705);
}
.media-item h3 {
    font:
        400 28px Georgia,
        serif;
    margin: 0;
}
.list-clean {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.list-clean li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: #d6c6ac;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-card {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}
.contact-card h3 {
    font:
        400 36px Georgia,
        serif;
    margin: 0 0 12px;
}
@media (max-width: 980px) {
    .grid,
    .media-strip {
        grid-template-columns: 1fr 1fr;
    }
    .feature,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .interior-nav nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .interior-nav.is-open nav {
        display: flex;
        position: absolute;
        top: 80px;
        left: 4vw;
        right: 4vw;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(5, 4, 3, 0.97);
    }
}
@media (max-width: 650px) {
    .brand-link img {
        width: 165px;
    }
    .page-hero {
        padding: 130px 6vw 70px;
    }
    .page-hero h1 {
        font-size: 58px;
    }
    .grid,
    .media-strip {
        grid-template-columns: 1fr;
    }
    .timeline article {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .content-section {
        padding: 75px 6vw;
    }
    .feature-media,
    .feature-media img,
    .feature-media video {
        min-height: 360px;
    }
}


/* =========================================================
   ABOUT PAGE: CREDIBILITY + EVOLUTION OF THE WORK
========================================================= */

.ys-section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.ys-section-intro {
  max-width: 850px;
  margin-bottom: 56px;
}

.ys-section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.ys-eyebrow {
  margin: 0 0 14px;
  color: #d7b46a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ys-section-intro h2 {
  margin: 0;
  color: #f8f2ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.ys-section-intro h2 span {
  color: #ff2b93;
}

.ys-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(248, 242, 234, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}


/* CREDIBILITY BAND */

.ys-credibility {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 43, 147, 0.08),
      transparent 34%
    ),
    #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ys-credibility-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ys-stat-card {
  min-height: 185px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.ys-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 43, 147, 0.52);
  background: rgba(255, 43, 147, 0.055);
}

.ys-stat-card strong {
  display: block;
  color: #ff2b93;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.ys-stat-card span {
  display: block;
  margin-top: 14px;
  color: rgba(248, 242, 234, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}


/* EVOLUTION SECTION */

.ys-evolution {
  position: relative;
  padding: clamp(100px, 12vw, 170px) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(123, 61, 145, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 40%,
      rgba(255, 43, 147, 0.065),
      transparent 25%
    ),
    #050505;
}

.ys-evolution::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
}

.ys-evolution .ys-section-shell {
  position: relative;
  z-index: 1;
}

.ys-evolution-path {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
}

.ys-evolution-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.008)
    );
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.ys-evolution-card:hover {
  transform: translateX(8px);
  border-color: rgba(215, 180, 106, 0.5);
}

.ys-evolution-card--featured {
  border-color: rgba(255, 43, 147, 0.38);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 43, 147, 0.1),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(215, 180, 106, 0.05),
      rgba(255, 43, 147, 0.04)
    );
}

.ys-evolution-number {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 180, 106, 0.42);
  border-radius: 50%;
  color: #d7b46a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.ys-evolution-era {
  margin: 0;
  color: #d7b46a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ys-evolution-content h3 {
  margin: 12px 0 12px;
  color: #f8f2ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.ys-evolution-content > p:last-of-type {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 242, 234, 0.66);
  line-height: 1.75;
}

.ys-evolution-connector {
  display: grid;
  place-items: center;
  height: 64px;
}

.ys-evolution-connector span {
  display: block;
  width: 1px;
  height: 44px;
  background:
    linear-gradient(
      #d7b46a,
      rgba(255, 43, 147, 0.65),
      transparent
    );
}

.ys-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #ff2b93;
  font-weight: 700;
  text-decoration: none;
}

.ys-text-link:hover {
  gap: 14px;
}

.ys-evolution-closing {
  max-width: 900px;
  margin: 72px auto 0;
  text-align: center;
}

.ys-evolution-closing p {
  margin: 0;
  color: rgba(248, 242, 234, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.55;
}

.ys-evolution-closing strong {
  color: #f8f2ea;
  font-weight: 400;
}

.ys-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 30px;
  padding: 13px 20px;
  border: 1px solid #ff2b93;
  border-radius: 999px;
  background: #ff2b93;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ys-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 43, 147, 0.25);
}


/* RESPONSIVE */

@media (max-width: 1050px) {
  .ys-credibility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ys-section-shell {
    width: min(100% - 28px, 1240px);
  }

  .ys-credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ys-evolution-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ys-evolution-number {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 520px) {
  .ys-credibility-grid {
    grid-template-columns: 1fr;
  }

  .ys-stat-card {
    min-height: 150px;
  }
}

@media (max-width: 1050px) {
  .page-hero {
    min-height: 820px;
    padding: 140px 5vw 75px;

    background-image:
      linear-gradient(
        90deg,
        rgba(4, 4, 5, 0.97) 0%,
        rgba(4, 4, 5, 0.84) 42%,
        rgba(4, 4, 5, 0.28) 72%,
        rgba(4, 4, 5, 0.08) 100%
      ),
      url("../assets/yasha-sterling-black-blazer-fullb.png");

    background-position: 58% center;
  }

  .hero-copy {
    width: min(600px, 58vw);
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: auto;
    padding: 520px 24px 70px;
    align-items: end;

    background-image:
      linear-gradient(
        180deg,
        rgba(4, 4, 5, 0.02) 0%,
        rgba(4, 4, 5, 0.12) 38%,
        rgba(4, 4, 5, 0.93) 66%,
        #040405 82%
      ),
      url("../assets/yasha-sterling-black-blazer-fullb.png");

    background-size: auto 570px;
    background-position: 55% top;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .page-hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }
}