/* =============================================
   About Olga Phoenix - page styles
   Split model (AGENTS.md section 6). Loads AFTER base.css.
   Class prefix: .op-about-*
============================================= */

  :root {
    --color-black:         #0d0b08;
    --color-dark:          #1a1714;
    --color-ivory:         #f5f0e8;
    --color-ivory-warm:    #f5f0e8;
    --color-white:         #f5f0e8;
    --color-gold:          #b8976a;
    --color-divider:       rgba(13,11,8,0.15);
    --color-eyebrow:       rgba(13,11,8,0.75);
    --color-body:          #1a1714;
    --font-display:  'Cormorant Garamond', serif;
    --font-serif:    'Playfair Display', serif;
    --font-body:     'Montserrat', sans-serif;
    --section-padding:     120px;
    --section-padding-h:   80px;
    --eyebrow-margin:      80px;
    --eyebrow-size:        16px;
    --eyebrow-weight:      600;
    --eyebrow-spacing:     0.25em;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { background: var(--color-black); scroll-behavior: smooth; }
  body { width: 100%; margin: 0; padding: 0; background: var(--color-black); }


  /* HERO */
  .op-about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
    background-image: url('/images/about_hero.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }
  .op-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,8,5,0.50)  0%,
      rgba(10,8,5,0.28) 15%,
      rgba(10,8,5,0.42) 45%,
      rgba(10,8,5,0.70) 70%,
      rgba(10,8,5,0.92) 88%,
      rgba(10,8,5,1.00) 100%
    );
    z-index: 1;
  }
  .op-about-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 200px 80px 140px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .op-about-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,235,210,0.60);
    margin-bottom: 52px;
    display: block;
  }
  .op-about-hero__headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(48px, 6.2vw, 92px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 48px;
    max-width: 860px;
  }
  .op-about-hero__headline .reg { font-style: normal; }
  .op-about-hero__headline .ital { font-style: italic; }
  .op-about-hero__subhead {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: rgba(245,238,220,0.72);
    max-width: 680px;
    margin: 0 auto 56px;
  }
  .op-about-hero__cta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 0.5px solid rgba(255,255,255,0.50);
    padding: 13px 30px;
    transition: background 0.25s;
    display: inline-block;
  }
  .op-about-hero__cta:hover { background: rgba(255,255,255,0.09); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .op-about-hero__eyebrow  { animation: fadeUp 0.9s ease both; animation-delay: 0.25s; }
  .op-about-hero__headline { animation: fadeUp 1.0s ease both; animation-delay: 0.45s; }
  .op-about-hero__subhead  { animation: fadeUp 0.9s ease both; animation-delay: 0.70s; }
  .op-about-hero__cta      { animation: fadeUp 0.9s ease both; animation-delay: 0.90s; }

  /* PLACEHOLDER */
  .op-placeholder {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
    border-top: 0.5px solid rgba(13,11,8,0.08);
  }
  .op-placeholder__label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(13,11,8,0.25);
  }

  /* FOOTER */
  .op-footer {
    background: var(--color-black);
    padding: var(--section-padding) var(--section-padding-h) 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    border-top: 0.5px solid rgba(255,255,255,0.15);
  }
  .op-footer__nav-heading {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-bottom: 32px;
    text-align: center;
  }
  .op-footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .op-footer__nav-list a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
  }
  .op-footer__nav-list a:hover { color: var(--color-gold); }
  .op-footer__brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .op-footer__name {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 16px;
    display: block;
  }
  .op-footer__name .footer-olga   { display: block; font-size: clamp(32px, 3.5vw, 48px); }
  .op-footer__name .footer-phoenix { display: block; font-size: clamp(36px, 4vw, 56px); }
  .op-footer__tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    max-width: 260px;
    line-height: 1.7;
    text-align: center;
  }
  .op-footer__icons { display: flex; gap: 20px; align-items: center; justify-content: center; }
  .op-footer__icons a { color: rgba(255,255,255,0.60); text-decoration: none; transition: color 0.2s; }
  .op-footer__icons a:hover { color: var(--color-gold); }
  .op-footer__icons svg { width: 26px; height: 26px; fill: currentColor; }
  .op-footer__subscribe-heading {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }
  .op-footer__subscribe-sub {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: center;
  }
  .op-footer__form { display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .op-footer__input {
    background: transparent;
    border: 0.5px solid rgba(255,255,255,0.30);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    max-width: 220px;
  }
  .op-footer__input::placeholder { color: rgba(255,255,255,0.40); }
  .op-footer__input:focus { border-color: rgba(255,255,255,0.70); }
  .op-footer__submit {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-black);
    background: #ffffff;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    align-self: center;
    margin-top: 8px;
  }
  .op-footer__submit:hover { background: var(--color-gold); color: #fff; }
  .op-footer__bottom {
    grid-column: 1 / -1;
    border-top: 0.5px solid rgba(255,255,255,0.10);
    padding-top: 32px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.30);
    text-transform: uppercase;
  }

  /* =============================================
     SECTION 2 — OPENING PERSONAL STATEMENT
  ============================================= */
  .op-about-statement {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  .op-about-statement__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: var(--color-eyebrow);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  /* Large opening line — Playfair, same as Mission title */
  .op-about-statement__title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 64px;
    letter-spacing: -0.02em;
  }
  .op-about-statement__title .reg { font-style: normal; }
  .op-about-statement__title .ital { font-style: italic; }

  /* The "moment" lines — intimate body scale */
  .op-about-statement__moments {
    max-width: 720px;
    margin: 0 auto 64px;
  }

  .op-about-statement__moment {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    letter-spacing: 0.02em;
    display: block;
    padding: 0;
    margin-bottom: 28px;
    border: none;
  }
  .op-about-statement__moment:first-child {
    border-top: none;
  }
  .op-about-statement__moment .ital {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 300;
  }

  /* Bridge lines — "That moment has shaped..." */
  .op-about-statement__bridge {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 720px;
    margin: 64px auto 64px;
    letter-spacing: -0.02em;
  }
  .op-about-statement__bridge .ital { font-style: italic; }

  /* Body text — credentials + reach */
  .op-about-statement__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
  }
  .op-about-statement__body p + p { margin-top: 48px; }

  /* Payoff line — "they began as lifelines." */
  .op-about-statement__payoff {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.2vw, 60px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 720px;
    margin: 80px auto 0;
    letter-spacing: -0.02em;
  }

  /* Word reveal — same pattern as Mission/Meet Olga */
  .op-about-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-about-reveal .word.is-lit {
    color: var(--color-dark);
  }

  /* =============================================
     SECTION 3 — THE LIFE BENEATH THE WORK
  ============================================= */

  /* Shared wrap */
  .op-about-life {
    background: var(--color-ivory);
    padding: var(--section-padding) 0 0;
  }

  .op-about-life__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: var(--color-eyebrow);
    margin-bottom: var(--eyebrow-margin);
    display: block;
    text-align: center;
    padding: 0 80px;
  }

  /* Zone 1 — copy left, image right */
  .op-about-life__zone1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
  }

  .op-about-life__zone1-content {
    padding: 0 80px 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .op-about-life__intro {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    margin-bottom: 48px;
  }
  .op-about-life__intro .ital { font-style: italic; }

  .op-about-life__know {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    letter-spacing: 0.02em;
  }
  .op-about-life__know p + p { margin-top: 28px; }
  .op-about-life__know .ital {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }

  .op-about-life__zone1-image {
    overflow: hidden;
    height: 620px;
    margin: 0 80px 0 0;
  }
  .op-about-life__zone1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* Zone 1 image placeholder */
  .op-about-life__img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(13,11,8,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .op-about-life__img-placeholder span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(13,11,8,0.25);
  }

  /* Zone 2 — image left, recovery lines right */
  .op-about-life__zone2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    padding-top: var(--eyebrow-margin);
    padding-bottom: var(--eyebrow-margin);
  }

  .op-about-life__zone2-image {
    overflow: hidden;
    height: 620px;
    margin: 0 0 0 80px;
  }
  .op-about-life__zone2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .op-about-life__zone2-content {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .op-about-life__recovery {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-dark);
    letter-spacing: -0.01em;
  }
  .op-about-life__recovery-line {
    display: block;
    padding: 28px 0;
    border-bottom: 0.5px solid rgba(13,11,8,0.12);
  }
  .op-about-life__recovery-line:first-child {
    border-top: 0.5px solid rgba(13,11,8,0.12);
  }
  .op-about-life__recovery .ital { font-style: italic; }

  /* Zone 3 — dark returns breakout (solid black behind an 82% overlay) */
  .op-about-returns {
    position: relative;
    background-color: var(--color-black);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  .op-about-returns__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,6,4,0.82);
    z-index: 0;
  }

  .op-about-returns__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
  }

  .op-about-returns__headline {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: -0.01em;
  }

  .op-about-returns__list {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 80px;
  }

  .op-about-returns__rule {
    border: none;
    border-top: 0.5px solid rgba(255,255,255,0.18);
    width: 100%;
    margin: 0;
  }

  .op-about-returns__item {
    padding: 28px 0;
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 400;
    color: rgba(255,255,255,0.90);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .op-about-returns__item .ital { font-style: italic; }

  .op-about-returns__closing {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,238,220,0.65);
    max-width: 640px;
    margin: 0 auto;
    letter-spacing: 0.02em;
  }

  .op-about-life__closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px var(--section-padding);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    letter-spacing: 0.02em;
  }
  .op-about-life__closing p + p { margin-top: 48px; }

  @media (max-width: 768px) {
    .op-about-hero__content { padding: 100px 24px 100px; }
    .op-about-hero__subhead { font-size: 16px; }
    .op-about-statement { padding: 80px 24px; }
    .op-about-statement__bridge { margin: 48px auto; }
    .op-about-statement__payoff { margin-top: 56px; }
    .op-about-life__zone1 { grid-template-columns: 1fr; }
    .op-about-life__zone1-content { padding: 0 24px 60px; }
    .op-about-life__zone1-image { height: 400px; margin: 0; }
    .op-about-life__zone2 { grid-template-columns: 1fr; }
    .op-about-life__zone2-image { height: 360px; margin: 0; }
    .op-about-life__zone2-content { padding: 48px 24px; }
    .op-about-life__closing { padding: 60px 24px 80px; }
    .op-about-returns { padding: 80px 24px; }
    .op-footer { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  }

  /* =============================================
     SECTION 4 — THE FIRST FRAMEWORK
  ============================================= */
  .op-about-scw {
    display: flex;
    align-items: stretch;
    min-height: 860px;
    position: relative;
    overflow: visible;
  }

  /* Left — 70% black, copy with max-width for readability */
  .op-about-scw__content {
    width: 70%;
    background: var(--color-black);
    padding: var(--section-padding) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .op-about-scw__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: rgba(245,235,210,0.50);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  .op-about-scw__headline {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.8vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    max-width: 520px;
  }
  .op-about-scw__headline .ital { font-style: italic; }

  .op-about-scw__body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,238,220,0.70);
    letter-spacing: 0.02em;
    margin-bottom: 48px;
    max-width: 520px;
  }
  .op-about-scw__body p + p { margin-top: 28px; }

  .op-about-scw__list {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    margin-bottom: 48px;
    padding-left: 0;
    list-style: none;
    max-width: 520px;
  }
  .op-about-scw__list li {
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.10);
  }
  .op-about-scw__list li:first-child {
    border-top: 0.5px solid rgba(255,255,255,0.10);
  }

  .op-about-scw__bridge {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,238,220,0.70);
    letter-spacing: 0.02em;
    max-width: 520px;
  }

  /* Right — 30% ivory, empty for now */
  .op-about-scw__image-wrap {
    flex: 1;
    background: var(--color-ivory);
  }

  /* Image overlay — outside flex, positioned over the column split */
  .op-about-scw__image-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40%;
    width: 36%;
    height: 78%;
    z-index: 20;
    overflow: hidden;
  }

  .op-about-scw__image-overlay img,
  .op-about-scw__image-overlay .op-about-scw__image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .op-about-scw__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,11,8,0.18);
  }
  .op-about-scw__image-placeholder span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
  }

  @media (max-width: 768px) {
    .op-about-scw { flex-direction: column; }
    .op-about-scw__content { width: 100%; padding: 80px 24px; }
    .op-about-scw__image-wrap { min-height: 300px; }
    .op-about-scw__image-overlay { display: none; }
  }

  /* =============================================
     SECTION 4 ZONE 2 — CENTERED IVORY
  ============================================= */
  .op-about-scw-zone2 {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h) 48px;
    text-align: center;
  }

  .op-about-scw-zone2__title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 64px;
    letter-spacing: -0.02em;
  }
  .op-about-scw-zone2__title .reg { font-style: normal; }
  .op-about-scw-zone2__title .ital { font-style: italic; }

  .op-about-scw-zone2__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 64px;
    letter-spacing: 0.02em;
  }
  .op-about-scw-zone2__body p + p { margin-top: 28px; }
  .op-about-scw-zone2__body em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }

  .op-about-scw-zone2__closing {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: -0.01em;
  }

  /* Zone 3 — closing quote */
  .op-about-scw-zone3 {
    background: var(--color-ivory);
    padding: 48px var(--section-padding-h) var(--section-padding);
    text-align: center;
  }

  .op-about-scw-zone3__quote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: -0.02em;
  }
  .op-about-scw-zone3__quote .reg { font-style: normal; }
  .op-about-scw-zone3__quote .ital { font-style: italic; }

  .op-scw2-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-scw2-reveal .word.is-lit { color: var(--color-dark); }
  .op-scw2-reveal .word.reg { font-style: normal; }
  .op-scw2-reveal .word.ital { font-style: italic; }

  @media (max-width: 768px) {
    .op-about-scw-zone3 { padding: 80px 24px; }
  }

  @media (max-width: 768px) {
    .op-about-scw-zone2 { padding: 80px 24px; }
  }
  /* =============================================
     SECTION 5 ZONE 2
  ============================================= */
  .op-about-s5-zone2 {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  .op-about-s5-zone2__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.8vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 48px;
    letter-spacing: -0.02em;
  }
  .op-about-s5-zone2__title em { font-style: italic; }

  .op-about-s5-zone2__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.02em;
  }

  @media (max-width: 768px) {
    .op-about-s5-zone2 { padding: 80px 24px; }
  }
  .op-s5-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-s5-reveal .word.is-lit { color: var(--color-dark); }
  .op-s5-reveal .word.reg { font-style: normal; }
  .op-s5-reveal .word.ital { font-style: italic; }
  /* =============================================
     SECTION 6 ZONE 2
  ============================================= */
  .op-about-s6-zone2 {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  .op-about-s6-zone2__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.8vw, 56px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 64px;
    letter-spacing: -0.02em;
  }

  .op-about-s6-zone2__items {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 28px;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .op-about-s6-zone2__sacred {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--color-dark);
    text-align: center;
    margin: 0 auto;
  }

  .op-s6-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-s6-reveal .word.is-lit { color: var(--color-dark); }
  .op-s6-reveal .word.reg { font-style: normal; }
  .op-s6-reveal .word.ital { font-style: italic; }

  .op-s7-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
  .op-s7-reveal .word.is-lit { color: var(--color-dark); }
  .op-s7-reveal .word.reg { font-style: normal; }
  .op-s7-reveal .word.ital { font-style: italic; }

  @media (max-width: 768px) {
    .op-about-s6-zone2 { padding: 80px 24px; }
  }
  .op-dot {
    color: var(--color-dark);
    font-weight: 600;
    margin: 0 6px;
    opacity: 0.6;
  }
  /* Word reveal for SCW Zone 2 */
  .op-scw-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-scw-reveal .word.is-lit { color: var(--color-dark); }
  .op-scw-reveal .word.reg { font-style: normal; }
  .op-scw-reveal .word.ital { font-style: italic; }
  /* =============================================
     SECTION 7 ZONE 2
  ============================================= */
  .op-about-s7-zone2 {
    background: var(--color-ivory);
    padding: 40px var(--section-padding-h) var(--section-padding);
    text-align: center;
    border-top: 0.5px solid rgba(13,11,8,0.08);
  }

  .op-about-s7-zone2__intro {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 64px;
    letter-spacing: -0.01em;
  }

  .op-about-s7-zone2__voices {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 64px;
    letter-spacing: 0.02em;
  }
  .op-about-s7-zone2__voices p + p { margin-top: 28px; }
  .op-about-s7-zone2__voices em { font-family: var(--font-serif); font-style: italic; }

  .op-about-s7-zone2__pullout {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 64px;
    letter-spacing: -0.02em;
  }

  .op-about-s7-zone2__closing {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.02em;
  }
  .op-about-s7-zone2__closing em { font-style: normal; font-family: var(--font-body); }

  @media (max-width: 768px) {
    .op-about-s7-zone2 { padding: 80px 24px; }
  }
  /* =============================================
     SECTION 8 — THE THROUGH-LINE (Core Beliefs style)
  ============================================= */
  .op-about-throughline {
    position: relative;
    background-color: var(--color-black);
    padding: var(--section-padding) var(--section-padding-h);
    overflow: hidden;
  }

  .op-about-throughline__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,6,4,0.82);
    z-index: 0;
  }

  .op-about-throughline__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
  }

  .op-about-throughline__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: rgba(245,235,210,0.80);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  .op-about-throughline__intro {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .op-about-throughline__sub {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,238,220,0.65);
    margin-bottom: 64px;
    letter-spacing: 0.02em;
  }

  .op-about-throughline__questions {
    margin-bottom: 80px;
  }

  .op-about-throughline__rule {
    border: none;
    border-top: 0.5px solid rgba(255,255,255,0.18);
    width: 100%;
    margin: 0;
  }

  .op-about-throughline__question {
    padding: 28px 0;
    min-height: 60px;
  }

  .op-about-throughline__q-num {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    min-width: 36px;
    flex-shrink: 0;
  }

  .op-about-throughline__q-text {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 400;
    color: rgba(255,255,255,0.90);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .op-about-throughline__q-text .ital { font-style: italic; }

  .op-about-throughline__beliefs-label {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: rgba(245,235,210,0.55);
    margin-bottom: 40px;
    display: block;
  }

  .op-about-throughline__belief {
    display: flex;
    align-items: baseline;
    gap: 32px;
    padding: 28px 0;
    min-height: 80px;
  }

  .op-about-throughline__b-num {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    min-width: 36px;
    flex-shrink: 0;
  }

  .op-about-throughline__b-text {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.4vw, 34px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .op-about-throughline__b-text .ital { font-style: italic; }

  @media (max-width: 768px) {
    .op-about-throughline { padding: 80px 24px; }
  }
  /* =============================================
     SECTION 9 — THE GLOBE-TROTTING ENTREPRENEUR
  ============================================= */
  .op-about-globe {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  .op-about-globe__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: var(--color-eyebrow);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  .op-about-globe__title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 64px;
    letter-spacing: -0.02em;
  }
  .op-about-globe__title .reg { font-style: normal; }
  .op-about-globe__title .ital { font-style: italic; }

  .op-about-globe__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 28px;
    letter-spacing: 0.02em;
  }
  .op-about-globe__body p + p { margin-top: 28px; }

  .op-about-globe__items {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 28px;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .op-about-globe__items em {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 300;
  }

  .op-about-globe__evidence-label {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 720px;
    margin: 28px auto 28px;
    letter-spacing: -0.01em;
  }

  .op-about-globe__closing {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--color-dark);
    max-width: 720px;
    margin: 48px auto 0;
    letter-spacing: -0.01em;
  }

  .op-globe-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-globe-reveal .word.is-lit { color: var(--color-dark); }
  .op-globe-reveal .word.reg { font-style: normal; }
  .op-globe-reveal .word.ital { font-style: italic; }

  @media (max-width: 768px) {
    .op-about-globe { padding: 80px 24px; }
  }
  /* =============================================
     SECTION 10 — SOBER WORTHY FREE
  ============================================= */
  .op-about-swf-z1 {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
    border-top: 0.5px solid rgba(13,11,8,0.08);
  }

  .op-about-swf-z1__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: var(--color-eyebrow);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  .op-about-swf-z1__title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 120px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-dark);
    margin: 0 auto 48px;
    letter-spacing: -0.02em;
  }
  .op-about-swf-z1__title .reg { font-style: normal; }
  .op-about-swf-z1__title .ital { font-style: italic; }

  .op-about-swf-z1__sub {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 48px;
    letter-spacing: 0.02em;
  }
  .op-about-swf-z1__sub em { font-family: var(--font-body); font-style: normal; font-weight: 300; }

  .op-about-swf-z1__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 48px;
    letter-spacing: 0.02em;
  }
  .op-about-swf-z1__body p + p { margin-top: 28px; }
  .op-about-swf-z1__body em { font-family: var(--font-serif); font-style: italic; }

  .op-about-swf-z1__questions {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-align: center;
  }

  /* Zone 2 — the answer + big quote */
  .op-about-swf-z2 {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h) 48px;
    text-align: center;
  }

  .op-about-swf-z2__answer {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 48px auto 0;
    max-width: 720px;
    letter-spacing: -0.01em;
  }

  .op-about-swf-z2__quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto;
  }
  .op-about-swf-z2__quote em { font-style: italic; }

  /* Zone 3 — details + CTA */
  .op-about-swf-z3 {
    background: var(--color-ivory);
    padding: 48px var(--section-padding-h) var(--section-padding);
    text-align: center;
    
  }

  .op-about-swf-z3__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 64px;
    letter-spacing: 0.02em;
  }
  .op-about-swf-z3__body p + p { margin-top: 28px; }
  .op-about-swf-z3__body em { font-family: var(--font-body); font-style: normal; font-weight: 300; }

  .op-about-swf-z3__cta {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(13,11,8,0.35);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }
  .op-about-swf-z3__cta:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
  }

  /* Word reveal for SWF title */
  .op-swf-reveal .word {
    display: inline;
    color: #c8c4be;
    transition: color 1.8s ease;
  }
  .op-swf-reveal .word.is-lit { color: var(--color-dark); }
  .op-swf-reveal .word.reg { font-style: normal; }
  .op-swf-reveal .word.ital { font-style: italic; }

  .op-swf2-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
  .op-swf2-reveal .word.is-lit { color: var(--color-dark); }
  .op-swf2-reveal .word.reg { font-style: normal; }
  .op-swf2-reveal .word.ital { font-style: italic; }

  .op-close-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
  .op-close-reveal .word.is-lit { color: var(--color-dark); }
  .op-close-reveal .word.reg { font-style: normal; }
  .op-close-reveal .word.ital { font-style: italic; }

  @media (max-width: 768px) {
    .op-about-swf-z1 { padding: 80px 24px; }
    .op-about-swf-z2 { padding: 80px 24px; }
    .op-about-swf-z3 { padding: 80px 24px; }
  }

  /* =============================================
     SECTION 11 — FINAL PERSONAL CLOSE
  ============================================= */

  /* Zone 1 — cinematic hero */
  .op-close-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #c8c4be;
    background-image: url('/images/about_close_hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .op-close-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,8,5,0.65)  0%,
      rgba(10,8,5,0.55) 20%,
      rgba(10,8,5,0.65) 50%,
      rgba(10,8,5,0.85) 70%,
      rgba(10,8,5,0.95) 85%,
      rgba(10,8,5,1.00) 100%
    );
    z-index: 1;
  }

  .op-close-hero__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
  }
  .op-close-hero__placeholder span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(13,11,8,0.30);
  }

  .op-close-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) var(--section-padding-h);
    max-width: 1100px;
    width: 100%;
  }

  .op-close-hero__eyebrow {
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: var(--eyebrow-weight);
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: rgba(245,235,210,0.55);
    margin-bottom: var(--eyebrow-margin);
    display: block;
  }

  .op-close-hero__headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(52px, 7.5vw, 116px);
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
  }
  .op-close-hero__headline .reg { font-style: normal; }
  .op-close-hero__headline .ital { font-style: italic; }
  .op-close-hero__headline .line { display: block; }

  /* Zones 2+3 — single letter section, Her Story treatment */
  .op-close-letter {
    background: var(--color-ivory);
    padding: var(--section-padding) var(--section-padding-h);
    text-align: center;
  }

  /* Opening intro line — large Playfair, same scale as section titles */
  .op-close-letter__intro {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    color: var(--color-dark);
    max-width: 860px;
    margin: 0 auto 80px;
    letter-spacing: -0.02em;
  }
  .op-close-letter__intro .ital { font-style: italic; }

  /* Body paragraphs — all copy */
  .op-close-letter__body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.02em;
  }
  .op-close-letter__body p + p { margin-top: 48px; }
  .op-close-letter__body em {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 300;
  }

  /* Bridge-scale payoff lines — Playfair italic, same as Her Story bridge */
  .op-close-letter__bridge {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 720px;
    margin: 64px auto;
    letter-spacing: -0.02em;
    display: block;
  }

  /* "With love," label */
  .op-close-letter__with-love {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.45);
    margin-top: 80px;
    margin-bottom: 16px;
    display: block;
  }

  /* "Olga" signature — payoff scale, Cormorant italic */
  .op-close-letter__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.0;
    color: var(--color-dark);
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    display: block;
  }

  /* Rule before CTAs */
  .op-close-letter__rule {
    width: 48px;
    height: 0.5px;
    background: rgba(13,11,8,0.20);
    margin: 0 auto 48px;
    display: block;
  }

  /* CTAs */
  .op-close-letter__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .op-close-letter__btn-primary,
  .op-close-letter__btn-secondary {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: underline;
    text-decoration-color: rgba(13,11,8,0.30);
    text-underline-offset: 5px;
    text-decoration-thickness: 0.5px;
    transition: color 0.2s, text-decoration-color 0.2s;
  }
  .op-close-letter__btn-primary:hover,
  .op-close-letter__btn-secondary:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
  }

  @media (max-width: 768px) {
    .op-close-hero__content { padding: 80px 24px; }
    .op-close-letter { padding: 80px 24px; }
    .op-close-letter__ctas { flex-direction: column; gap: 20px; }
  }


  /* =============================================
     MOBILE — stack the inline-styled multi-column sections
     (these use inline styles, so overrides need !important)
  ============================================= */
  @media (max-width: 768px) {
    /* Safety guard: nothing should force the page wider than the screen */
    html, body { overflow-x: hidden; max-width: 100%; }

    /* Hero photo framing on mobile: move the face left + down */
    .op-about-hero { background-position: 70% 5%; }
    /* More breathing room between the nav and the eyebrow */
    .op-about-hero__content { padding-top: 170px; }
    /* "A Note From Olga" hero: move the face left + center the copy */
    .op-close-hero { background-position: 78% top; justify-content: center; }
    .op-close-hero__content { text-align: center; }

    /* Framework split-sections (#self-care/#resilience/#self-love) → stack */
    .op-about-fw { min-height: 0 !important; background: #0d0b08 !important; }
    .op-about-fw__copy {
      width: 100% !important;
      max-width: 100% !important;
      padding: 72px 24px !important;
    }
    .op-about-fw__copy h2 { width: 100% !important; max-width: 100% !important; }
    .op-about-fw__copy ul { max-width: 100% !important; }
    .op-about-fw__img {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      transform: none !important;
      width: 100% !important;
      height: 320px !important;
    }

    /* Section 7 — "A Body Of Work" two-column → stack */
    .op-about-s7head { padding: 72px 24px 48px !important; }
    .op-about-s7row { flex-direction: column !important; min-height: 0 !important; }
    .op-about-s7img { width: 100% !important; padding: 0 24px 40px !important; }
    .op-about-s7img > div { height: 320px !important; }
    .op-about-s7copy { width: 100% !important; padding: 0 24px 72px !important; }
    .op-about-s7copy ul { max-width: 100% !important; }

    /* Globe section: let the long evidence phrase wrap instead of running off-screen */
    .op-about-globe__items nobr { white-space: normal; }
  }

