/* ============================================================
   Ramata Diallo — one-page site
   Tokens
   ============================================================ */
:root{
  --ink:        #14120f;
  --ink-soft:   #322e29;
  --paper:      #fffdfa;
  --paper-2:    #f7f2ea;
  --coral-1:    #ffb199;
  --coral-2:    #e62621;
  --coral-3:    #e62621;
  --teal:       #aecac6;
  --muted:      #6f6a63;
  --line:       rgba(20,18,15,0.12);

  --font-display: "Archivo", sans-serif;
  --font-accent:  "Fraunces", serif;
  --font-body:    "Inter", sans-serif;

  --wrap: 1180px;
  --radius: 18px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
  .press-row[aria-hidden]{ display:none !important; }
  .press{ overflow-x:auto !important; }
  .press-track{ width:auto !important; }
}

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* custom cursor only on actual buttons — everywhere else keeps the
   system default cursor */
.btn, button{
  cursor: url("images/pointer-cursor.png") 2 2, pointer;
}

img{ max-width:100%; display:block; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

a{ color: inherit; text-decoration: none; }

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

/* ============================================================
   Scroll progress rail — the page's "growth trajectory" mark
   ============================================================ */
.scroll-progress{
  position: fixed; top:0; left:0; right:0; height: 3px; z-index: 300;
  background: transparent;
}
.scroll-progress span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--coral-1), var(--coral-3));
  transition: width .1s linear;
}

/* ============================================================
   Scroll-reveal system
   ============================================================ */
.reveal{
  opacity:0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-visible{ opacity:1; transform:none; }

.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--ink); color:#fff; padding:12px 18px; z-index:200;
  border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{
  outline: 2px solid var(--coral-3);
  outline-offset: 3px;
}

em{ font-family: var(--font-accent); font-style: italic; font-weight: 500; }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,253,250,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.wordmark{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.primary-nav{ display:flex; gap: 34px; }
.primary-nav a{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.primary-nav a:hover{ color: var(--coral-2); }
.primary-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--coral-2); transition: right 0.25s ease;
}
.primary-nav a:hover::after{ right:0; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; padding:0;
}
.nav-toggle span{ display:block; width:100%; height:2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .3s ease, border-color .3s ease;
  will-change: transform;
}
.btn:hover{ transform: translateY(-2px); }
.btn svg{ width:16px; height:16px; flex-shrink:0; position:relative; z-index:1; }

/* sweeping fill: a layer that scales in from the left on hover, always
   behind the label thanks to isolation + negative z-index */
.btn::before{
  content:"";
  position:absolute; inset:0; z-index:-1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.btn:hover::before{ transform: scaleX(1); }
.btn > *{ position:relative; z-index:1; }

.btn-dark{ background: var(--ink); color: var(--paper); }
.btn-dark::before{ background: var(--coral-2); }
.btn-dark:hover{ color: #fff; }

.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline::before{ background: var(--ink); }
.btn-outline:hover{ color: var(--paper); border-color: var(--ink); }

.btn-light{ background: var(--paper); color: var(--ink); }
.btn-light::before{ background: var(--coral-2); }
.btn-light:hover{ color: #fff; }

.magnetic{ transition: transform .25s cubic-bezier(.2,.8,.2,1), color .3s ease, border-color .3s ease; }

/* ============================================================
   Section scaffolding / type
   ============================================================ */
section{ position: relative; }

.section-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.section-title.center{ text-align:center; }

.section-kicker{
  max-width: 900px;
  margin: 0 auto 44px;
  text-align:center;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.7vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.center-cta{ display:flex; justify-content:center; margin-top: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 32%, var(--coral-1) 65%, var(--coral-3) 100%);
  padding: 84px 0 96px;
  text-align:center;
  overflow: hidden;
}

.hero-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }

.hero-title{
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero-title .line{ display:block; overflow:hidden; padding: 0 2px; }
.hero-title .reveal-text{
  display:inline-block;
  transform: translateY(110%);
  animation: lineUp .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.line-1 .reveal-text{ animation-delay: .15s; }
.line-3 .reveal-text{ animation-delay: .45s; }
@keyframes lineUp{ to{ transform: translateY(0); } }

.strike-line{ opacity:0; animation: fadeIn .3s ease forwards; animation-delay: .35s; }
.strike-line .strike{
  position: relative;
  display: inline-block;
}
.strike-line .strike::after{
  content:"";
  position:absolute; left:0; right:100%; top:50%;
  height: 0.09em;
  background: var(--ink);
  transform: translateY(-50%) rotate(-2deg);
  transform-origin: left center;
  animation: strikeIn .45s cubic-bezier(.3,.7,.3,1) forwards;
  animation-delay: .75s;
}
@keyframes fadeIn{ to{ opacity:1; } }
@keyframes strikeIn{ to{ right:-4%; } }

.hero-title .bang{ font-family: var(--font-accent); font-style: italic; font-weight: 500; }

.hero-anim{
  opacity:0;
  animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}

.hero-sub{
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.hero-ctas{ display:flex; gap: 16px; flex-wrap: wrap; justify-content:center; }

.growth-mark{ width:40px; height:40px; }
.growth-mark--hero{ display:block; width:38px; height:auto; }
.growth-mark--inline{ display:block; width:38px; height:auto; margin: 30px auto 0; }

.scroll-cue{
  position:relative; z-index:1;
  display:block; margin: 40px auto 0;
  background:none; border:none; padding: 8px;
  animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) forwards, bob 2.6s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 90ms), 1.4s;
  opacity:0;
}
@keyframes bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
}

/* ============================================================
   About
   ============================================================ */
.about{ padding: 128px 0; }
.about-grid{
  display:grid; grid-template-columns: 1fr 0.9fr; gap: 80px; align-items:center;
}
.about-text p{ margin: 0 0 20px; color: var(--ink-soft); font-size: 1.05rem; }
.about-cta{ margin-top: 8px; text-align:center; }
.about-heading{
  margin-bottom: 30px;
  white-space: nowrap;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.inline-link{
  color: var(--coral-3);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.inline-link:hover{ color: var(--ink); }

.about-media{ position:relative; perspective: 1000px; }
.about-media-block{
  position:absolute; top: -26px; right: -26px; bottom: 26px; left: 26px;
  background: var(--teal);
  border-radius: var(--radius);
  z-index: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.about-media img{
  position:relative; z-index:1;
  width:100%; height:auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(20,18,15,0.4);
  transform: rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  will-change: transform;
}
.about-media:hover img{ box-shadow: 0 40px 70px -28px rgba(20,18,15,0.5); }
.about-media:hover .about-media-block{ transform: translate3d(4px, -4px, 0); }

/* ============================================================
   Press strip
   ============================================================ */
.press{
  background: var(--ink);
  padding: 40px 0;
  overflow: hidden;
}
.press-label{
  text-align:center; font-size: 0.7rem; font-weight:700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral-2); margin: 0 0 24px;
}
.press-track{
  display:flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.press:hover .press-track, .press:focus-within .press-track{ animation-play-state: paused; }
@keyframes marquee{
  to{ transform: translateX(-50%); }
}
.press-row{
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap: nowrap; align-items:center; gap: 56px;
  padding-right: 56px;
}
.press-row li{
  display:flex; align-items:center;
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity .25s ease;
}
.press-row li:hover{ opacity: 1; }
.press-row img{
  display:block;
  height: 34px;
  width: auto;
  max-width: 130px;
}

/* ============================================================
   Levers
   ============================================================ */
.levers{ padding: 128px 0 100px; background: var(--paper-2); }

.lever-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.lever-card{
  text-align:left;
  padding: 8px;
  border-radius: var(--radius);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.lever-card:hover{ transform: translateY(-6px); }
.lever-icon{
  display:flex; align-items:center; justify-content:center;
  width: 44px; height:44px; margin: 0 auto 22px;
  color: var(--ink);
  transition: transform .4s cubic-bezier(.3,1.4,.4,1), color .3s ease;
}
.lever-card:hover .lever-icon{ transform: rotate(-8deg) scale(1.08); color: var(--coral-3); }
.lever-icon svg{ width:100%; height:100%; }
.lever-icon svg rect{ fill:none; stroke: currentColor; stroke-width:1.4; }
.lever-icon svg text{ fill: currentColor; }

/* icons supplied as raster art: recolored via mask so they still pick
   up currentColor (and the coral hover shift) like the inline SVGs */
.lever-icon--mask{
  background-color: currentColor;
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.lever-kicker{
  text-align: center;
  font-weight: 700; color: var(--coral-3);
  text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.lever-stat{ margin: 0; line-height:1; text-align:center; }
.lever-stat .count{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lever-stat-label{
  text-align: center;
  margin: 6px 0 16px; color: var(--muted);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.lever-desc{ color: var(--ink-soft); margin:0; text-align:center; }

.lever-cta{ margin-top: 22px; text-align:center; }
.lever-cta .btn{ font-size: 0.78rem; padding: 13px 20px; }

/* ============================================================
   Stat bar
   ============================================================ */
.stat-bar{
  background: var(--ink); color: var(--paper);
  padding: 22px 32px; text-align:center;
}
.stat-bar p{
  margin:0; font-weight:700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem;
}
.stat-bar .count{
  font-family: var(--font-display); font-weight:900; font-size: 1.05rem;
  color: var(--coral-2); font-variant-numeric: tabular-nums;
}
.stat-bar .dot{ color: var(--coral-2); padding: 0 6px; }

/* ============================================================
   Coaching
   ============================================================ */
.coaching{ padding: 128px 0 60px; text-align:center; }
.coaching-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 900px; margin: 0 auto;
  text-align:left;
}
.coaching-card{
  position: relative;
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius);
  padding: 40px 38px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.coaching-card:hover{ transform: translateY(-6px); }
.coaching-card.spotlight::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 0%), rgba(255,91,71,0.35), transparent 70%);
  opacity:0; transition: opacity .4s ease;
  pointer-events:none;
}
.coaching-card.spotlight:hover::before{ opacity:1; }
.coaching-card h3, .coaching-card ul{ position:relative; z-index:1; }
.coaching-card h3{
  font-family: var(--font-display); font-weight:800; font-size: 1.25rem;
  margin: 0 0 22px; text-transform: uppercase; letter-spacing: 0.02em;
}
.coaching-card ul{ margin:0; padding: 0 0 0 20px; }
.coaching-card li{ margin-bottom: 12px; color: rgba(255,253,250,0.82); }
.coaching-card li:last-child{ margin-bottom:0; }

.speaker-strip{
  margin-top: 64px;
  background: var(--ink);
  color: var(--paper);
  padding: 30px 24px;
  text-align: center;
}
.speaker-strip p{ margin:0; }
.speaker-label{
  display:block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral-2);
  margin-bottom: 12px;
}
.speaker-names{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.01em; text-transform: uppercase;
}
.speaker-names .dot{ color: var(--coral-2); padding: 0 12px; }

/* ============================================================
   Success stories
   ============================================================ */
.stories{ padding: 100px 0 128px; }
.stories-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  margin: 0 0 56px;
}
.story-card{
  position: relative;
  margin:0; border-top: 2px solid var(--ink); padding-top: 22px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.story-card:hover{ transform: translateY(-6px); border-color: var(--coral-2); }
.story-card::before{
  content:"\201C";
  position:absolute; top: -6px; right: 4px;
  font-family: var(--font-accent); font-style: italic; font-weight:600;
  font-size: 4.5rem; line-height:1; color: var(--coral-1);
  opacity: 0.7; pointer-events:none;
}
.story-who{
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  font-size: 1.15rem; margin: 0 0 16px; line-height:1.3;
}
.story-who span{
  display:block; font-family: var(--font-body); font-style: normal; font-weight: 600;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  margin-top: 4px;
}
.story-card p:last-child{ color: var(--ink-soft); font-size: 0.95rem; margin:0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background: var(--ink); color: var(--paper); padding: 120px 0; }
.faq-title{
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  text-align:center; font-size: clamp(2.6rem, 6vw, 4rem); margin-bottom: 56px;
}
.faq-list{ max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(255,253,250,0.18); }
.faq-item{ border-bottom: 1px solid rgba(255,253,250,0.18); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap: 24px;
  background:none; border:none; color: var(--paper); text-align:left;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 24px 4px;
  transition: color .25s ease, padding-left .25s ease;
}
.faq-q:hover{ color: var(--coral-1); padding-left: 8px; }
.faq-icon{
  position:relative; width:18px; height:18px; flex-shrink:0;
  transition: transform .3s cubic-bezier(.3,1.2,.4,1);
}
.faq-q[aria-expanded="true"] .faq-icon{ transform: rotate(180deg); }
.faq-icon::before, .faq-icon::after{
  content:""; position:absolute; background: var(--coral-2); border-radius:2px;
}
.faq-icon::before{ left:0; top:50%; width:100%; height:2px; transform: translateY(-50%); }
.faq-icon::after{ top:0; left:50%; width:2px; height:100%; transform: translateX(-50%); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .faq-icon::after{ transform: translateX(-50%) rotate(90deg); opacity:0; }

.faq-a{
  display:grid;
  grid-template-rows: 0fr;
  overflow:hidden;
  transition: grid-template-rows .3s ease;
}
.faq-a p{
  overflow:hidden; margin:0; padding-right: 42px; min-height:0;
  color: rgba(255,253,250,0.72); font-size: 0.95rem;
}
.faq-q[aria-expanded="true"] + .faq-a{
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

/* ============================================================
   Banner
   ============================================================ */
.banner{ line-height:0; }
.banner-frame{
  display:block; position:relative; overflow:hidden;
  height: clamp(300px, 42vw, 620px);
}
.banner-img{
  position:absolute; top:50%; left:0;
  width:100%; height: 130%; object-fit: cover;
  object-position: center 28%;
  transform: translateY(calc(-50% + var(--py, 0px)));
  will-change: transform;
}

/* ============================================================
   Appointment
   ============================================================ */
.appointment{ background: var(--ink); color: var(--paper); padding: 60px 0; }
.appointment-row{
  display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap:wrap;
}
.appointment-title{
  margin:0; color: var(--paper);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background: var(--ink); color: var(--paper); padding: 0 0 44px; }
.footer-row{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 20px;
  padding-top: 8px;
}
.footer-nav{ display:flex; flex-direction:column; gap: 8px; }
.footer-nav a{
  font-weight:600; font-size: 0.95rem; opacity: 0.85;
}
.footer-nav a:hover{ opacity:1; color: var(--coral-2); }
.footer-social{ display:flex; gap: 16px; }
.footer-social a{
  width: 38px; height:38px; border-radius:50%;
  border: 1px solid rgba(255,253,250,0.3);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social svg{ width:17px; height:17px; fill: var(--paper); }
.footer-social a:hover{ background: var(--coral-2); border-color: var(--coral-2); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 56px; }
  .about-media{ order:-1; max-width: 420px; margin: 0 auto; }
  .lever-grid{ grid-template-columns: 1fr; gap: 48px; }
  .coaching-grid{ grid-template-columns: 1fr; }
  .stories-grid{ grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 720px){
  .wrap{ padding: 0 22px; }

  .about-heading{ white-space: normal; font-size: clamp(1.6rem, 8vw, 2.2rem); }

  .nav-toggle{ display:flex; }
  .primary-nav{
    position:absolute; top: 76px; left:0; right:0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; gap:0;
    max-height:0; overflow:hidden; transition: max-height .3s ease;
  }
  .primary-nav.open{ max-height: 240px; }
  .primary-nav a{ padding: 16px 22px; border-top: 1px solid var(--line); }

  .hero{ padding: 56px 0 80px; }
  .hero-ctas{ flex-direction:column; width:100%; }
  .hero-ctas .btn{ justify-content:center; }

  .about, .levers, .coaching, .stories, .faq{ padding-top: 80px; padding-bottom: 80px; }

  .appointment-row{ flex-direction:column; align-items:flex-start; }
  .footer-row{ flex-direction:column; align-items:flex-start; }

  .story-card::before{ font-size: 3.2rem; }
  .banner-frame{ height: clamp(260px, 70vw, 420px); }
}
