/* =========================================================
   THE INNER SHIFT — MY STORY
   Page-specific visual system
========================================================= */

.my-story {
  --story-ink: var(--tis-black, #10100f);
  --story-soft: #28231d;
  --story-cream: var(--tis-cream, #f7f5f1);
  --story-paper: #fbfaf7;
  --story-gold: var(--tis-gold, #c28a2b);
  --story-gold-light: #dfbb76;
  --story-muted: #766e63;
  --story-line: rgba(16, 16, 15, 0.12);
  --story-dark-line: rgba(247, 245, 241, 0.18);
  position: relative;
  overflow: clip;
  background: var(--story-cream);
}

.story-container {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.story-section {
  position: relative;
}

.story-bg-word,
.story-chapter__word,
.story-purpose__word {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 19vw, 300px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.7;
  color: rgba(194, 138, 43, 0.045);
  white-space: nowrap;
}

.story-bg-word {
  top: 11%;
  right: -3%;
}
.story-chapter__word {
  top: 14%;
  left: -4%;
}
.story-purpose__word {
  top: 18%;
  right: -5%;
}
.story-chapter__word--light {
  color: rgba(247, 245, 241, 0.035);
}

.story-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.story-section-number {
  color: var(--story-gold);
  font:
    600 12px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.08em;
}

.story-line {
  width: 54px;
  height: 1px;
  background: rgba(194, 138, 43, 0.55);
}

.story-label {
  color: #756d63;
  font:
    600 13px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.story-heading--light .story-label {
  color: rgba(247, 245, 241, 0.58);
}

.story-title,
.story-hero-copy h2,
.story-profile h1,
.story-final h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.story-title {
  margin: 0 0 32px;
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 0.98;
  max-width: 820px;
}

.story-title em,
.story-hero-copy h2 em,
.story-profile h1 em,
.story-purpose__closing strong,
.story-final em {
  color: var(--story-gold);
  font-style: italic;
}

.story-copy {
  max-width: 760px;
}

.story-copy p,
.story-dark-copy p,
.story-purpose__closing p,
.story-learning__commitment,
.story-profile__intro {
  margin: 0 0 19px;
  font:
    400 16px/1.8 "DM Sans",
    sans-serif;
  color: #4d4841;
}

.story-copy strong {
  font-weight: 600;
  color: var(--story-ink);
}

.story-reveal {
  will-change: transform, opacity;
}

/* PROFILE / HERO */
.story-hero {
  min-height: 100vh;
  padding: calc(var(--header-height, 92px) + 58px) 0 90px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(330px, 385px) minmax(0, 1fr);
  gap: clamp(58px, 7vw, 120px);
  align-items: start;
}

.story-profile {
  position: sticky;
  top: calc(var(--header-height, 92px) + 30px);
  align-self: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 16, 15, 0.08);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
}

.story-profile__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d5cec3;
}

.story-profile__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.story-profile:hover .story-profile__image {
  transform: scale(1.035);
  filter: saturate(0.92);
}

.story-profile__image-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 16, 15, 0.24));
  pointer-events: none;
}

.story-profile__image-tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(16, 16, 15, 0.72);
  color: #f7f5f1;
  font:
    600 8px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.2em;
}

.story-profile__identity {
  padding: 28px 8px 18px;
  text-align: center;
}

.story-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--story-gold);
  font:
    600 8px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.25em;
}

.story-profile h1 {
  margin: 0;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 0.98;
}

.story-profile__role {
  margin: 14px 0 0;
  color: #7c5b2d;
  font:
    500 13px/1.55 "DM Sans",
    sans-serif;
  letter-spacing: 0.03em;
}

.story-profile__intro {
  margin: 18px auto 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.65;
}

.story-socials {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 7px 0 24px;
}

.story-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.1);
  border-radius: 50%;
  color: var(--story-ink);
  background: rgba(255, 255, 255, 0.5);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.story-socials a:hover {
  transform: translateY(-4px);
  color: #fff;
  background: var(--story-gold);
  border-color: var(--story-gold);
}

.story-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}
.story-socials svg circle {
  fill: none;
}

.story-profile__facts {
  border-top: 1px solid var(--story-line);
  padding-top: 8px;
}

.story-fact {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  padding: 14px 3px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.08);
}

.story-fact:last-child {
  border-bottom: 0;
}
.story-fact__icon {
  color: var(--story-gold);
  font:
    600 9px/1.5 "DM Sans",
    sans-serif;
}
.story-fact strong {
  display: block;
  font:
    600 12px/1.35 "DM Sans",
    sans-serif;
}
.story-fact small {
  display: block;
  margin-top: 3px;
  color: #777066;
  font:
    400 10px/1.45 "DM Sans",
    sans-serif;
}

.story-main {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 20px 28px;
}

.story-hero-copy {
  max-width: 850px;
}
.story-overline {
  margin: 0 0 18px;
  color: var(--story-gold);
  font:
    600 11px/1.3 "DM Sans",
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-hero-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(45px, 5.5vw, 86px);
  line-height: 0.96;
}

.story-hero-copy p:not(.story-overline) {
  max-width: 700px;
  margin: 0;
  color: #4d4841;
  font:
    400 18px/1.75 "DM Sans",
    sans-serif;
}

.story-hero-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  margin-top: 70px;
  padding-top: 17px;
  border-top: 1px solid rgba(194, 138, 43, 0.3);
  color: #756d63;
  font:
    600 9px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.22em;
}

.story-hero-note i {
  color: var(--story-gold);
  font-size: 18px;
  font-style: normal;
}

/* CHAPTER 2 */
.story-chapter {
  padding: 135px 0;
  background: #fbfaf7;
}
.story-chapter__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
}

.story-image-frame {
  position: relative;
  overflow: hidden;
  background: #ddd4c8;
}

.story-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.story-image-frame--tall {
  aspect-ratio: 4 / 5;
}
.story-image-frame--wide {
  aspect-ratio: 16 / 14;
}
.fa-brands {
  font-weight: 400;
  font-size: 17px;
}
.story-image-frame img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  transform: translateY(-7%);
  will-change: transform;
}
.story-image-caption {
  display: block;
  margin-top: 13px;
  color: #81796e;
  font:
    500 8px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-highlight {
  position: relative;
  margin-top: 36px;
  padding: 25px 28px 25px 62px;
  border-left: 2px solid var(--story-gold);
  background: rgba(194, 138, 43, 0.06);
}

.story-highlight__mark {
  position: absolute;
  left: 22px;
  top: 15px;
  color: var(--story-gold);
  font:
    400 44px/1 Georgia,
    serif;
}
.story-highlight p {
  margin: 0;
  color: #3e3933;
  font:
    400 19px/1.55 Georgia,
    serif;
}

/* DARK CHAPTER */
.story-chapter--dark {
  background: var(--story-ink);
  color: var(--story-cream);
}
.story-dark-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}
.story-title--light {
  color: var(--story-cream);
}
.story-dark-intro {
  position: sticky;
  top: calc(var(--header-height, 92px) + 45px);
}
.story-dark-body {
  padding-top: 3px;
}

.story-patterns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--story-dark-line);
  margin-bottom: 48px;
}
.story-patterns div {
  min-height: 130px;
  padding: 18px 12px;
  border-right: 1px solid var(--story-dark-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: background 0.35s ease;
}
.story-patterns div:last-child {
  border-right: 0;
}
.story-patterns div:hover {
  background: rgba(194, 138, 43, 0.1);
}
.story-patterns span {
  color: var(--story-gold-light);
  font:
    600 9px/1 "DM Sans",
    sans-serif;
}
.story-patterns strong {
  max-width: 110px;
  color: rgba(247, 245, 241, 0.88);
  font:
    500 12px/1.35 "DM Sans",
    sans-serif;
}

.story-dark-copy {
  max-width: 740px;
}
.story-dark-copy p {
  color: rgba(247, 245, 241, 0.72);
}

.story-quote {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  margin: 42px 0 0;
  padding: 34px 34px 34px 28px;
  background: rgba(247, 245, 241, 0.055);
  border: 1px solid rgba(247, 245, 241, 0.1);
}

.story-quote__symbol {
  color: var(--story-gold);
  font:
    400 70px/0.7 Georgia,
    serif;
}
.story-quote p {
  margin: 0 0 13px;
  color: var(--story-cream);
  font:
    400 clamp(24px, 2.5vw, 37px)/1.12 Georgia,
    serif;
  letter-spacing: -0.025em;
}
.story-quote small {
  display: block;
  color: rgba(247, 245, 241, 0.62);
  font:
    400 13px/1.7 "DM Sans",
    sans-serif;
}

/* SHIFT */
.story-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
}
.story-shift-content {
  padding-block: 130px;
}
.story-turning-point {
  margin-top: 36px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(194, 138, 43, 0.28);
}
.story-turning-point > span {
  color: var(--story-gold);
  font:
    600 8px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.25em;
}
.story-turning-point strong {
  display: block;
  margin-top: 10px;
  font:
    400 27px/1.2 Georgia,
    serif;
}
.story-turning-point p {
  margin: 8px 0 0;
  color: #71695f;
  font:
    400 13px/1.6 "DM Sans",
    sans-serif;
}

.story-shift-visual {
  position: relative;
}
.story-shift-visual .story-image-frame {
  box-shadow: 18px 22px 0 rgba(194, 138, 43, 0.1);
}
.story-image-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  color: #fff;
  background: rgba(16, 16, 15, 0.62);
  backdrop-filter: blur(5px);
  font:
    600 8px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.18em;
}
.story-visual-note {
  max-width: 500px;
  margin: 24px 0 0 auto;
  color: #71695f;
  font:
    italic 400 17px/1.55 Georgia,
    serif;
  text-align: right;
}
/* =========================================================
   06 — MY LEARNING & INFLUENCE
   EDITORIAL / QUIET LUXURY DESIGN
========================================================= */

.story-learning {
  position: relative;
  overflow: hidden;

  padding: 145px 0 0;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(194, 138, 43, 0.055),
      transparent 28%
    ),
    #f7f4ee;

  color: #171411;
}

/* =========================================================
   BACKGROUND
========================================================= */

.story-learning__bg-word {
  position: absolute;

  top: 90px;
  right: -70px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(130px, 18vw, 300px);
  font-weight: 600;

  line-height: 0.8;
  letter-spacing: -0.09em;

  color: rgba(28, 24, 20, 0.025);

  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.story-learning__glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -260px;
  top: 300px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.07);

  filter: blur(100px);

  pointer-events: none;
}

/* =========================================================
   MAIN GRID
========================================================= */

.story-learning__main {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(360px, 0.9fr)
    minmax(0, 1.1fr);

  gap: clamp(65px, 8vw, 125px);

  align-items: center;
}

/* =========================================================
   IMAGE
========================================================= */

.story-learning__visual {
  position: relative;
}

.story-learning__image-wrap {
  position: relative;

  width: 100%;

  aspect-ratio: 0.83;

  overflow: hidden;

  border-radius: 3px;

  background: #ded5c8;
}

.story-learning__image-wrap::before {
  content: "";

  position: absolute;

  inset: 14px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  z-index: 3;

  pointer-events: none;
}

.story-learning__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.08);

  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-learning__image-wrap:hover .story-learning__image {
  transform: scale(1.14);
}

.story-learning__image-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.02) 40%,
    rgba(10, 8, 6, 0.48) 100%
  );

  pointer-events: none;
}

/* Image number */

.story-learning__image-number {
  position: absolute;

  z-index: 4;

  top: 30px;
  left: 30px;

  font-family: Georgia, serif;

  font-size: 42px;

  color: #fff;

  opacity: 0.85;
}

/* Image caption */

.story-learning__image-caption {
  position: absolute;

  z-index: 4;

  left: 30px;
  bottom: 28px;

  font-family: "Manrope", sans-serif;

  font-size: 9px;

  line-height: 1.8;

  letter-spacing: 0.18em;

  color: rgba(255, 255, 255, 0.82);
}

.story-learning__image-caption span {
  display: inline-block;

  width: 28px;
  height: 1px;

  margin-right: 10px;

  vertical-align: middle;

  background: #d4a451;
}

/* Vertical label */

.story-learning__vertical-text {
  position: absolute;

  right: -58px;
  top: 30px;

  writing-mode: vertical-rl;

  font-family: "Manrope", sans-serif;

  font-size: 8px;

  letter-spacing: 0.25em;

  color: rgba(23, 20, 17, 0.42);
}

/* =========================================================
   CONTENT
========================================================= */

.story-learning__content {
  position: relative;
}

.story-learning__content .story-heading {
  margin-bottom: 38px;
}

.story-learning__content .story-section-number {
  color: #b47d25;
}

.story-learning__content .story-line {
  background: rgba(180, 125, 37, 0.5);
}

/* =========================================================
   TITLE
========================================================= */

.story-learning__title {
  margin: 0 0 38px;

  max-width: 650px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(45px, 5vw, 72px);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: -0.04em;

  color: #171411;
}

.story-learning__title em {
  display: block;

  color: #b47d25;

  font-style: italic;
}

/* =========================================================
   INTRO
========================================================= */

.story-learning__intro {
  display: grid;

  grid-template-columns: 35px 1fr;

  gap: 18px;

  max-width: 650px;

  margin-bottom: 42px;
}

.story-learning__intro-mark {
  font-family: Georgia, serif;

  font-size: 36px;

  color: #b47d25;

  line-height: 1;
}

.story-learning__intro p {
  margin: 0;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: #5f5952;
}

/* =========================================================
   MENTOR CARD
========================================================= */

.story-mentor--premium {
  position: relative;

  max-width: 680px;

  padding: 30px 32px 34px;

  border: 1px solid rgba(30, 25, 20, 0.12);

  background: rgba(255, 255, 255, 0.48);

  overflow: hidden;

  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.story-mentor--premium::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background: linear-gradient(180deg, #c28a2b, rgba(194, 138, 43, 0.08));
}

.story-mentor--premium:hover {
  transform: translateY(-7px);

  border-color: rgba(194, 138, 43, 0.38);

  box-shadow: 0 18px 45px rgba(42, 32, 20, 0.08);
}

/* Mentor top */

.story-mentor__top {
  display: flex;

  justify-content: space-between;
  align-items: center;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(30, 25, 20, 0.09);
}

.story-mentor__number {
  font-family: "Manrope", sans-serif;

  font-size: 10px;

  letter-spacing: 0.18em;

  color: #b47d25;
}

.story-mentor__label {
  font-family: "Manrope", sans-serif;

  font-size: 8px;

  letter-spacing: 0.2em;

  color: #8c857d;
}

/* Mentor body */

.story-mentor__body {
  display: grid;

  grid-template-columns: 62px 1fr;

  gap: 24px;

  padding-top: 28px;
}

.story-mentor__icon {
  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(194, 138, 43, 0.45);

  color: #b47d25;

  font-size: 21px;

  background: rgba(194, 138, 43, 0.05);
}

.story-mentor__details h3 {
  margin: 0 0 5px;

  font-family: Georgia, serif;

  font-size: 31px;

  font-weight: 400;

  color: #211d19;
}

.story-mentor__role {
  display: block;

  margin-bottom: 16px;

  font-family: "Manrope", sans-serif;

  font-size: 9px;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #b47d25;
}

.story-mentor__details p {
  max-width: 500px;

  margin: 0;

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  line-height: 1.75;

  color: #625c55;
}

.story-mentor__details strong {
  color: #2b2621;

  font-weight: 600;
}

.story-mentor__corner {
  position: absolute;

  right: 25px;
  bottom: 24px;

  font-size: 19px;

  color: rgba(180, 125, 37, 0.55);

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.story-mentor--premium:hover .story-mentor__corner {
  transform: translate(4px, -4px);

  color: #b47d25;
}

/* =========================================================
   COMMITMENT
========================================================= */

.story-learning__commitment {
  max-width: 650px;

  margin-top: 42px;

  padding-left: 3px;
}

.story-learning__commitment-label {
  display: block;

  margin-bottom: 14px;

  font-family: "Manrope", sans-serif;

  font-size: 8px;

  letter-spacing: 0.22em;

  color: #a77a36;
}

.story-learning__commitment p {
  margin: 0;

  font-family: Georgia, serif;

  font-size: 22px;

  line-height: 1.5;

  color: #3c3731;
}

.story-learning__commitment-line {
  width: 70px;
  height: 1px;

  margin-top: 24px;

  background: #b47d25;
}

/* =========================================================
   FINAL DARK QUOTE
========================================================= */

.story-final--premium {
  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    1px
    minmax(300px, 0.8fr);

  gap: 60px;

  align-items: center;

  margin-top: 135px;

  padding: 80px 8% 85px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(194, 138, 43, 0.13),
      transparent 32%
    ),
    linear-gradient(135deg, #1c1712, #0f0e0c);

  color: #f7f3eb;
}

/* Background word */

.story-final__background-word {
  position: absolute;

  right: -20px;
  bottom: -60px;

  font-family: "Manrope", sans-serif;

  font-size: 170px;

  font-weight: 600;

  letter-spacing: -0.09em;

  line-height: 0.8;

  color: rgba(255, 255, 255, 0.025);

  pointer-events: none;
}

/* Quote */

.story-final__quote {
  position: relative;

  z-index: 2;
}

.story-final__quote-mark {
  margin-bottom: -15px;

  font-family: Georgia, serif;

  font-size: 90px;

  line-height: 0.7;

  color: #c28a2b;
}

.story-final__quote p {
  max-width: 690px;

  margin: 0 0 24px;

  font-family: Georgia, serif;

  font-size: clamp(28px, 3vw, 42px);

  line-height: 1.25;

  letter-spacing: -0.025em;

  color: #f5f0e8;
}

.story-final__quote em {
  display: block;

  font-family: Georgia, serif;

  font-size: 20px;

  color: #cda35c;

  font-style: italic;
}

/* Divider */

.story-final__divider {
  width: 1px;
  height: 150px;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(194, 138, 43, 0.6),
    transparent
  );
}

/* CTA */

.story-final__cta {
  position: relative;

  z-index: 2;
}

.story-final__eyebrow {
  display: block;

  margin-bottom: 22px;

  font-family: "Manrope", sans-serif;

  font-size: 8px;

  letter-spacing: 0.2em;

  color: rgba(247, 243, 235, 0.42);
}

.story-final__cta h2 {
  margin: 0 0 30px;

  font-family: Georgia, serif;

  font-size: clamp(36px, 4vw, 53px);

  font-weight: 400;

  line-height: 1;

  color: #f7f3eb;
}

.story-final__cta h2 em {
  display: block;

  color: #c28a2b;

  font-style: italic;
}

/* =========================================================
   FLOWER
========================================================= */

.story-final__flower {
  position: absolute;

  right: 20px;
  top: 18px;

  font-size: 150px;

  font-family: Georgia, serif;

  color: rgba(194, 138, 43, 0.08);

  transform: rotate(15deg);

  pointer-events: none;
}

/* =========================================================
   BUTTON
========================================================= */

.story-button--light {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding: 14px 21px;

  border: 1px solid rgba(194, 138, 43, 0.55);

  color: #f7f3eb;

  background: rgba(194, 138, 43, 0.1);

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.story-button--light:hover {
  transform: translateY(-3px);

  background: #c28a2b;

  border-color: #c28a2b;

  color: #171411;
}

.story-button--light i {
  transition: transform 0.4s ease;
}

.story-button--light:hover i {
  transform: translate(4px, -4px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .story-learning {
    padding-top: 110px;
  }

  .story-learning__main {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .story-learning__vertical-text {
    display: none;
  }

  .story-learning__title {
    font-size: 48px;
  }

  .story-mentor--premium {
    padding: 25px;
  }

  .story-final--premium {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 65px 7%;
  }

  .story-final__divider {
    width: 100%;
    height: 1px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {
  .story-learning {
    padding-top: 85px;
  }

  .story-learning__bg-word {
    top: 160px;

    font-size: 100px;

    right: -45px;
  }

  .story-learning__main {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .story-learning__visual {
    width: 92%;

    margin: 0 auto;
  }

  .story-learning__image-wrap {
    aspect-ratio: 0.88;
  }

  .story-learning__image-number {
    top: 22px;
    left: 22px;

    font-size: 34px;
  }

  .story-learning__image-caption {
    left: 22px;
    bottom: 22px;
  }

  .story-learning__content .story-heading {
    margin-bottom: 28px;
  }

  .story-learning__title {
    font-size: 42px;

    margin-bottom: 28px;
  }

  .story-learning__intro {
    grid-template-columns: 25px 1fr;

    gap: 12px;

    margin-bottom: 32px;
  }

  .story-learning__intro p {
    font-size: 14px;
  }

  .story-mentor__body {
    grid-template-columns: 48px 1fr;

    gap: 17px;
  }

  .story-mentor__icon {
    width: 45px;
    height: 45px;

    font-size: 17px;
  }

  .story-mentor__details h3 {
    font-size: 27px;
  }

  .story-mentor__details p {
    font-size: 13px;
  }

  .story-mentor__label {
    font-size: 7px;
  }

  .story-learning__commitment {
    margin-top: 32px;
  }

  .story-learning__commitment p {
    font-size: 19px;
  }

  .story-final--premium {
    margin-top: 0px;

    padding: 55px 25px 60px;

    border-radius: 4px 4px 0 0;
  }

  .story-final__background-word {
    font-size: 100px;

    right: -20px;
    bottom: -20px;
  }

  .story-final__quote-mark {
    font-size: 70px;
  }

  .story-final__quote p {
    font-size: 27px;
  }

  .story-final__quote em {
    font-size: 17px;
  }

  .story-final__cta h2 {
    font-size: 38px;
  }

  .story-final__flower {
    font-size: 100px;

    right: -15px;
    top: 5px;
  }
  .story-hero-copy h2 {
    line-height: 60px;
  }
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .story-container {
    width: min(100% - 46px, 960px);
  }
  .story-layout {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
  .story-hero-copy h2 {
    font-size: clamp(42px, 5.4vw, 68px);
  }
  .story-profile {
    padding: 16px;
  }
  .story-patterns {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-patterns div:nth-child(3) {
    border-right: 0;
  }
  .story-patterns div:nth-child(4),
  .story-patterns div:nth-child(5) {
    border-top: 1px solid var(--story-dark-line);
  }
  .story-patterns div:nth-child(4) {
    border-right: 1px solid var(--story-dark-line);
  }
}

@media (max-width: 800px) {
  .story-container {
    width: calc(100% - 36px);
  }
  .story-hero {
    padding-top: calc(var(--header-height, 76px) + 35px);
    min-height: auto;
  }
  .story-layout,
  .story-chapter__grid,
  .story-dark-grid,
  .story-shift-grid {
    grid-template-columns: 1fr;
  }
  .story-profile {
    position: relative;
    top: auto;
    max-width: 500px;
    margin: 0 auto 55px;
  }
  .story-profile__image-wrap {
    aspect-ratio: 4 / 5;
  }
  .story-main {
    min-height: auto;
    padding: 0 0 65px;
  }
  .story-hero-copy h2 {
    font-size: clamp(42px, 9vw, 66px);
  }
  .story-chapter,
  .story-purpose,
  .story-learning {
    padding: 90px 0;
  }
  .story-chapter__grid {
    gap: 55px;
  }
  .story-dark-intro {
    position: relative;
    top: auto;
  }
  .story-shift-content {
    padding-block: 0;
  }
}

@media (max-width: 560px) {
  .story-container {
    width: calc(100% - 26px);
  }
  .story-bg-word,
  .story-chapter__word,
  .story-purpose__word {
    font-size: 34vw;
  }
  .story-heading {
    gap: 9px;
    margin-bottom: 24px;
  }
  .story-label {
    font-size: 7px;
    letter-spacing: 0.16em;
  }
  .story-line {
    width: 34px;
  }
  .story-title {
    font-size: 38px;
  }
  .story-hero-copy h2 {
    font-size: 43px;
  }
  .story-hero-copy p:not(.story-overline) {
    font-size: 15px;
    line-height: 1.7;
  }
  .story-hero-note {
    margin-top: 45px;
  }
  .story-copy p,
  .story-dark-copy p,
  .story-purpose__closing p {
    font-size: 14px;
    line-height: 1.72;
  }
  .story-patterns {
    grid-template-columns: 1fr 1fr;
  }
  .story-patterns div {
    min-height: 105px;
  }
  .story-patterns div:nth-child(2),
  .story-patterns div:nth-child(4) {
    border-right: 0;
  }
  .story-patterns div:nth-child(3),
  .story-patterns div:nth-child(4),
  .story-patterns div:nth-child(5) {
    border-top: 1px solid var(--story-dark-line);
  }
  .story-patterns div:nth-child(3) {
    border-right: 1px solid var(--story-dark-line);
  }
  .story-patterns div:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .story-quote {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 24px 18px;
  }
  .story-quote__symbol {
    font-size: 48px;
  }
  .story-quote p {
    font-size: 25px;
  }
  .story-highlight {
    padding: 22px 20px 22px 48px;
  }
  .story-highlight__mark {
    left: 14px;
  }
  .story-highlight p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-profile__image,
  .story-socials a,
  .story-mentor,
  .story-button,
  .story-button i {
    transition: none !important;
  }
}

/* =========================================================
   05 — WHY I DO THIS WORK
   DARK PURPOSE SECTION
========================================================= */

.story-purpose--dark {
  position: relative;
  overflow: hidden;
  padding: 150px 0 145px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(194, 138, 43, 0.1),
      transparent 30%
    ),
    linear-gradient(135deg, #171410 0%, #11100e 48%, #1b1712 100%);
  color: #f7f4ee;
}

/* -----------------------------------------
   Ambient glow
----------------------------------------- */

.story-purpose__ambient {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: 80px;
  border-radius: 50%;
  background: rgba(194, 138, 43, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

/* -----------------------------------------
   Giant background word
----------------------------------------- */

.story-purpose__word {
  position: absolute;
  right: -80px;
  top: 90px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 17vw, 280px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.8;

  color: rgba(255, 255, 255, 0.025);

  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* -----------------------------------------
   Decorative ring
----------------------------------------- */

.story-purpose__ring {
  position: absolute;
  width: 420px;
  height: 420px;

  right: -170px;
  bottom: -210px;

  border: 1px solid rgba(194, 138, 43, 0.18);
  border-radius: 50%;

  pointer-events: none;
}

.story-purpose__ring::before,
.story-purpose__ring::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(194, 138, 43, 0.08);
  border-radius: 50%;
}

.story-purpose__ring::after {
  inset: 90px;
}

/* -----------------------------------------
   Heading
----------------------------------------- */

.story-purpose__heading {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 72px;
}

.story-purpose__heading .story-heading {
  color: #e6d6bd;
}

.story-purpose__heading .story-section-number {
  color: #c28a2b;
}

.story-purpose__heading .story-line {
  background: rgba(194, 138, 43, 0.55);
}

.story-purpose__small-text {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.38);
}

/* -----------------------------------------
   Intro statement
----------------------------------------- */

.story-purpose__intro {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 100px minmax(0, 760px);

  gap: 36px;

  margin-left: 8%;
  margin-bottom: 85px;
}

.story-purpose__intro-mark {
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 0.7;

  color: #c28a2b;

  opacity: 0.75;
}

.story-purpose__intro-content h2 {
  margin: 0 0 28px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;

  color: #f7f3ec;
}

.story-purpose__intro-content h2 span {
  display: block;
  color: #c28a2b;
  font-style: italic;
}

.story-purpose__intro-content p {
  max-width: 690px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.85;

  color: rgba(247, 244, 238, 0.67);
}

.story-purpose__intro-content strong {
  color: #e0b86f;
  font-weight: 500;
}

/* -----------------------------------------
   Belief cards
----------------------------------------- */

.story-purpose__beliefs {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  max-width: 1030px;
  margin: 0 auto 90px;
}

/* -----------------------------------------
   Individual card
----------------------------------------- */

.story-purpose-card {
  position: relative;

  min-height: 430px;

  padding: 38px 42px 40px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;

  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );

  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background 0.4s ease;
}

.story-purpose-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  top: -100px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);

  filter: blur(15px);

  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-purpose-card:hover {
  transform: translateY(-10px);

  border-color: rgba(194, 138, 43, 0.55);

  background: linear-gradient(
    145deg,
    rgba(194, 138, 43, 0.1),
    rgba(255, 255, 255, 0.025)
  );
}

.story-purpose-card:hover::before {
  transform: scale(1.6);
}

/* -----------------------------------------
   Card top
----------------------------------------- */

.story-purpose-card__top {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.story-purpose-card__number {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(247, 244, 238, 0.42);
}

.story-purpose-card__symbol {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border: 1px solid rgba(194, 138, 43, 0.5);
  border-radius: 50%;

  font-family: Georgia, serif;
  font-size: 28px;

  color: #c28a2b;

  transition:
    transform 0.5s ease,
    background 0.4s ease;
}

.story-purpose-card:hover .story-purpose-card__symbol {
  transform: rotate(10deg) scale(1.08);
  background: rgba(194, 138, 43, 0.08);
}

/* -----------------------------------------
   Card line
----------------------------------------- */

.story-purpose-card__line {
  width: 100%;
  height: 1px;

  margin: 65px 0 32px;

  background: linear-gradient(
    90deg,
    rgba(194, 138, 43, 0.65),
    rgba(194, 138, 43, 0.08)
  );

  transform-origin: left;
}

/* -----------------------------------------
   Card content
----------------------------------------- */

.story-purpose-card__eyebrow {
  display: block;

  margin-bottom: 15px;

  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #c28a2b;
}

.story-purpose-card h3 {
  margin: 0 0 24px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;

  color: #f7f3ec;
}

.story-purpose-card h3 em {
  display: block;

  color: #c28a2b;
  font-style: italic;
}

.story-purpose-card p {
  max-width: 410px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;

  color: rgba(247, 244, 238, 0.58);
}

/* -----------------------------------------
   Card arrow
----------------------------------------- */

.story-purpose-card__arrow {
  position: absolute;
  right: 40px;
  bottom: 34px;

  font-size: 23px;
  color: rgba(194, 138, 43, 0.65);

  transition:
    transform 0.45s ease,
    color 0.45s ease;
}

.story-purpose-card:hover .story-purpose-card__arrow {
  transform: translate(5px, -5px);
  color: #c28a2b;
}

/* -----------------------------------------
   Closing statement
----------------------------------------- */

.story-purpose__closing {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: 0 auto;

  padding-top: 12px;
}

.story-purpose__closing-line {
  width: 100%;
  height: 1px;

  margin-bottom: 38px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 138, 43, 0.55),
    transparent
  );
}

.story-purpose__closing p {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.38;
  font-weight: 400;

  text-align: center;

  color: rgba(247, 244, 238, 0.78);
}

.story-purpose__closing p span {
  color: #c28a2b;
  font-style: italic;
}

.story-purpose__closing-bottom {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;

  margin-top: 38px;
}

.story-purpose__closing-bottom strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;

  color: #e4bd79;

  font-style: italic;
}

.story-purpose__closing-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(194, 138, 43, 0.45);
  border-radius: 50%;

  color: #c28a2b;

  animation: purposeArrowFloat 2.5s ease-in-out infinite;
}

@keyframes purposeArrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .story-purpose--dark {
    padding: 115px 0 110px;
  }

  .story-purpose__heading {
    margin-bottom: 55px;
  }

  .story-purpose__intro {
    margin-left: 0;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px;
  }

  .story-purpose__intro-mark {
    font-size: 100px;
  }

  .story-purpose__beliefs {
    gap: 18px;
  }

  .story-purpose-card {
    min-height: 400px;
    padding: 30px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
  .story-purpose--dark {
    padding: 85px 0 80px;
  }

  .story-purpose__word {
    right: -80px;
    top: 130px;

    font-size: 100px;
  }

  .story-purpose__ring {
    width: 280px;
    height: 280px;

    right: -150px;
    bottom: -130px;
  }

  .story-purpose__heading {
    display: block;
    margin-bottom: 48px;
  }

  .story-purpose__small-text {
    display: block;
    margin-top: 18px;
  }

  .story-purpose__intro {
    display: block;
    margin-bottom: 55px;
  }

  .story-purpose__intro-mark {
    height: 48px;

    font-size: 80px;
    line-height: 1;
  }

  .story-purpose__intro-content h2 {
    font-size: 42px;
    line-height: 1.04;

    margin-bottom: 22px;
  }

  .story-purpose__intro-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .story-purpose__beliefs {
    grid-template-columns: 1fr;
    gap: 15px;

    margin-bottom: 60px;
  }

  .story-purpose-card {
    min-height: auto;
    padding: 28px 25px 75px;
  }

  .story-purpose-card__line {
    margin: 48px 0 27px;
  }

  .story-purpose-card h3 {
    font-size: 43px;
    margin-bottom: 20px;
  }

  .story-purpose-card p {
    font-size: 14px;
  }

  .story-purpose-card__symbol {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .story-purpose-card__arrow {
    right: 25px;
    bottom: 25px;
  }

  .story-purpose__closing p {
    font-size: 25px;
    line-height: 1.35;
  }

  .story-purpose__closing-bottom {
    flex-direction: column;
    gap: 18px;
  }
}
