/* ============================================================
   OLIFANT — Premium B2B coaching & HR brand
   "The Elephant In The Room"
   ============================================================ */

:root {
  /* Surfaces */
  --bg-page:        #FAF7F2;
  --bg-surface:     #FFFFFF;
  --bg-panel:       #F1EBDF;   /* warm sand panel */
  --bg-panel-soft:  #F5F0E7;
  --bg-green-tint:  #E9EDE7;   /* faint sage panel */

  /* Brand */
  --green:          #1F4A45;
  --green-deep:     #163834;
  --green-700:      #245A53;
  --terra:          #D97757;
  --terra-deep:     #C25E3E;
  --terra-soft:     #F3DCD0;
  --gold:           #D8A83A;
  --gold-soft:      #F0E2BD;

  /* Ink */
  --ink:            #2B2620;
  --ink-soft:       #5C544A;
  --muted:          #8C8377;

  /* Lines */
  --border:         #E8E0D2;
  --border-strong:  #D7CCB8;
  --border-subtle:  #F0E9DC;

  /* Type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script:"Caveat", cursive;

  /* Shadows (warm, low contrast) */
  --sh-sm: 0 1px 2px rgba(43,38,32,.05);
  --sh-md: 0 6px 22px -8px rgba(43,38,32,.14);
  --sh-lg: 0 24px 50px -22px rgba(43,38,32,.30);

  --ease: cubic-bezier(.2,0,0,1);
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 560; color: var(--green); letter-spacing: -.01em; line-height: 1.08; }

p { margin: 0; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
}

.lead { color: var(--ink-soft); font-size: 20px; line-height: 1.6; }

.script { font-family: var(--script); color: var(--ink-soft); }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  padding: 13px 22px; border-radius: 10px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--green); color: #FBF7EF; }
.btn-primary:hover { background: var(--green-deep); }

.btn-terra { background: var(--terra); color: #FFF7F2; }
.btn-terra:hover { background: var(--terra-deep); }

.btn-ghost { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn-ghost:hover { background: var(--terra); color: #FFF7F2; }

.btn-outline-light { background: transparent; color: #FBF7EF; border-color: rgba(251,247,239,.4); }
.btn-outline-light:hover { background: rgba(251,247,239,.12); border-color: rgba(251,247,239,.7); }

.btn-sm { padding: 10px 18px; font-size: 15px; }

.textlink { display: inline-flex; align-items: center; gap: 7px; color: var(--terra); font-weight: 700; font-size: 15.5px; }
.textlink svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------
   Top navigation
   ---------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled { background: rgba(250,247,242,.96); border-color: var(--border); box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 42px; object-fit: contain; }
.brand-text { line-height: 1; }
.brand-name { display: block; font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--green); letter-spacing: -.01em; }
.brand-co { font-weight: 400; color: var(--ink-soft); }
.footer .brand-co { color: rgba(255,255,255,.6); }
.brand-sub { display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: .34em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 16px; font-weight: 600; color: var(--ink); padding: 9px 14px; border-radius: 8px; white-space: nowrap;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.nav-link:hover { color: var(--green); background: rgba(31,74,69,.06); }
.nav-link svg { width: 14px; height: 14px; opacity: .6; transition: transform .2s var(--ease); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 290px; background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--sh-md); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-head { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 8px 12px 4px; }
.dd-link { display: block; padding: 9px 12px; border-radius: 8px; font-size: 15.5px; font-weight: 600; color: var(--ink); transition: background-color .14s var(--ease), color .14s var(--ease); }
.dd-link span { display: block; font-weight: 500; font-size: 13.5px; color: var(--muted); margin-top: 1px; }
.dd-link:hover { background: var(--bg-panel-soft); color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--green); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ----------------------------------------------------------
   Section scaffolding
   ---------------------------------------------------------- */
section { position: relative; }
.section-pad { padding: 70px 0; }
.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head--wide { max-width: none; }
.section-head--wide h2 { white-space: nowrap; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 20px; }

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero { padding: 40px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 0.88fr 1.28fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(38px, 4.5vw, 64px); font-weight: 560; line-height: 1.04; white-space: nowrap; }
.hero .lead { margin-top: 26px; max-width: 440px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-art { position: relative; }
.hero-art img { width: 100%; border-radius: 16px; }
.hero-caption { text-align: center; font-family: var(--script); font-size: 23px; color: var(--ink-soft); margin-top: 8px; }
.float { animation: float 9s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ----------------------------------------------------------
   Challenge cards (Section 2)
   ---------------------------------------------------------- */
.panel { background: var(--bg-panel); }
.cards-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ch-card {
  background: #FBF5F0; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 14px 22px; text-align: center;
  transition: border-color .2s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.ch-card:hover { border-color: var(--border-strong); box-shadow: var(--sh-md); transform: translateY(-5px); }
.ch-art { background: #FBF5F0; border-radius: 10px; height: 162px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; overflow: hidden; }
.ch-art img { height: 150px; width: auto; object-fit: contain; transition: transform .4s var(--ease); }
.ch-card:hover .ch-art img { transform: scale(1.07); }
.ch-card h3 { font-family: var(--sans); font-weight: 800; font-size: 18px; color: var(--green); letter-spacing: 0; }
.ch-card p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }

/* ----------------------------------------------------------
   Two brands (Section 3)
   ---------------------------------------------------------- */
.green-tint { background: var(--bg-green-tint); }
.brands { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.brand-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1fr 0.82fr; gap: 16px; align-items: start;
  transition: border-color .2s var(--ease), box-shadow .3s var(--ease);
}
.brand-card:hover { border-color: var(--border-strong); box-shadow: var(--sh-md); }
.brand-card h3 { font-size: 30px; font-weight: 600; }
.brand-purpose { font-family: var(--sans); font-weight: 800; font-size: 15px; letter-spacing: .02em; margin: 4px 0 14px; }
.brand-card.coaching .brand-purpose { color: var(--green-700); }
.brand-card.team .brand-purpose { color: var(--terra); }
.brand-card .blurb { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.svc-list { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 9px; }
.svc-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.svc-list svg { width: 17px; height: 17px; flex: none; }
.coaching .svc-list svg { color: var(--green-700); }
.team .svc-list svg { color: var(--terra); }
.brand-card .art { align-self: center; }
.brand-card .art img { width: 100%; border-radius: 12px; }
.brand-card .art-cap { font-family: var(--script); font-size: 19px; line-height: 1.25; color: var(--ink-soft); text-align: center; margin-top: 12px; }
.brand-card .left { display: flex; flex-direction: column; height: 100%; }
.brand-card .left .btn { align-self: flex-start; margin-top: auto; }

/* ----------------------------------------------------------
   Dark "ignored" section (Section 4)
   ---------------------------------------------------------- */
.dark {
  background: var(--green); color: #EDE7DA; border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: stretch;
}
.dark-wrap { padding: 96px 0; }
.dark-art { position: relative; min-height: 420px; }
.dark-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.dark-art::after { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(90deg, transparent 80%, color-mix(in srgb, var(--green) 40%, transparent) 94%, var(--green) 100%); }
.dark-body { padding: 56px 56px 56px 48px; }
.dark-body .eyebrow { color: var(--gold); }
.dark-body h2 { color: #FBF7EF; font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 22px; }
.dark-body .intro { color: #C9C6BB; font-size: 17px; margin-bottom: 24px; }
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; margin-bottom: 30px; }
.cost-item { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; color: #EDE7DA; }
.cost-item .ic { width: 30px; height: 30px; flex: none; border-radius: 50%; background: rgba(216,168,58,.16); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.cost-item .ic svg { width: 16px; height: 16px; }
.dark-foot { font-size: 17px; color: #C9C6BB; }
.dark-foot b { color: var(--gold); font-weight: 700; }

/* ----------------------------------------------------------
   How we work (Section 5)
   ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.step {
  position: relative; padding: 26px 14px 0;
  border-top: 1px solid var(--border-strong);
}
/* terra dot sitting on the top rule, marking each step */
.step::before {
  content:""; position: absolute; top: -4px; left: 14px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--terra);
}
.step-num {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 46px; line-height: 1; color: var(--green);
  letter-spacing: -.01em; margin-bottom: 14px; font-feature-settings: "tnum" 1;
}
.step h3 { font-family: var(--sans); font-weight: 800; font-size: 19.5px; color: var(--green); margin-bottom: 6px; }
.step p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }

/* ----------------------------------------------------------
   Elephant wisdom (Section 6)
   ---------------------------------------------------------- */
.wisdom-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.wisdom-head .eyebrow { display: block; margin-bottom: 14px; }
.wisdom-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.articles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.article {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.article:hover { border-color: var(--border-strong); box-shadow: var(--sh-md); transform: translateY(-5px); }
.article-art { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-panel-soft); }
.article-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.article:hover .article-art img { transform: scale(1.05); }
.article-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.article-body h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.18; color: var(--green); }
.article-body p { font-size: 15.5px; color: var(--ink-soft); margin: 9px 0 16px; }
.article-body .textlink { margin-top: auto; }

/* ----------------------------------------------------------
   Trust (Section 7)
   ---------------------------------------------------------- */
.trust { border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px; align-items: start; }
.trust-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logos { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.logo-chip { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--ink-soft); opacity: .65; transition: opacity .2s var(--ease); }
.logo-chip:hover { opacity: 1; }
.quote { }
.quote p { font-family: var(--serif); font-size: 18px; line-height: 1.4; color: var(--green); font-style: italic; }
.quote cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 13.5px; font-weight: 700; color: var(--terra); }

/* ----------------------------------------------------------
   Final CTA
   ---------------------------------------------------------- */
.final {
  position: relative; border-radius: 0;
  background: none; border: none;
  gap: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.final-art { position: relative; aspect-ratio: 1 / 1; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 56px -18px rgba(40,52,40,.32); }
.final-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-body { padding: 8px 0; align-self: center; display: flex; flex-direction: column; justify-content: center; }
.final-body h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.06; }
.final-body p { color: var(--ink-soft); font-size: 18px; line-height: 1.5; margin: 22px 0 34px; max-width: 460px; }
.final-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.final-script { font-family: var(--script); font-size: 26px; color: var(--ink-soft); margin: 30px 0 0 28px; align-self: flex-start; }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.footer { background: var(--green-deep); color: #C9C6BB; padding: 56px 0 30px; margin-top: 96px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top > div:first-child { max-width: 560px; }
.footer .brand-name { color: #FBF7EF; }
.footer .brand-sub { color: rgba(255,255,255,.5); }
.footer-tag { font-family: var(--script); font-size: 21px; color: var(--gold); margin-top: 16px; max-width: 280px; line-height: 1.3; }
.footer h4 { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #FBF7EF; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: 15.5px; color: #C9C6BB; transition: color .15s var(--ease); }
.footer a:hover { color: #FBF7EF; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom .powered { display: flex; align-items: center; gap: 8px; }

/* ----------------------------------------------------------
   Reveal animation
   ---------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ----------------------------------------------------------
   Mobile menu panel
   ---------------------------------------------------------- */
.mobile-menu { display: none; }

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .cards-6 { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-logos-cell { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  /* stop forced single-line headings from overflowing on tablet/phone */
  .section-head--wide h2,
  .hero h1 { white-space: normal; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-art { order: -1; max-width: 560px; margin: 0 auto; }
  .hero .lead { max-width: none; }
  .brands { grid-template-columns: 1fr; }
  .dark { grid-template-columns: 1fr; }
  .dark-art { min-height: 240px; }
  .dark-body { padding: 40px 32px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 8px; }
  .step:not(:last-child)::after { display: none; }
  .articles { grid-template-columns: 1fr 1fr; }
  .final { grid-template-columns: 1fr; gap: 32px; }
  .final-art { max-width: 520px; margin: 0 auto; }
  .final-body { padding: 0; }
  .wisdom-head { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mobile-open .mobile-menu {
    display: block; position: fixed; inset: 76px 0 0; z-index: 49;
    background: var(--bg-page); padding: 24px 32px; overflow-y: auto;
  }
  .mobile-open { overflow: hidden; }
  .mm-link { display: block; font-family: var(--serif); font-size: 26px; color: var(--green); padding: 14px 0; border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p, .section-head--wide h2 + p { font-size: 18px; }
  .cards-6 { grid-template-columns: 1fr 1fr; }
  .articles { grid-template-columns: 1fr; }
  /* brand cards: stack text, then show illustration below (don't hide it) */
  .brand-card { grid-template-columns: 1fr; padding: 26px 22px; }
  .brand-card .left { order: 1; }
  .brand-card .art { order: 2; max-width: 340px; margin: 22px auto 0; }
  .brand-card .left .btn { margin-top: 20px; }
  .cost-grid { grid-template-columns: 1fr; }
  .dark-body { padding: 34px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { padding: 24px 0 48px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 44px); }
  .hero .lead { font-size: 18px; }
  .nav-inner { height: 64px; }
  .mobile-open .mobile-menu { inset: 64px 0 0; padding: 20px; }
  .mm-link { font-size: 23px; }
  .final-script { margin: 22px 0 0; }
  .tst-logos { gap: 18px 32px; }
}

@media (max-width: 420px) {
  .cards-6 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .brand-name { font-size: 22px; }
  .logo-slot { width: 116px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   COACHING-ONLY REFRESH — added sections
   ============================================================ */

/* Hero subhead emphasis */
.lead-strong { color: var(--green); font-weight: 700; margin-top: 14px; }

/* Section 3 — How we help (editorial services) */
.help-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.help-art { position: relative; }
.help-art img { width: 100%; border-radius: 16px; }
.help-art .help-caption { font-family: var(--script); font-size: 22px; color: var(--ink-soft); text-align: center; margin-top: 10px; }
.help-intro .eyebrow { display: block; margin-bottom: 16px; }
.help-intro h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.help-intro .lead { margin-bottom: 8px; }
.svc-rows { margin-top: 4px; }
.svc-row {
  display: flex; align-items: baseline; gap: 20px;
  padding: 20px 16px 20px 14px; margin: 0 -16px 0 -14px;
  border-top: 1px solid var(--border);
  border-radius: 10px;
  transition: background-color .18s var(--ease);
}
.svc-rows .svc-row:last-child { border-bottom: 1px solid var(--border); }
.svc-row:hover { background: var(--bg-panel-soft); }
.svc-row .n { font-family: var(--script); font-size: 22px; color: var(--terra); flex: none; width: 26px; line-height: 1.2; }
.svc-row .txt { flex: 1; }
.svc-row h3 { font-family: var(--serif); font-weight: 600; font-size: 23px; color: var(--green); }
.svc-row p { font-size: 16px; color: var(--ink-soft); margin-top: 4px; }
.svc-row .go { flex: none; color: var(--terra); opacity: 0; transform: translateX(-6px); transition: opacity .18s var(--ease), transform .18s var(--ease); }
.svc-row .go svg { width: 18px; height: 18px; display: block; }
.svc-row:hover .go { opacity: 1; transform: none; }

/* Section 4 — Elephant wisdom (signature) */
.wisdom-feature { text-align: center; max-width: 860px; margin: 0 auto 64px; }
.wisdom-feature .eyebrow { display: block; margin-bottom: 22px; }
.wisdom-feature blockquote { margin: 0; }
.wisdom-feature .big-quote {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(30px, 4.8vw, 50px); line-height: 1.1; color: var(--green);
  letter-spacing: -.01em;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.wisdom-feature .big-quote .ln { display: block; }
.wisdom-feature .big-quote .em { color: var(--terra); font-style: italic; }
.wisdom-feature .sub { margin-top: 22px; font-size: 20px; color: var(--ink-soft); }

/* Wisdom cards adopt a quote voice */
#wisdom .article-body h3 { font-style: italic; font-weight: 500; font-size: 22px; }
.wisdom-foot { text-align: center; margin-top: 48px; }

/* Testimonials — clean band */
.tst-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.tst-head .eyebrow { display: block; margin-bottom: 14px; }
.tst-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px 30px; display: flex; flex-direction: column; }
.tst-card .mark { font-family: var(--serif); font-size: 56px; line-height: .6; color: var(--terra); opacity: .35; height: 26px; }
.tst-card p { font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--green); margin: 8px 0 22px; }
.tst-card cite { display: block; margin-top: auto; font-style: normal; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.tst-card cite span { display: block; font-weight: 500; color: var(--muted); margin-top: 2px; }
.tst-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 44px; }
.tst-logos .trust-label { width: 100%; text-align: center; margin-bottom: 8px; }
.tst-section { padding-top: 0; }
.logo-slot { width: 132px; height: 46px; opacity: .85; }
.logo-slot:hover { opacity: 1; }
.logo-slot::part(frame) { background: transparent; }

/* Footer cross-link to Olifant Team */
.footer-cross-group { display: grid; gap: 8px; margin-top: 24px; }
.footer-cross { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 0; font-size: 15px; color: rgba(255,255,255,.55); }
.footer-cross a { color: var(--gold); font-weight: 700; }
.footer-cross a:hover { color: #FBF7EF; }

@media (max-width: 900px) {
  .help-grid { grid-template-columns: 1fr; gap: 36px; }
  .help-art { order: -1; max-width: 460px; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards-4 { grid-template-columns: 1fr; }
}
