/* =====================================================
   PIPA YOGA — editorial wellness magazine
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour — disciplined: paper, ink, one accent */
  --paper:        #f7f1e8;
  --paper-warm:   #efe5d4;
  --paper-deep:   #e6d8c3;
  --ink:          #1a1411;
  --ink-soft:     #4a3d36;
  --ink-muted:    rgba(26, 20, 17, 0.62);
  --ink-faint:    rgba(26, 20, 17, 0.14);
  --line:         rgba(26, 20, 17, 0.12);
  --line-soft:    rgba(26, 20, 17, 0.07);
  --clay:         #b86a52;
  --clay-deep:    #9d5642;

  /* Type */
  --serif:  "Fraunces", "Times New Roman", Georgia, serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter: 5vw;
  --max:    1320px;
  --radius: 8px;
  --radius-img: 14px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--clay); color: var(--paper); }

/* In-page anchor links shouldn't hide behind the sticky nav */
section[id], .hero { scroll-margin-top: 84px; }

/* Accessible focus rings — only when keyboard-navigating */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__cta:focus-visible,
.voices__arrow:focus-visible,
.voices__dot:focus-visible {
  outline-offset: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--clay);
  transform-origin: 0 50%; transform: scaleX(0);
  z-index: 60; transition: transform .15s linear;
}

/* ---------- Type ---------- */
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--clay);
}
.eyebrow--light { color: rgba(247,241,232,.86); }
.eyebrow--light::before { background: rgba(247,241,232,.6); }

.label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 144;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}
.display--lg { font-size: clamp(48px, 9vw, 132px); }
.display--md { font-size: clamp(40px, 6.6vw, 92px); letter-spacing: -.025em; }
.display--sm { font-size: clamp(32px, 4vw, 56px); letter-spacing: -.02em; }

.lead {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.lead--light { color: rgba(247,241,232,.84); }

.lede {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.drop::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  font-weight: 400;
  font-style: italic;
  float: left;
  line-height: .85;
  padding: 8px 14px 0 0;
  color: var(--clay);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26,20,17,.12); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); }
.btn--primary:hover { --bg: var(--clay); --bd: var(--clay); }

.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink-faint); }
.btn--ghost:hover { --bd: var(--ink); }

.btn--light { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }
.btn--light:hover { --bg: var(--clay); --fg: var(--paper); --bd: var(--clay); }

.btn--sm { padding: 12px 20px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 78px;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 50;
  background: rgba(247, 241, 232, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  height: 64px;
  border-color: var(--line-soft);
  background: rgba(247, 241, 232, .94);
}
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.012em;
}
.logo svg {
  color: var(--clay);
  flex-shrink: 0;
  /* let the sunflower spin slowly when you hover the lockup */
  transition: transform 1.2s var(--ease);
  transform-origin: 50% 50%;
}
.logo:hover svg { transform: rotate(45deg); }
.logo--footer { color: var(--paper); font-size: 25px; }
.logo--footer svg { color: var(--clay); }

.nav__links {
  display: flex; gap: 32px;
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-muted);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .35s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: 0 50%; }

.nav__cta {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }

.nav__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  margin-right: 6px;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: color .25s var(--ease), background .25s var(--ease), transform .35s var(--ease);
}
.nav__icon:hover { color: var(--clay); background: rgba(26,20,17,.05); transform: translateY(-1px); }

.nav__menu {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__menu span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__menu[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 45;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
}
.mobile-menu nav a { color: var(--ink); }
.mobile-menu__cta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

/* ---------- Section primitives ---------- */
.section {
  position: relative;
  padding: clamp(96px, 14vw, 180px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section__label {
  position: absolute;
  left: var(--gutter);
  top: clamp(96px, 14vw, 180px);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  /* sticky on tall screens */
}
.section__label .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--clay);
}
.section__label--light { color: var(--paper); }
.section__label--light .num { color: var(--clay); }
.section__label--light .kicker { color: var(--paper); opacity: .92; }

.section__head {
  max-width: 880px;
  margin: 0 0 clamp(48px, 7vw, 88px) clamp(0px, 12vw, 200px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 108px var(--gutter) 70px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 60px;
  align-items: start;
}
.hero__meta {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.hero h1.display {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: start;
  margin-top: clamp(8px, 2vw, 24px);
  /* Slightly tighter than the global .display so two-word lines fit the hero column */
  font-size: clamp(54px, 9.4vw, 148px);
}
/* Each line of the hero headline holds together — never wraps mid-phrase */
.hero__line {
  display: inline-block;
  white-space: nowrap;
}
.hero__foot {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  margin-top: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; gap: 24px;
  max-width: 580px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__image {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  margin: 0;
  position: relative;
  align-self: start;
}
.hero__image-main {
  margin: 0;
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  /* Safari fix: isolation + radial mask forces overflow:hidden to clip transformed children */
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
  background: var(--paper);
  transition: box-shadow .6s var(--ease);
  box-shadow: 0 28px 64px rgba(26, 20, 17, 0.14);
}
.hero__image-main img {
  display: block;
  width: 100%;
  height: clamp(440px, 72vh, 760px);
  object-fit: cover;
  border-radius: var(--radius-img);
  will-change: transform;
}
.hero__image:hover .hero__image-main {
  box-shadow: 0 36px 80px rgba(26, 20, 17, 0.18);
}

/* ----- Hero pull-quote (paper card, top-left, balances the credential card) ----- */
.hero__quote {
  margin: 0;
  position: absolute;
  top: -22px;
  left: -34px;
  z-index: 4;
  width: clamp(196px, 26%, 232px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 6px 12px;

  background: var(--paper);
  padding: 16px 20px 18px;
  border-radius: 4px;

  opacity: 0;
  transform: rotate(0deg) translate(-22px, -22px) scale(.94);
  transition:
    opacity 1.2s var(--ease-out) .25s,
    transform 1.2s var(--ease-out) .25s,
    box-shadow .5s var(--ease);
  box-shadow:
    0 1px 2px rgba(26, 20, 17, 0.08),
    0 24px 56px rgba(26, 20, 17, 0.20);
}
.hero__image.is-visible .hero__quote {
  opacity: 1;
  transform: rotate(-2.2deg) translate(0, 0) scale(1);
}
.hero__quote-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  line-height: .55;
  color: var(--clay);
  margin-top: 10px;
  user-select: none;
}
.hero__quote-text {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.25;
  letter-spacing: -.012em;
  color: var(--ink);
}
.hero__quote-text em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}
.hero__image:hover .hero__quote {
  transform: rotate(0deg) translateY(-6px) scale(1.03);
  box-shadow:
    0 1px 2px rgba(26, 20, 17, 0.08),
    0 36px 80px rgba(26, 20, 17, 0.28);
}

/* ----- Credential card (polaroid-style, intentional, anchors credibility) ----- */
.hero__credential {
  margin: 0;
  position: absolute;
  right: -34px;
  bottom: -56px;
  z-index: 3;
  width: clamp(196px, 28%, 248px);

  background: var(--paper);
  padding: 12px 12px 18px;
  border-radius: 4px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  opacity: 0;
  transform: rotate(0deg) translate(28px, 40px) scale(.94);
  transition:
    opacity 1.2s var(--ease-out) .45s,
    transform 1.2s var(--ease-out) .45s,
    box-shadow .5s var(--ease);
  box-shadow:
    0 1px 2px rgba(26, 20, 17, 0.08),
    0 26px 60px rgba(26, 20, 17, 0.22);
}
.hero__image.is-visible .hero__credential {
  opacity: 1;
  transform: rotate(2.5deg) translate(0, 0) scale(1);
}
.hero__credential-photo {
  width: 100%;
  height: clamp(170px, 22vh, 210px);
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-warm);
  position: relative;
}
.hero__credential-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero__credential-cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px 2px;
  text-align: center;
}
.hero__credential-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__credential-eyebrow::before,
.hero__credential-eyebrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--clay);
  opacity: .55;
}
.hero__credential-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -.012em;
  color: var(--ink);
  line-height: 1.1;
}
.hero__credential-title em {
  font-style: italic;
  color: var(--clay);
}
.hero__credential-meta {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.5;
}
.hero__image:hover .hero__credential {
  transform: rotate(0deg) translateY(-6px) scale(1.03);
  box-shadow:
    0 1px 2px rgba(26, 20, 17, 0.08),
    0 36px 80px rgba(26, 20, 17, 0.28);
}
.hero__image:hover .hero__credential-photo img {
  transform: scale(1.04);
}
.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ---------- INTRO ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  margin-left: clamp(0px, 12vw, 200px);
}
.intro__image { margin: 0; position: relative; }
.intro__image img {
  width: 100%;
  height: clamp(420px, 60vh, 640px);
  object-fit: cover;
  border-radius: var(--radius-img);
}
.intro__image figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.facts {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.facts div {
  display: flex; flex-direction: column; gap: 6px;
}
.facts dt {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.facts dd {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ---------- PRACTICE cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card__image {
  overflow: hidden;
  border-radius: var(--radius-img);
  margin-bottom: 22px;
}
.card__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.card:hover .card__image img { transform: scale(1.04); }
.card__body { padding: 0 4px; }
.card__num {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--clay);
  display: inline-block;
  margin-bottom: 6px;
}
.card__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.card h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- TRAINING (with marquee) ---------- */
.section--training {
  background: var(--paper-warm);
  max-width: none;
  padding-left: var(--gutter);
  padding-right: 0;
  overflow: hidden;
}
.training {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: var(--gutter);
}
.training__copy {
  margin-left: clamp(0px, 12vw, 200px);
  max-width: 720px;
}
.marquee {
  margin-top: clamp(48px, 6vw, 80px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  gap: 36px;
  padding-left: 36px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  animation: marquee 40s linear infinite;
}
.marquee__track .dot { color: var(--clay); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- BENEFITS ---------- */
.benefits {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.benefits li {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.benefits li:last-child { border-right: 0; padding-right: 0; }
.benefits__num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--clay);
}
.benefits h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: -.015em;
}
.benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- FILIPA ---------- */
.filipa {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  margin-left: clamp(0px, 12vw, 200px);
}
.filipa__image { margin: 0; position: relative; }
.filipa__image img {
  width: 100%;
  height: clamp(440px, 62vh, 620px);
  object-fit: cover;
  border-radius: var(--radius-img);
}
.filipa__image figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.filipa__copy p { margin: 18px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; max-width: 56ch; }
.filipa__copy .btn { margin-top: 32px; }

/* ---------- QUOTE ---------- */
.quote {
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
}
.quote__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.quote .mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 300;
  line-height: .6;
  color: var(--clay);
  margin-bottom: 30px;
}
.quote .display em { color: var(--clay); }
.quote__byline {
  display: inline-block;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,241,232,.6);
  font-weight: 500;
}

/* ---------- VOICES (testimonials) ---------- */
.section--voices {
  background: var(--paper-warm);
  max-width: none;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}
.section--voices > .section__label {
  /* keep label aligned to outer gutter */
}
.section--voices .section__head {
  max-width: 880px;
}
.voices {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.voices__counter {
  position: absolute;
  top: -88px;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  pointer-events: none;
}
.voices__count-current {
  font-size: clamp(48px, 5.4vw, 76px);
  color: var(--clay);
  letter-spacing: -.03em;
  line-height: .9;
  transition: color .4s var(--ease);
}
.voices__count-total {
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--ink-muted);
  letter-spacing: .02em;
}
.voices__stage {
  position: relative;
  margin-left: clamp(0px, 12vw, 200px);
  min-height: clamp(540px, 62vh, 660px);
}
.voice {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .7s var(--ease-out), visibility 0s linear .7s;
}
.voice.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .8s var(--ease-out), visibility 0s linear 0s;
}
.voice__image {
  margin: 0;
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  background: var(--paper);
  transform: scale(.985);
  opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
  box-shadow: 0 26px 60px rgba(26, 20, 17, 0.16);
}
.voice.is-active .voice__image {
  transform: scale(1);
  opacity: 1;
  transition-delay: .12s;
}
.voice__image::after {
  /* subtle paper border */
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-img);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.voice__image img {
  display: block;
  width: 100%;
  height: clamp(440px, 60vh, 600px);
  object-fit: cover;
  border-radius: var(--radius-img);
  transition: transform 1.4s var(--ease-out);
}
.voice.is-active .voice__image:hover img { transform: scale(1.03); }
.voice__copy {
  position: relative;
  padding-left: clamp(0px, 4vw, 56px);
}
.voice__mark {
  position: absolute;
  top: clamp(-46px, -5vw, -28px);
  left: clamp(-8px, 1vw, 24px);
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(140px, 18vw, 240px);
  line-height: .55;
  color: var(--clay);
  opacity: .22;
  pointer-events: none;
  user-select: none;
  transform: translateY(8px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.voice.is-active .voice__mark {
  transform: translateY(0);
  transition-delay: .05s;
}
.voice__quote {
  margin: 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.4;
  letter-spacing: -.012em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.voice.is-active .voice__quote {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .22s;
}
.voice__byline {
  margin: clamp(28px, 3.5vw, 44px) 0 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.voice.is-active .voice__byline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .35s;
}
.voice__name {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.voice__from {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ----- Voices nav (arrows + dot strip) ----- */
.voices__nav {
  margin: clamp(48px, 6vw, 80px) 0 0 clamp(0px, 12vw, 200px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}
.voices__arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.voices__arrow:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(26,20,17,.14);
}
.voices__arrow:active { transform: translateY(0); }
.voices__arrow svg { transition: transform .35s var(--ease); }
.voices__arrow--prev:hover svg { transform: translateX(-3px); }
.voices__arrow--next:hover svg { transform: translateX(3px); }
.voices__dots {
  display: flex;
  gap: clamp(8px, 1.2vw, 16px);
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.voices__dot {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 6px;
  border-radius: 12px;
  flex: 0 0 auto;
  transition: transform .35s var(--ease);
}
.voices__dot img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(.55) contrast(.94);
  opacity: .55;
  transition: filter .45s var(--ease), opacity .45s var(--ease),
              transform .45s var(--ease), box-shadow .45s var(--ease),
              outline-color .35s var(--ease);
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 4px 14px rgba(26,20,17,.08);
}
.voices__dot span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color .3s var(--ease);
}
.voices__dot:hover img { filter: grayscale(0) contrast(1); opacity: 1; transform: translateY(-2px); }
.voices__dot:hover span { color: var(--ink); }
.voices__dot.is-active img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.12);
  outline-color: var(--clay);
  box-shadow: 0 14px 28px rgba(184, 106, 82, .35);
}
.voices__dot.is-active span { color: var(--clay); }

/* ---------- SESSIONS ---------- */
.sessions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.session {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-img);
  background: var(--paper-warm);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.session:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(26,20,17,.08); }
.session__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.session__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.session__num {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--clay);
}
.session__price {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.04em;
}
.session__price span {
  font-style: italic;
  font-size: .55em;
  color: var(--clay);
  vertical-align: top;
  margin-right: 4px;
}
.session__desc {
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}
.session--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.session--featured .session__kicker { color: rgba(247,241,232,.65); }
.session--featured .session__head { border-color: rgba(247,241,232,.18); }
.session--featured .session__desc { color: rgba(247,241,232,.78); }
.session--featured .session__num { color: var(--clay); }
.session__tag {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--clay);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.sessions__note {
  margin: 40px 0 0;
  font-size: 14px;
  color: var(--ink-muted);
  text-align: center;
}
.sessions__note a {
  color: var(--ink);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--ink);
  color: var(--paper);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 14vw, 180px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
  position: relative;
}
.contact__copy {
  margin-left: clamp(0px, 12vw, 200px);
}
.contact__copy .display em { color: var(--clay); }
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247,241,232,.6);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247,241,232,.22);
  padding: 12px 0;
  color: var(--paper);
  font-size: 16px;
  outline: none;
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,241,232,.32); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--clay);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f7f1e8' stroke-width='1.6'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 24px; }
.field select option { color: var(--ink); background: var(--paper); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.field--actions {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
}
.form__note { margin: 0; font-size: 12px; color: rgba(247,241,232,.55); }
.form__note a { color: var(--paper); border-bottom: 1px solid rgba(247,241,232,.4); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 36px;
  border-top: 1px solid rgba(247,241,232,.08);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,241,232,.1);
}
.footer__brand p {
  margin: 16px 0 0;
  max-width: 38ch;
  color: rgba(247,241,232,.7);
  font-size: 14px;
  line-height: 1.6;
}
.footer strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(247,241,232,.7);
}
.footer p {
  margin: 0;
  color: rgba(247,241,232,.78);
  font-size: 14px;
  line-height: 1.7;
}
.footer a { transition: color .25s var(--ease); }
.footer a:hover { color: var(--clay); }
.footer__bottom {
  max-width: var(--max);
  margin: 30px auto 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,241,232,.4);
}

/* ---------- WhatsApp floating ---------- */
.whatsapp {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #1f1f1d;
  color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(26,20,17,.25);
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 500;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.whatsapp svg { color: #25d366; }
.whatsapp:hover { transform: translateY(-3px); background: var(--clay); }
.whatsapp:hover svg { color: var(--paper); }

/* ---------- Schedule page ---------- */
.section--page { padding-top: clamp(140px, 18vw, 220px); }
.page-head {
  max-width: 880px;
  margin: 0 0 clamp(48px, 7vw, 88px) clamp(0px, 12vw, 200px);
}
.schedule {
  margin-left: clamp(0px, 12vw, 200px);
  border-top: 1px solid var(--ink);
}
.schedule__row {
  display: grid;
  grid-template-columns: 90px repeat(3, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.schedule__row--head {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  padding: 14px 0;
}
.schedule__day {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--clay);
  font-weight: 300;
}
.schedule__cell {
  display: flex; flex-direction: column; gap: 4px;
}
.schedule__cell strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.schedule__cell em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.schedule__cell--empty { color: var(--ink-muted); font-size: 13px; letter-spacing: .12em; }
.schedule__foot {
  margin: 56px 0 0 clamp(0px, 12vw, 200px);
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.schedule__foot p {
  margin: 0;
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Reveal animations ---------- */
.reveal,
[data-split] .word {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === Picture-frame reveal — slow, stylised, yoga-soft === */
/* Framed images (About + Your teacher): soft top-edge wipe + slow scale-in */
.intro__image.reveal,
.filipa__image.reveal {
  opacity: 0;
  transform: translateY(44px) scale(.965);
  clip-path: inset(8% 0 0 0);
  transition:
    opacity 1.5s var(--ease-out),
    transform 1.6s var(--ease-out),
    clip-path 1.6s var(--ease-out);
  will-change: transform, opacity, clip-path;
}
.intro__image.reveal.is-visible,
.filipa__image.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}
/* Practice cards — group reveal, no clip so body text stays clean */
.cards .card.reveal {
  opacity: 0;
  transform: translateY(48px) scale(.97);
  transition:
    opacity 1.4s var(--ease-out),
    transform 1.5s var(--ease-out);
}
.cards .card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-split] .word {
  display: inline-block;
}
[data-split] em .word { color: var(--clay); }
[data-split] em { font-style: italic; }
[data-split].is-visible .word { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none !important; transform: none !important; }
  .reveal, [data-split] .word { opacity: 1 !important; transform: none !important; }
  .voice .voice__image,
  .voice .voice__quote,
  .voice .voice__byline,
  .voice .voice__mark { opacity: 1 !important; transform: none !important; }
  .hero__credential { opacity: 1 !important; transform: rotate(2.5deg) !important; }
  .hero__quote { opacity: 1 !important; transform: rotate(-2.2deg) !important; }
}

/* ---------- Smooth image loading (About / Practice / Your teacher) ---------- */
.card__image,
.intro__image .img-frame,
.filipa__image .img-frame {
  position: relative;
  overflow: hidden;
  background-color: var(--paper-warm);
  border-radius: var(--radius-img);
  /* Safari fix: ensure rounded corners are honoured even with inner transforms */
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
}
/* Soft, breathing placeholder while the image is downloading */
.card__image::before,
.intro__image .img-frame::before,
.filipa__image .img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 110%,
      rgba(184, 106, 82, 0.12) 0%,
      transparent 60%),
    var(--paper-warm);
  opacity: 1;
  animation: imgBreath 2.6s ease-in-out infinite;
  transition: opacity .9s var(--ease-out);
}
.card__image.is-loaded::before,
.intro__image .img-frame.is-loaded::before,
.filipa__image .img-frame.is-loaded::before {
  opacity: 0;
  animation: none;
}
@keyframes imgBreath {
  0%, 100% { opacity: 1; }
  50%      { opacity: .82; }
}
/* Image fades up from a soft blur and gentle scale */
.card__image > img,
.intro__image .img-frame > img,
.filipa__image .img-frame > img {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(10px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.2s var(--ease-out),
    filter 1.1s var(--ease-out);
  will-change: opacity, transform, filter;
}
.card__image.is-loaded > img,
.intro__image .img-frame.is-loaded > img,
.filipa__image .img-frame.is-loaded > img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
/* Card hover scale still works naturally after load (overrides scale on hover) */

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1.display, .hero__foot { grid-column: 1 / -1; }
  .hero__image { grid-column: 1 / -1; grid-row: auto; margin-top: 40px; padding-bottom: 70px; }
  .hero__image-main img { height: 60vh; min-height: 380px; }
  .hero__quote {
    top: -16px;
    left: -16px;
    width: clamp(174px, 38vw, 214px);
    padding: 13px 16px 15px;
    gap: 4px 10px;
  }
  .hero__quote-text { font-size: 16px; }
  .hero__quote-mark { font-size: 46px; margin-top: 9px; }
  .hero__credential {
    right: -20px;
    bottom: -48px;
    width: clamp(180px, 36vw, 220px);
  }
  .hero__credential-photo { height: 170px; }
  .section__label { position: static; margin-bottom: 24px; flex-direction: row; gap: 14px; align-items: center; }
  .section__head, .filipa, .intro, .training__copy, .contact__copy, .schedule, .schedule__foot, .page-head { margin-left: 0; }
  .contact__inner { grid-template-columns: 1fr; }
  .filipa, .intro { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  /* Voices — stack image above quote */
  .voices__stage { margin-left: 0; min-height: 0; }
  .voice {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    visibility: visible;
  }
  .voice:not(.is-active) { display: none; }
  .voice__image img { height: clamp(320px, 56vw, 460px); }
  .voice__copy { padding-left: 0; }
  .voice__mark { left: -4px; top: -36px; }
  .voices__nav { margin-left: 0; }
  .voices__counter { top: -64px; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta, .nav__icon { display: none; }
  .nav__menu { display: inline-flex; }
  .cards, .sessions { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefits li { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .benefits li:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .contact__form { grid-template-columns: 1fr; }
  .schedule__row { grid-template-columns: 60px 1fr 1fr 1fr; gap: 14px; padding: 18px 0; }
  .schedule__day { font-size: 22px; }
  .schedule__cell strong { font-size: 16px; }
  .hero__scroll { display: none; }
  .whatsapp span { display: none; }
  .whatsapp { padding: 14px; }
  .facts { grid-template-columns: 1fr; gap: 18px; }
  /* Voices — compact mobile dot strip */
  .voices__dots { gap: 6px; justify-content: flex-start; }
  .voices__dot img { width: 38px; height: 48px; }
  .voices__dot span { display: none; }
  .voices__arrow { width: 44px; height: 44px; }
  .voices__nav { gap: 10px; }
  .voice__quote { font-size: 18px; }
  /* Hero pull-quote — keeps presence on phones, sits just inside the photo */
  .hero__quote {
    top: -10px;
    left: -8px;
    width: 162px;
    padding: 10px 12px 12px;
    gap: 2px 9px;
  }
  .hero__quote-text { font-size: 14px; line-height: 1.22; }
  .hero__quote-mark { font-size: 38px; margin-top: 7px; }
  /* Hero credential card scales down further on phones */
  .hero__credential {
    right: -8px;
    bottom: -42px;
    width: 168px;
    padding: 10px 10px 14px;
  }
  .hero__credential-photo { height: 140px; }
  .hero__credential-title { font-size: 16px; }
  .hero__credential-eyebrow { font-size: 8.5px; letter-spacing: .26em; }
  .hero__credential-eyebrow::before,
  .hero__credential-eyebrow::after { width: 10px; }
  .hero__credential-meta { font-size: 9px; letter-spacing: .16em; }
}
