:root {
  /* Light theme — primary homepage palette per brief */
  --ink: #1A1A18;
  --ink-soft: #2C2C28;
  --stone: #6E6D67;
  --stone-light: #9A9890;
  --paper: #F8F5EE;
  --paper-warm: #F2EDE0;
  --mist: #EDE7D8;
  --hairline: #D8D2C2;
  --hairline-soft: #E5DFCE;
  --khidr: #2D6A4F;        /* Al-Khidr Green — primary accent */
  --khidr-deep: #1F4F38;
  --khidr-light: #52B788;  /* Heart Light */
  --khidr-soft: #E5EDE8;
  --gold: #B08A4A;          /* restrained gold for rare callouts */

  /* Type */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --section-y: clamp(72px, 9vw, 140px);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper grain — almost invisible, gives warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

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

a { color: var(--khidr); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--khidr-light); }

/* Containers */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ── Typography system ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--khidr-deep);
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--khidr);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--khidr);
}

.lead {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: var(--khidr);
  border-color: var(--khidr);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn::after {
  content: "→";
  font-size: 16px;
  transition: transform .35s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all .35s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform .35s var(--ease); }
.link-arrow:hover { color: var(--khidr); border-color: var(--khidr); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Header / Navigation ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
  transition: padding .3s var(--ease);
}
.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--khidr);
  transition: width .35s var(--ease);
}
.nav-list a:hover { color: var(--khidr); }
.nav-list a:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all .3s var(--ease);
}

@media (max-width: 920px) {
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    padding: 32px var(--gutter);
    gap: 24px;
    border-bottom: 1px solid var(--hairline-soft);
    align-items: flex-start;
  }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 9vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.hero-copy {
  position: relative;
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 28px; }
.hero .lead { margin-bottom: 40px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* Decorative position marker under hero copy */
.hero-positioning {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
}
.hero-positioning span { display: inline-flex; align-items: center; }
.hero-positioning span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--khidr);
  border-radius: 50%;
  margin-right: 16px;
  margin-left: -16px;
  display: inline-block;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.96);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  z-index: 2;
  pointer-events: none;
  transform: translate(14px, 14px);
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ── Authority strip (book + positioning) ────────────────────── */
.authority {
  background: var(--mist);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
  z-index: 2;
}
.authority-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 56px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  text-align: center;
}
.authority-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.authority-inner em {
  color: var(--khidr-deep);
  font-style: normal;
  font-weight: 500;
}

/* ── Intro section ───────────────────────────────────────────── */
.intro {
  padding: var(--section-y) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.intro-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.intro-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.intro-copy .eyebrow { margin-bottom: 24px; }
.intro-copy h2 { margin-bottom: 36px; }
.intro-copy h2 em { font-style: italic; font-weight: 300; }
.intro-copy p {
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 56ch;
}

.pull-quote {
  margin: 40px 0;
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--khidr);
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  color: var(--ink);
  max-width: 50ch;
}

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image { position: static; max-width: 480px; margin: 0 auto; }
}

/* ── The Work / Three pillars ────────────────────────────────── */
.work {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.work-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.work-header .eyebrow { margin-bottom: 20px; }
.work-header h2 {
  font-style: italic;
  font-weight: 300;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.work-item {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.work-item:last-child { border-right: 0; }
.work-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--khidr);
  margin-bottom: 24px;
  display: block;
}
.work-item h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--ink);
}
.work-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-item {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 36px 0 40px;
  }
  .work-item:last-child { border-bottom: 0; }
}

/* ── Stage / authority section with image ────────────────────── */
.stage {
  padding: var(--section-y) 0;
}
.stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.stage-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.stage-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.stage-copy .eyebrow { margin-bottom: 24px; }
.stage-copy h2 { margin-bottom: 28px; }
.stage-copy h2 em { font-style: italic; font-weight: 300; color: var(--khidr-deep); }
.stage-copy .lead { margin-bottom: 28px; }
.stage-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--khidr);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .stage-grid { grid-template-columns: 1fr; }
}

/* ── FAQ section ─────────────────────────────────────────────── */
.faq {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}
.faq-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.faq-header .eyebrow { margin-bottom: 20px; }
.faq-header h2 em { font-style: italic; font-weight: 300; color: var(--khidr-deep); }
.faq-header p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--stone);
  max-width: 52ch;
}
@media (max-width: 880px) {
  .faq-header { grid-template-columns: 1fr; align-items: start; gap: 24px; }
}

.faq-list {
  border-top: 1px solid var(--hairline);
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: baseline;
  gap: 16px;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--khidr); }
.faq-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--khidr);
  font-weight: 400;
}
.faq-q {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.32;
  letter-spacing: -0.005em;
}
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--khidr); }
.faq-item[open] .faq-q { color: var(--khidr-deep); }

.faq-a {
  padding: 0 0 36px 72px;
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 70ch;
}
@media (max-width: 600px) {
  .faq-item summary { grid-template-columns: 36px 1fr 24px; gap: 8px; padding: 22px 0; }
  .faq-num { font-size: 16px; }
  .faq-a { padding-left: 44px; padding-bottom: 28px; font-size: 15.5px; }
}

/* ── Dual CTA: Free Training + Strategy Call ─────────────────── */
.cta-dual {
  padding: var(--section-y) 0;
  background: var(--mist);
  border-top: 1px solid var(--hairline-soft);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.cta-card {
  background: var(--paper);
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26,26,24,0.15);
}
.cta-card .eyebrow { margin-bottom: 24px; }
.cta-card h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  font-family: var(--serif);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
}
.cta-card h3 em { font-style: italic; color: var(--khidr-deep); font-weight: 300; }
.cta-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 32px;
  flex: 1;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.cta-form input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--hairline);
  background: var(--paper-warm);
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.cta-form input[type="email"]:focus { border-color: var(--khidr); }
.cta-form button {
  width: 100%;
  justify-content: center;
}
@media (max-width: 760px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 8vw, 110px) 0 32px;
  position: relative;
  z-index: 2;
}
.site-footer .container { color: var(--paper); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(248,245,238,0.12);
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand span { color: var(--stone-light); }
.footer-brand p {
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(248,245,238,0.7);
  max-width: 36ch;
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--khidr-light);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(248,245,238,0.78);
  font-size: 14.5px;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--khidr-light); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(248,245,238,0.5);
  letter-spacing: 0.04em;
}
.footer-bottom .socials {
  display: flex;
  gap: 20px;
}
.footer-bottom .socials a {
  color: rgba(248,245,238,0.6);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.footer-bottom .socials a:hover { color: var(--khidr-light); }
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── Reveal animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* If the IntersectionObserver hasn't fired (no JS, slow JS, or bot crawler),
   show everything after a short delay so content is never hidden. */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: reveal-fallback 0.001s ease-out 2.5s forwards;
}
/* If JS adds .in, that wins (animation has finished or never gates content) */
.reveal.in { animation: none; }

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
/* ── Diagnostic CTA section additions ────────────────────────── */
.cta-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.cta-header .eyebrow { margin-bottom: 20px; }
.cta-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-headline em { font-style: italic; font-weight: 300; color: var(--khidr-deep); }
.cta-kicker {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--stone);
  max-width: 60ch;
  margin: 0 auto;
}
.cta-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--hairline);
}
.cta-footer p {
  font-size: 16px;
  color: var(--stone);
  margin: 0;
}
.link-arrow-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  margin-left: 6px;
  transition: all .35s var(--ease);
}
.link-arrow-inline::after { content: "→"; transition: transform .35s var(--ease); }
.link-arrow-inline:hover { color: var(--khidr); border-color: var(--khidr); }
.link-arrow-inline:hover::after { transform: translateX(4px); }

/* ── About page-specific styles ──────────────────────────────── */
.about-hero {
  padding: clamp(64px, 9vw, 130px) 0 clamp(56px, 7vw, 96px);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-hero-copy .eyebrow { margin-bottom: 28px; }
.about-hero-copy h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin-bottom: 28px;
  color: var(--ink);
}
.about-hero-copy h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--khidr-deep);
}
.about-hero-copy .lead {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  max-width: 52ch;
}
.about-hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  z-index: 2;
  pointer-events: none;
  transform: translate(-14px, 14px);
}
@media (max-width: 880px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-image { order: -1; max-width: 480px; margin: 0 auto; }
}

/* About narrative sections */
.narrative {
  padding: var(--section-y) 0;
}
.narrative.alt-bg {
  background: var(--paper-warm);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.narrative-grid .eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  position: sticky;
  top: 120px;
  display: block;
}
.narrative-grid h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 36px;
  color: var(--ink);
}
.narrative-grid h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--khidr-deep);
}
.narrative-grid p {
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1.3em;
}
.narrative-grid p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .narrative-grid { grid-template-columns: 1fr; gap: 24px; }
  .narrative-grid .eyebrow { position: static; margin-bottom: 8px; }
}

/* Frameworks grid for about page */
.frameworks {
  padding: var(--section-y) 0;
}
.frameworks-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 88px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.frameworks-header .eyebrow { margin-bottom: 20px; }
.frameworks-header h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.12;
}
.frameworks-header h2 em { font-style: italic; font-weight: 300; color: var(--khidr-deep); }
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.framework-item {
  padding: 56px 36px;
  border-right: 1px solid var(--hairline);
}
.framework-item:last-child { border-right: 0; }
.framework-term {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--khidr);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.framework-subtitle {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: 24px;
  display: block;
}
.framework-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .frameworks-grid { grid-template-columns: 1fr; }
  .framework-item {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 36px 0;
  }
  .framework-item:last-child { border-bottom: 0; }
}

/* Practice / off-the-page section */
.practice {
  padding: var(--section-y) 0;
}
.practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.practice-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.practice-image img { width: 100%; height: 100%; object-fit: cover; }
.practice-copy .eyebrow { margin-bottom: 24px; }
.practice-copy h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 28px;
}
.practice-copy h2 em { font-style: italic; font-weight: 300; color: var(--khidr-deep); }
.practice-copy p {
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 1.3em;
}
@media (max-width: 880px) {
  .practice-grid { grid-template-columns: 1fr; }
}

/* Manifesto section */
.manifesto {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto .eyebrow {
  color: var(--khidr-light);
  margin-bottom: 32px;
}
.manifesto .eyebrow::before { background: var(--khidr-light); }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto 32px;
}
.manifesto-attribution {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--stone-light);
}

/* Active nav state */
.nav-list a.active {
  color: var(--khidr);
}
.nav-list a.active::after {
  width: 100%;
}
