/* ============================================================
   IBRAHIMA FIKRY DIALLO — PORTFOLIO
   Aesthetic: Luxury Editorial / Consulting
   ============================================================ */

:root {
  --ink:        #0e1020;
  --ink-soft:   #151931;
  --ink-mid:    #2e3560;
  --ink-light:  #38407a;
  --cream:      #ffffff;
  --cream-dim:  #ede6cc;
  --cream-mute: #c4b890;
  --gold:       #d4aa60;
  --gold-lt:    #eacc88;
  --gold-dk:    #9a7830;
  --border:     rgba(212,170,96,.25);
  --border-s:   rgba(255,255,255,.1);

  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'DM Sans', sans-serif;
  --ff-m: 'Fira Code', monospace;

  --ease: cubic-bezier(.4,0,.2,1);
  --mw:   1200px;
  --section-pad: 7.5rem 0;
}

[data-theme="light"] {
  --ink:        #fefcfa;
  --ink-soft:   #fdf9f4;
  --ink-mid:    #f8f3ea;
  --ink-light:  #f2ebe0;
  --cream:      #080e1a;
  --cream-dim:  #111e30;
  --cream-mute: #2e3f58;
  --gold:       #0e2244;
  --gold-lt:    #1a3460;
  --gold-dk:    #060e20;
  --border:     rgba(8,14,26,.18);
  --border-s:   rgba(8,14,26,.10);
}

[data-theme="light"] nav.sc {
  background: rgba(254,252,250,.96);
  backdrop-filter: blur(14px);
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
* { min-width: 0; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 9999;
}

a { text-decoration: none; color: inherit; }
p { margin-bottom: 1rem; }
ul { list-style: none; padding: 0; }

/* ============================================================
   QUARTO OVERRIDES
   ============================================================ */
#quarto-content, main, .page-layout-full { padding: 0 !important; margin: 0 !important; }
#title-block-header { display: none !important; }
.quarto-title-meta { display: none; }

/* ============================================================
   PROGRESS BAR & BACK TO TOP
   ============================================================ */
#prog {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  z-index: 2000;
  transition: width .05s linear;
}

#btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--ink-mid);
  color: var(--gold);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
}

#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--gold); color: var(--ink); }

/* ============================================================
   UTILITIES
   ============================================================ */
.c {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.sec-tag {
  font-family: var(--ff-m);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
}

.sec-tag::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.sec-ttl {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.sec-ttl em { font-style: italic; color: var(--gold-lt); }

.sec-sub {
  font-size: .98rem;
  color: var(--cream-dim);
  line-height: 1.85;
  max-width: 640px;
  margin-top: .75rem;
}

.divl {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.vis { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

.tag-pill {
  display: inline-flex;
  padding: .2rem .7rem;
  border: 1px solid var(--border-s);
  font-family: var(--ff-m);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--cream-mute);
  transition: border-color .2s, color .2s;
}

.tag-pill:hover { border-color: var(--gold-dk); color: var(--cream-dim); }

section { padding: var(--section-pad); }

.section-header { margin-bottom: 5rem; }

.sec-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-g, .btn-o {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  font-family: var(--ff-b);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-decoration: none;
}

.btn-g { background: var(--gold); color: var(--ink); }
.btn-g:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--ink); text-decoration: none; }

.btn-o { border: 1px solid var(--border); color: var(--cream-dim); background: transparent; }
.btn-o:hover { border-color: var(--gold); color: var(--cream); transform: translateY(-2px); text-decoration: none; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }

.fb {
  padding: .35rem 1.1rem;
  border: 1px solid var(--border-s);
  background: transparent;
  color: var(--cream-mute);
  font-family: var(--ff-m);
  font-size: .63rem;
  letter-spacing: .12em;
  cursor: pointer;
  transition: all .2s;
}

.fb:hover { border-color: var(--border); color: var(--cream-dim); }
.fb.active { border-color: var(--gold); background: rgba(200,165,74,.08); color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s var(--ease), padding .4s var(--ease);
}

nav.sc {
  background: rgba(12,12,12,.93);
  backdrop-filter: blur(14px);
  padding: 0 2.5rem;
  border-bottom: 1px solid var(--border-s);
}

.nav-logo {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .02em;
  position: relative;
  display: inline-flex;
  overflow: hidden;
  padding: 6px 0;
}

.nav-logo::before {
  content: '';
  position: absolute;
  bottom: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: left .5s var(--ease);
}

.nav-logo:hover::before { left: 0; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-b);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 1.2rem; align-items: center; }

.nav-icon {
  width: 2rem; height: 2rem;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-mute);
  font-size: .8rem;
  transition: all .2s;
}

.nav-icon:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-s);
  color: var(--cream-mute);
  width: 2rem; height: 2rem;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
  position: relative;
  z-index: 1200;
}

.hamburger:hover { border-color: var(--gold); color: var(--gold); }

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -280px;
  width: 280px; height: 100vh;
  background: var(--ink-soft);
  border-left: 1px solid var(--border-s);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  transition: right .35s var(--ease);
}

.nav-drawer.open { right: 0; }

.nav-drawer a {
  font-family: var(--ff-b);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: .9rem 0;
  width: 100%;
  border-bottom: 1px solid var(--border-s);
  transition: color .2s, padding-left .2s;
}

.nav-drawer a:hover { color: var(--gold); padding-left: .5rem; }
.nav-drawer a:first-child { border-top: 1px solid var(--border-s); }

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.nav-backdrop.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 50%, rgba(200,165,74,.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 18% 82%, rgba(200,165,74,.04) 0%, transparent 60%);
}

.hero-gl {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,170,96,.1) 30%, rgba(212,170,96,.1) 70%, transparent);
}

.hero-gl:nth-child(1) { left: 25%; }
.hero-gl:nth-child(2) { left: 50%; }
.hero-gl:nth-child(3) { left: 75%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2.5rem;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: center;
  width: 100%;
}

.hero-eye {
  font-family: var(--ff-m);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}

.hero-eye::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-name {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .4s forwards;
}

.hero-name em { font-style: italic; color: var(--gold-lt); }

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(1.2rem, 2.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .6s forwards;
}

.hero-desc {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--cream-mute);
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .75s forwards;
}

.hero-desc strong { color: var(--cream-dim); font-weight: 400; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .88s forwards;
}

.hero-trust span:first-child {
  font-family: var(--ff-m);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--cream-mute);
  align-self: center;
}

.trust-chip {
  padding: .22rem .75rem;
  border: 1px solid var(--border-s);
  font-family: var(--ff-m);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--gold-dk);
  background: rgba(200,165,74,.05);
  transition: border-color .2s;
}

.trust-chip:hover { border-color: var(--border); }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.status-dot {
  width: 8px; height: 8px;
  background: #4caf7d;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

.status-text {
  font-family: var(--ff-m);
  font-size: .65rem;
  letter-spacing: .14em;
  color: #4caf7d;
  text-transform: uppercase;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.8rem;
}

.hero-pill {
  padding: .25rem .8rem;
  border: 1px solid rgba(76,175,125,.3);
  background: rgba(76,175,125,.06);
  font-family: var(--ff-m);
  font-size: .6rem;
  letter-spacing: .12em;
  color: #4caf7d;
  text-transform: uppercase;
}

.hero-photo {
  opacity: 0;
  animation: fadeUp .9s var(--ease) .55s forwards;
}

.hero-photo-inner {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-photo-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  pointer-events: none;
}

.hero-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(212,170,96,.12));
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}

.hero-scroll span {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.hero-scroll-line {
  width: 1px; height: 2.8rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollP 2s ease-in-out infinite;
}

/* ============================================================
   PHILOSOPHY / METRICS STRIP
   ============================================================ */
#metrics {
  background: var(--ink-soft);
  padding: 4rem 0;
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
}

.metrics-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.phil-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem;
  gap: 1rem;
  transition: background .3s;
  cursor: default;
}

.phil-card:hover { background: rgba(212,170,96,.03); }

.phil-icon {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: .6;
  transition: opacity .3s, transform .3s;
}

.phil-card:hover .phil-icon { opacity: 1; transform: scale(1.15); }

.phil-quote {
  font-family: var(--ff-d);
  font-size: clamp(.95rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.5;
}

.phil-quote em { color: var(--gold); font-style: italic; }

.phil-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .3;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--ink-soft); position: relative; }

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-bio p {
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-bio p:first-of-type {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  line-height: 1.75;
  color: var(--cream);
  font-weight: 300;
}

.about-bio .btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.cred-card {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border-s);
  background: rgba(255,255,255,.012);
  transition: border-color .3s, transform .3s;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.cred-card:hover { border-color: var(--border); transform: translateY(-2px); }

.cred-icon { color: var(--gold); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.cred-title { font-family: var(--ff-d); font-size: 1rem; color: var(--cream); line-height: 1.3; margin-bottom: .2rem; }
.cred-sub { font-size: .72rem; color: var(--cream-mute); letter-spacing: .04em; }

.timeline { margin-top: 2.5rem; position: relative; padding-left: 1.5rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: .4rem; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dk) 65%, transparent);
}

.t-item { position: relative; padding-left: 2rem; padding-bottom: 1.8rem; }

.t-dot {
  position: absolute;
  left: -1.82rem; top: .3rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ink-soft);
  transition: background .3s;
}

.t-item:hover .t-dot { background: var(--gold); }

.t-yr { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .15em; color: var(--gold); display: block; margin-bottom: .25rem; }
.t-role { font-family: var(--ff-d); font-size: 1.15rem; color: var(--cream); display: block; margin-bottom: .15rem; }
.t-org { font-size: .78rem; color: var(--cream-mute); letter-spacing: .06em; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.svc-card {
  padding: 2.5rem;
  border: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  background: rgba(255,255,255,.01);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.svc-card:hover { border-color: var(--border); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-num { font-family: var(--ff-m); font-size: .65rem; letter-spacing: .2em; color: var(--gold); display: block; margin-bottom: 1.2rem; }
.svc-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.svc-card h3 { font-family: var(--ff-d); font-size: 1.45rem; font-weight: 400; color: var(--cream); margin-bottom: .8rem; line-height: 1.25; }
.svc-card > p { font-size: .92rem; color: var(--cream-dim); line-height: 1.75; margin-bottom: 1.2rem; }

.svc-list { padding: 0; margin-bottom: 1.5rem; }
.svc-list li { font-size: .86rem; color: var(--cream-mute); padding: .3rem 0 .3rem 1.1rem; position: relative; border-bottom: 1px solid var(--border-s); }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-dk); font-size: .75rem; }

.svc-cta { font-family: var(--ff-m); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color .2s; }
.svc-cta:hover { color: var(--gold-lt); }

.svc-price {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-s);
  margin-bottom: .8rem;
}

.svc-price span {
  font-family: var(--ff-m);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--cream-mute);
  text-transform: uppercase;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio { background: var(--ink); }

.p-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.p-card {
  border: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  background: var(--ink-mid);
}

.p-card:hover { border-color: var(--border); transform: translateY(-4px); }

.p-img { aspect-ratio: 16/9; background: var(--ink-light); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.p-icon-wrap { font-size: 3rem; color: var(--border); transition: color .3s, transform .3s; }
.p-card:hover .p-icon-wrap { color: var(--gold); transform: scale(1.05); }

.p-hover { position: absolute; inset: 0; background: rgba(12,12,12,.88); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; opacity: 0; transition: opacity .3s; }
.p-card:hover .p-hover { opacity: 1; }

.ph-ey { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.ph-ttl { font-family: var(--ff-d); font-size: 1.35rem; color: var(--cream); text-align: center; padding: 0 1rem; }
.ph-btn { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .15em; color: var(--gold); border: 1px solid var(--border); padding: .3rem 1rem; transition: background .2s; }

.p-info { padding: 1.4rem 1.6rem; }
.p-cat { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .14em; color: var(--gold); display: block; margin-bottom: .4rem; }
.p-ttl { font-family: var(--ff-d); font-size: 1.15rem; color: var(--cream); line-height: 1.3; margin-bottom: .4rem; }
.p-desc { font-size: .84rem; color: var(--cream-mute); line-height: 1.7; }

/* ============================================================
   PROJECT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,.92);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open { opacity: 1; pointer-events: auto; }

.proj-modal {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}

.modal-overlay.open .proj-modal { transform: translateY(0); }

.pm-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none;
  border: 1px solid var(--border-s);
  color: var(--cream-mute);
  width: 2.2rem; height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all .2s;
  z-index: 10;
}

.pm-close:hover { border-color: var(--gold); color: var(--gold); }

.pm-header { padding: 2.5rem 2.5rem 1.8rem; border-bottom: 1px solid var(--border-s); background: var(--ink-mid); }
.pm-eye { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .6rem; }
.pm-title { font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1.2rem; }
.pm-meta-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.pm-meta { display: flex; flex-direction: column; gap: .2rem; }
.pm-meta-lbl { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .18em; color: var(--cream-mute); }
.pm-meta-val { font-size: .88rem; color: var(--cream-dim); }

.pm-body { padding: 2rem 2.5rem; background: var(--ink-soft); }
.pm-body p { color: var(--cream-dim); font-size: .95rem; line-height: 1.85; margin-bottom: 1rem; }
.pm-results-ttl { font-family: var(--ff-m); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 1.5rem 0 .8rem; }
.pm-results li { position: relative; padding-left: 1.3rem; font-size: .9rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: .4rem; }
.pm-results li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dk); }
.pm-tools { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.pm-tool { padding: .22rem .75rem; border: 1px solid rgba(200,165,74,.2); font-family: var(--ff-m); font-size: .6rem; color: var(--gold-dk); background: rgba(200,165,74,.05); }
.pm-footer { padding: 1.5rem 2.5rem; border-top: 1px solid var(--border-s); display: flex; gap: .8rem; flex-wrap: wrap; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.cert-card {
  border: 1px solid var(--border-s);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  background: var(--ink-mid);
  position: relative;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--cc, var(--gold)), transparent);
  opacity: .7;
}

.cert-card:hover { border-color: var(--border); transform: translateY(-3px); }

.cert-img-area { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--border); transition: color .3s; }
.cert-card:hover .cert-img-area { color: var(--gold); }
.cert-body { padding: 1.2rem 1.4rem 1.4rem; }
.cert-badge { display: inline-block; padding: .18rem .65rem; font-family: var(--ff-m); font-size: .6rem; letter-spacing: .12em; background: var(--cb, rgba(200,165,74,.1)); color: var(--cc, var(--gold)); margin-bottom: .7rem; }
.cert-card h4 { font-family: var(--ff-d); font-size: 1rem; color: var(--cream); line-height: 1.3; margin-bottom: .4rem; }
.cert-date { font-size: .72rem; color: var(--cream-mute); display: block; margin-bottom: .6rem; }
.cert-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.cert-tag { padding: .15rem .55rem; border: 1px solid var(--border-s); font-size: .6rem; color: var(--cream-mute); }
.cert-hint { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .14em; color: var(--gold); margin-top: .8rem; text-transform: uppercase; }

.cert-extra { display: none; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }

.cert-show-all {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 2.5rem auto 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-family: var(--ff-m);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .7rem 1.8rem;
  cursor: pointer;
  transition: all .2s;
}

.cert-show-all:hover { border-color: var(--gold); color: var(--gold); }

.proj-extra { display: none; opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }

.proj-show-all {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 2.5rem auto 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-family: var(--ff-m);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .7rem 1.8rem;
  cursor: pointer;
  transition: all .2s;
}

.proj-show-all:hover { border-color: var(--gold); color: var(--gold); }

/* Cert Modal */
.cert-modal {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}

.modal-overlay.open .cert-modal { transform: translateY(0); }

.cm-header { padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border-s); }
.cm-issuer { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .5rem; }
.cm-title { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 300; color: var(--cream); line-height: 1.25; }
.cm-body { padding: 1.8rem 2rem; }
.cm-row { display: flex; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--border-s); }
.cm-lbl { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .15em; color: var(--cream-mute); min-width: 80px; align-self: center; }
.cm-val { font-size: .88rem; color: var(--cream-dim); }
.cm-desc { font-size: .9rem; color: var(--cream-dim); line-height: 1.8; margin-top: 1.2rem; }
.cm-skills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.cm-skill { padding: .22rem .7rem; border: 1px solid rgba(200,165,74,.2); font-size: .7rem; color: var(--gold-dk); font-family: var(--ff-m); }
.cm-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border-s); display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--ink-soft); }

.proc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: start;
}

.proc-list { display: flex; flex-direction: column; gap: .3rem; }

.proc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}

.proc-item:hover { border-color: var(--border-s); background: rgba(255,255,255,.01); }
.proc-item.active { border-color: var(--border); background: rgba(212,170,96,.04); }

.proc-item-num { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .2em; color: var(--gold); min-width: 2rem; }
.proc-item-body { flex: 1; }
.proc-item-title { font-family: var(--ff-d); font-size: 1rem; font-weight: 400; color: var(--cream); line-height: 1.2; }
.proc-item-sub { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; color: var(--cream-mute); margin-top: .2rem; }

.proc-item-arrow {
  font-size: .7rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: translateX(-4px);
}

.proc-item.active .proc-item-arrow,
.proc-item:hover  .proc-item-arrow { opacity: 1; transform: translateX(0); }

.proc-panel { position: sticky; top: 5rem; min-height: 320px; }

.proc-detail {
  display: none;
  padding: 2.5rem;
  border: 1px solid var(--border-s);
  background: var(--ink-mid);
  animation: procFadeIn .35s ease;
}

.proc-detail.active { display: block; }

@keyframes procFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.proc-detail-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.proc-detail-num { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .2em; color: var(--cream-mute); margin-bottom: .6rem; }
.proc-detail-title { font-family: var(--ff-d); font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; line-height: 1.2; }
.proc-detail-desc { font-size: .92rem; color: var(--cream-dim); line-height: 1.9; margin-bottom: 1.5rem; }
.proc-detail-tags { display: flex; flex-wrap: wrap; gap: .3rem; }

/* ============================================================
   BLOG / FIELD NOTES
   ============================================================ */
#blog { background: var(--ink-soft); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.blog-card {
  border: 1px solid var(--border-s);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  background: var(--ink-mid);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { border-color: var(--border); transform: translateY(-4px); }

.blog-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--border); transition: color .3s; position: relative; overflow: hidden; }
.blog-img.analytics { background: linear-gradient(135deg, rgba(200,165,74,.06) 0%, var(--ink-light) 100%); }
.blog-img.strategy  { background: linear-gradient(135deg, rgba(100,120,200,.06) 0%, var(--ink-light) 100%); }
.blog-img.tools     { background: linear-gradient(135deg, rgba(60,180,120,.06) 0%, var(--ink-light) 100%); }
.blog-img.nlp       { background: linear-gradient(135deg, rgba(200,80,80,.06) 0%, var(--ink-light) 100%); }
.blog-card:hover .blog-img { color: var(--gold); }

.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; }
.blog-cat { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: .18rem .6rem; border: 1px solid rgba(200,165,74,.2); background: rgba(200,165,74,.05); }
.blog-date { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; color: var(--cream-mute); }
.blog-ttl { font-family: var(--ff-d); font-size: 1.15rem; color: var(--cream); line-height: 1.35; margin-bottom: .6rem; }
.blog-exc { font-size: .86rem; color: var(--cream-mute); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-cta { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .5rem; margin-top: auto; }
.blog-cta::after { content: '→'; transition: transform .2s; }
.blog-card:hover .blog-cta::after { transform: translateX(3px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--ink-mid); }

.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }

.testi-card {
  padding: 2.5rem;
  border: 1px solid var(--border-s);
  position: relative;
  background: rgba(255,255,255,.01);
  transition: border-color .3s;
}

.testi-card:hover { border-color: var(--border); }

.qmark { position: absolute; top: -1.2rem; left: 1.8rem; font-family: var(--ff-d); font-size: 4.5rem; color: var(--gold); line-height: 1; }
.testi-text { font-family: var(--ff-d); font-size: 1.05rem; font-style: italic; color: var(--cream-dim); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.t-author { display: flex; align-items: center; gap: .9rem; }
.t-avi { width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.t-name { display: block; font-family: var(--ff-b); font-size: .85rem; color: var(--cream); font-weight: 400; }
.t-ttl { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; color: var(--cream-mute); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

.contact-ttl { font-family: var(--ff-d); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 1.2rem; }
.contact-ttl em { font-style: italic; color: var(--gold-lt); }
.contact-sub { font-size: .97rem; color: var(--cream-dim); line-height: 1.85; margin-bottom: 2rem; }

.contact-links { list-style: none; padding: 0; }
.contact-links li { padding: .1rem 0; }
.contact-links a { display: flex; align-items: center; gap: .9rem; font-size: .92rem; color: var(--cream-dim); padding: .75rem 0; border-bottom: 1px solid var(--border-s); transition: color .25s; }
.contact-links a:hover { color: var(--cream); }

.cl-icon { width: 2rem; height: 2rem; border: 1px solid var(--border-s); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-family: var(--ff-m); color: var(--gold); transition: all .2s; flex-shrink: 0; }
.contact-links a:hover .cl-icon { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.avail { display: flex; align-items: center; gap: .7rem; margin-top: 1.5rem; padding: .7rem 1rem; border: 1px solid rgba(80,200,100,.2); background: rgba(80,200,100,.04); font-size: .8rem; color: var(--cream-dim); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }

.form-field { width: 100%; background: var(--ink-mid); border: 1px solid var(--border-s); color: var(--cream); font-family: var(--ff-b); font-size: .9rem; font-weight: 300; padding: .8rem 1rem; margin-bottom: .8rem; transition: border-color .25s; outline: none; display: block; }
.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: var(--cream-mute); }
select.form-field option { background: var(--ink-mid); color: var(--cream); }
textarea.form-field { height: 120px; resize: vertical; }
.form-ttl { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--border-s); padding: 2rem 0; }

.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .7rem; letter-spacing: .08em; color: var(--cream-mute); }
.footer-copy span { color: var(--gold); }
.footer-built { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .12em; color: var(--cream-mute); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollP  { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes pulse    { 0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,.4); } 50% { box-shadow: 0 0 0 5px rgba(76,175,80,0); } }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(76,175,125,.4); } 70% { box-shadow: 0 0 0 7px rgba(76,175,125,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,125,0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { display: block; }
  .hero-photo-inner { width: 60%; margin: 0 auto; aspect-ratio: 3/4; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .p-grid, .cert-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-wrap { grid-template-columns: 1fr; }
  .proc-panel { display: none; }
  .proc-item { padding: .9rem 1rem; flex-wrap: wrap; }
  .proc-item.active { border-color: var(--gold); border-left: 2px solid var(--gold); }
  .proc-item-sub { display: none; }
  .proc-item-arrow { display: none; }
  .proc-inline { width: 100%; overflow: hidden; max-height: 0; opacity: 0; transition: max-height .35s ease, opacity .35s ease; padding: 0 1rem; background: rgba(212,170,96,.03); border: 1px solid var(--border); border-top: none; }
  .proc-inline .proc-detail-icon  { font-size: 1.3rem; margin-top: 1.2rem; }
  .proc-inline .proc-detail-num   { font-size: .58rem; }
  .proc-inline .proc-detail-title { font-size: 1.1rem; margin-bottom: .6rem; }
  .proc-inline .proc-detail-desc  { font-size: .85rem; line-height: 1.8; }
  .proc-inline .proc-detail-tags  { margin-bottom: 1.2rem; }
  .metrics-grid { flex-direction: column; gap: 0; }
  .phil-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
  .phil-card { padding: 1.5rem 1rem; }
}

@media (max-width: 540px) {
  .hero-photo-inner { width: 80%; }
  .p-grid, .cert-grid, .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   MENTORING PAGE
   ══════════════════════════════════════════ */

.mnt-hero {
  position:    relative;
  min-height:  100vh;
  display:     flex;
  align-items: center;
  padding:     8rem 0 5rem;
  overflow:    hidden;
}

.mnt-hero-bg { position: absolute; inset: 0; z-index: 0; }

.mnt-hero-inner {
  position:              relative;
  z-index:               1;
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   0;
  align-items:           center;
  max-width:             1200px;
}

.hero-eye {
  font-family:    var(--ff-m);
  font-size:      .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  1.5rem;
}

.mnt-hero-title {
  font-family:   var(--ff-d);
  font-size:     clamp(2.8rem, 5.5vw, 5rem);
  font-weight:   300;
  line-height:   1.05;
  color:         var(--cream);
  margin-bottom: 2rem;
}

.mnt-hero-title em { font-style: italic; color: var(--gold-lt); }

.mnt-hero-desc {
  font-size:     1rem;
  color:         var(--cream-dim);
  line-height:   1.9;
  max-width:     560px;
  margin-bottom: 2rem;
}

.hero-status {
  display:       flex;
  align-items:   center;
  gap:           .6rem;
  margin-bottom: 2.5rem;
}

.mnt-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.mnt-hero-photo { position: relative; }
.mnt-hero-photo img {
  width:   100%;
  display: block;
  filter:  drop-shadow(0 0 40px rgba(212,170,96,.15));
}

/* Strip */
.mnt-strip {
  background:    var(--ink-mid);
  border-top:    1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding:       1.5rem 0;
}

.mnt-strip-inner {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             2rem;
  flex-wrap:       wrap;
}

.mnt-strip-item {
  display:     flex;
  align-items: center;
  gap:         .7rem;
  font-size:   .85rem;
  color:       var(--cream-dim);
}

.mnt-strip-item i { color: var(--gold); font-size: 1rem; }

.mnt-strip-sep {
  width:      1px;
  height:     1.2rem;
  background: var(--border-s);
}

/* Conviction */
.mnt-conviction { padding: 3.5rem 0; text-align: center; }

.mnt-conviction-text {
  font-family: var(--ff-d);
  font-size:   clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color:       var(--cream);
  line-height: 1.4;
  max-width:   800px;
  margin:      0 auto;
}

.mnt-conviction-text em { font-style: italic; color: var(--gold-lt); }

/* Section header */
#mnt-offers, #mnt-why { padding: var(--section-pad); }

.mnt-section-header {
  text-align: center;
  max-width:  640px;
  margin:     0 auto 4rem;
}

/* Offers grid */
.mnt-offers-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  align-items:           start;
  margin-bottom:         3rem;
}

.mnt-offer {
  border:         1px solid var(--border-s);
  background:     rgba(255,255,255,.01);
  padding:        2.5rem 2rem;
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  position:       relative;
  transition:     border-color .3s, transform .3s;
}

.mnt-offer::before {
  content:          '';
  position:         absolute;
  top: 0; left: 0; right: 0;
  height:           2px;
  background:       linear-gradient(to right, var(--gold), transparent);
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform .4s var(--ease);
}

.mnt-offer:hover { border-color: var(--border); transform: translateY(-4px); }
.mnt-offer:hover::before { transform: scaleX(1); }

.mnt-offer-featured {
  border-color: var(--border);
  background:   rgba(212,170,96,.03);
}

.mnt-offer-featured::before { transform: scaleX(1) !important; }

.mnt-offer-head {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}

.mnt-offer-num {
  font-family:    var(--ff-m);
  font-size:      .6rem;
  letter-spacing: .2em;
  color:          var(--cream-mute);
}

.mnt-offer-badge {
  font-size:      .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding:        .25rem .7rem;
  border:         1px solid var(--border-s);
  color:          var(--cream-mute);
}

.mnt-badge-gold { border-color: var(--gold); color: var(--gold); }

.mnt-offer-icon { font-size: 1.8rem; color: var(--gold); }

.mnt-offer-title {
  font-family: var(--ff-d);
  font-size:   1.4rem;
  font-weight: 400;
  color:       var(--cream);
  line-height: 1.2;
  margin:      0;
}

.mnt-offer-promise { font-size: .88rem; color: var(--gold-lt); line-height: 1.6; margin: 0; }

.mnt-offer-for {
  font-size:   .8rem;
  color:       var(--cream-mute);
  display:     flex;
  align-items: center;
  gap:         .5rem;
  margin:      0;
}

.mnt-offer-divider { height: 1px; background: var(--border-s); margin: .5rem 0; }

.mnt-offer-list-label {
  font-family:    var(--ff-m);
  font-size:      .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color:          var(--cream-mute);
}

.mnt-offer-list {
  list-style:     none;
  padding:        0;
  margin:         0;
  display:        flex;
  flex-direction: column;
  gap:            .5rem;
}

.mnt-offer-list li {
  font-size:    .85rem;
  color:        var(--cream-dim);
  line-height:  1.5;
  padding-left: 1.2rem;
  position:     relative;
}

.mnt-offer-list li::before {
  content:  '→';
  position: absolute;
  left:     0;
  color:    var(--gold);
  font-size: .75rem;
}

.mnt-offer-outcome {
  display:     flex;
  align-items: flex-start;
  gap:         .6rem;
  padding:     1rem;
  background:  rgba(212,170,96,.05);
  border-left: 2px solid var(--gold);
  font-size:   .82rem;
  color:       var(--cream-dim);
  line-height: 1.6;
}

.mnt-offer-outcome i { color: var(--gold); margin-top: .1rem; flex-shrink: 0; }

.mnt-offer-footer {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  margin-top:      auto;
}

.mnt-offer-price { font-family: var(--ff-d); font-size: 1.5rem; color: var(--cream); }
.mnt-offer-price span { font-size: .8rem; color: var(--cream-mute); font-family: var(--ff-b); }

.mnt-offer-timeline {
  font-size:   .78rem;
  color:       var(--cream-mute);
  display:     flex;
  align-items: center;
  gap:         .4rem;
}

.mnt-offer-btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* Table */
.mnt-table-wrap { margin-top: 3rem; overflow-x: auto; }

.mnt-table { width: 100%; border-collapse: collapse; font-size: .88rem; }

.mnt-table th {
  font-family:    var(--ff-m);
  font-size:      .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color:          var(--cream-mute);
  padding:        .8rem 1.2rem;
  border-bottom:  1px solid var(--border-s);
  text-align:     left;
}

.mnt-table td {
  padding:       .9rem 1.2rem;
  color:         var(--cream-dim);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.mnt-table td strong { color: var(--cream); }
.mnt-table-featured td { background: rgba(212,170,96,.04); color: var(--cream); }

.mnt-table-note { font-size: .78rem; color: var(--cream-mute); margin-top: 1rem; text-align: center; }

/* About */
#mnt-about { padding: var(--section-pad); }

.mnt-about-grid {
  display:               grid;
  grid-template-columns: 1fr 380px;
  gap:                   5rem;
  align-items:           center;
}

.mnt-about-photo .hero-photo-inner {
  position: relative;
}

.mnt-about-photo .hero-photo-inner {
  position:     relative;
  height:       auto !important;
  aspect-ratio: auto !important;
  overflow:     visible !important;
}

.mnt-about-photo .hero-photo-inner::before {
  content:        '';
  position:       absolute;
  inset:          0;
  background:     linear-gradient(
    to bottom,
    transparent 70%,
    var(--ink-soft) 100%
  );
  z-index:        1;
  pointer-events: none;
  display:        block;
}

.mnt-about-photo .hero-photo-inner::after {
  display: none;
}

.mnt-about-photo .hero-photo-inner img {
  width:   100%;
  display: block;
  filter:  drop-shadow(0 0 40px rgba(212,170,96,.10));
}

.mnt-about-text p { color: var(--cream-dim); line-height: 1.9; margin-bottom: 1.2rem; }

.mnt-creds {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   .8rem;
  margin-top:            2rem;
}

.mnt-cred { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--cream-dim); }
.mnt-cred i { color: var(--gold); width: 1.2rem; flex-shrink: 0; }

/* Why Quarto */
.mnt-why-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1.5rem;
}

.mnt-why-card { padding: 2rem; border: 1px solid var(--border-s); transition: border-color .3s; }
.mnt-why-card:hover { border-color: var(--border); }
.mnt-why-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }

.mnt-why-card h3 {
  font-family:   var(--ff-d);
  font-size:     1.1rem;
  font-weight:   400;
  color:         var(--cream);
  margin-bottom: .8rem;
  line-height:   1.3;
}

.mnt-why-card p { font-size: .87rem; color: var(--cream-dim); line-height: 1.8; margin: 0; }

/* FAQ */
#mnt-faq { padding: var(--section-pad); }

.mnt-faq-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1.5rem;
}

.mnt-faq-item { padding: 1.8rem; border: 1px solid var(--border-s); }

.mnt-faq-q { font-family: var(--ff-d); font-size: 1rem; color: var(--cream); margin-bottom: .8rem; line-height: 1.4; }
.mnt-faq-a { font-size: .85rem; color: var(--cream-mute); line-height: 1.85; }

/* CTA */
#mnt-cta { padding: var(--section-pad); }

.mnt-cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }

.mnt-cta-title {
  font-family:   var(--ff-d);
  font-size:     clamp(2rem, 4vw, 3.5rem);
  font-weight:   300;
  color:         var(--cream);
  line-height:   1.1;
  margin-bottom: 1.5rem;
}

.mnt-cta-title em { font-style: italic; color: var(--gold-lt); }
.mnt-cta-desc { color: var(--cream-dim); line-height: 1.9; margin-bottom: 2.5rem; }

.mnt-cta-btns {
  display:         flex;
  justify-content: center;
  gap:             1rem;
  flex-wrap:       wrap;
  margin-bottom:   1.5rem;
}

.mnt-cta-note { font-size: .8rem; color: var(--cream-mute); font-family: var(--ff-m); }

/* Responsive */
@media (max-width: 1024px) {
  .mnt-hero-inner  { grid-template-columns: 1fr; }
  .mnt-hero-photo  { max-width: 360px; margin: 0 auto; }
  .mnt-offers-grid { grid-template-columns: 1fr; }
  .mnt-about-grid  { grid-template-columns: 1fr; }
  .mnt-about-photo { max-width: 340px; }
  .mnt-why-grid    { grid-template-columns: 1fr; }
  .mnt-faq-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mnt-strip-sep  { display: none; }
  .mnt-creds      { grid-template-columns: 1fr; }
  .mnt-cta-btns   { flex-direction: column; align-items: center; }
}

/* ── Mentoring Teaser (index.qmd) ── */
.mnt-teaser-header {
  text-align:      center;
  max-width:       640px;
  margin:          0 auto 4rem;
}

.mnt-teaser-tag {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             .5rem;
  margin-bottom:   2rem;
}

.mnt-teaser-title {
  font-family:   var(--ff-d);
  font-size:     clamp(2.2rem, 5vw, 4rem);
  font-weight:   300;
  line-height:   1.1;
  color:         var(--cream);
  margin-bottom: 1.5rem;
}

.mnt-teaser-title em {
  font-style: italic;
  color:      var(--gold-lt);
}

.mnt-teaser-sub {
  font-size:   1rem;
  color:       var(--cream-mute);
  line-height: 1.9;
}

.mnt-teaser-cards {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  margin-bottom:         3.5rem;
}

.mnt-teaser-card {
  padding:        2.5rem 2rem;
  border:         1px solid var(--border-s);
  background:     rgba(255,255,255,.01);
  display:        flex;
  flex-direction: column;
  gap:            .8rem;
  position:       relative;
  overflow:       hidden;
  transition:     border-color .3s, transform .3s;
}

.mnt-teaser-card::before {
  content:          '';
  position:         absolute;
  top: 0; left: 0; right: 0;
  height:           2px;
  background:       linear-gradient(to right, var(--gold), transparent);
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform .4s var(--ease);
}

.mnt-teaser-card:hover {
  border-color: var(--border);
  transform:    translateY(-4px);
}

.mnt-teaser-card:hover::before { transform: scaleX(1); }

.mnt-teaser-card-featured {
  border-color: var(--border);
  background:   rgba(212,170,96,.03);
}

.mnt-teaser-card-featured::before { transform: scaleX(1); }

.mnt-teaser-card-icon {
  font-size: 1.6rem;
  color:     var(--gold);
}

.mnt-teaser-card-num {
  font-family:    var(--ff-m);
  font-size:      .58rem;
  letter-spacing: .2em;
  color:          var(--cream-mute);
}

.mnt-teaser-card-title {
  font-family: var(--ff-d);
  font-size:   1.3rem;
  font-weight: 400;
  color:       var(--cream);
  line-height: 1.2;
}

.mnt-teaser-card-desc {
  font-size:   .88rem;
  color:       var(--cream-dim);
  line-height: 1.8;
  margin:      0;
}

.mnt-teaser-card-price {
  font-family: var(--ff-d);
  font-size:   1.1rem;
  color:       var(--gold);
  margin-top:  auto;
  padding-top: 1rem;
}

.mnt-teaser-cta {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
}

.mnt-teaser-note {
  font-size:   .78rem;
  color:       var(--cream-mute);
  font-family: var(--ff-m);
  margin-top:  .8rem;
}

@media (max-width: 768px) {
  .mnt-teaser-cards { grid-template-columns: 1fr; }
  .mnt-teaser-title { font-size: 2rem; }
}

.mnt-teaser-card-price {
  font-family:  var(--ff-d);
  font-size:    1.1rem;
  color:        var(--gold);
  margin-top:   auto;
  padding-top:  1rem;
}

.mnt-teaser-note {
  font-size:   .78rem;
  color:       var(--cream-mute);
  font-family: var(--ff-m);
  margin-top:  .8rem;
}

/* ── Coming Soon ── */
.cs-section {
  min-height:      100vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         6rem 2rem;
}

.cs-inner {
  max-width: 620px;
  margin:    0 auto;
}

.cs-tag {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             .6rem;
  margin-bottom:   2rem;
}

.cs-title {
  font-family:   var(--ff-d);
  font-size:     clamp(3rem, 7vw, 6rem);
  font-weight:   300;
  line-height:   1.05;
  color:         var(--cream);
  margin-bottom: 0;
}

.cs-title em {
  font-style: italic;
  color:      var(--gold-lt);
}

.cs-desc {
  font-size:     1rem;
  color:         white;
  line-height:   1.9;
  margin-bottom: 2.5rem;
}

.cs-btns {
  display:         flex;
  justify-content: center;
  gap:             1rem;
  flex-wrap:       wrap;
}