/* ══════════════════════════════════════
   GREAVES EDUCATION — SHARED STYLESHEET
   Palette: #966919 | #FAF5E5 | #fff | #1a1a1a
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --gold:        #966919;
  --gold-light:  #b07d22;
  --gold-pale:   #FAF5E5;
  --gold-mid:    #e8d9a8;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --black-soft:  #2c2c2c;
  --text-body:   #3d3428;
  --border:      #e0d4b0;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --max:         1160px;
  --radius:      3px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: var(--white);
  padding: 8px 16px; z-index: 9999;
  font-family: var(--font-body);
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Logo as image */
.logo-img-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-img--white {
  height: 36px;
}

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
/* Logo matches original: plain "Greaves Education" serif text, no colour split */
.logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-soft);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  transition: background 0.2s !important;
}
.btn-cta::after { display: none !important; }
.btn-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s; }

/* ══════════════════════════════
   HOME HERO — TOP.png background
   split layout: text left, photo right
   ══════════════════════════════ */
.home-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image: url('TOP.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Strong left-side dark overlay so text is always readable, fades right */
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20,14,5,0.92) 0%,
    rgba(20,14,5,0.80) 45%,
    rgba(20,14,5,0.35) 75%,
    rgba(20,14,5,0.10) 100%
  );
  z-index: 1;
}
.home-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 2rem 90px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.home-hero__content { }
.home-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.85rem;
}
.home-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.home-hero h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.home-hero p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.82;
  margin-bottom: 2.2rem;
}
.home-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Right-side portrait */
.home-hero__img-wrap { position: relative; z-index: 2; }
.home-hero__portrait {
  width: 100%;
  display: block;
  border-radius: 3px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 3px solid rgba(150,105,25,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
@media (max-width: 900px) {
  .home-hero__inner { grid-template-columns: 1fr; }
  .home-hero__img-wrap { display: none; }
}
/* Single column — no portrait */
.home-hero__inner--single {
  grid-template-columns: 1fr;
  max-width: 820px;
}

/* ── PAGE HERO (inner pages) — also uses the George Greaves image ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 2rem 95px;
  color: var(--white);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-image: url('TOP.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: brightness(0.28);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(150,105,25,0.55) 0%, rgba(26,26,26,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.8rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 700px;
}
.page-hero p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.7;
}

/* ── CONTAINER ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── SECTIONS ── */
.section { padding: 90px 2rem; }
.section--cream { background: var(--gold-pale); }
.section--border-top { border-top: 1px solid var(--border); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: #5a4e3a;
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.78rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ── IMAGE CARDS ── */
.img-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.img-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.img-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(150,105,25,0.13); }
.img-card__img { width: 100%; height: 210px; object-fit: cover; display: block; }
.img-card__body { padding: 1.5rem 1.5rem 1.75rem; }
.img-card__body h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--black); margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.img-card__body p { font-size: 0.95rem; color: #5a4e3a; line-height: 1.7; }
.img-card__tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border-left: 2px solid var(--gold); padding-left: 0.5rem; margin-bottom: 0.6rem; }

/* ── SERVICE GRID ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-item {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 1.75rem 1.5rem;
  border-radius: var(--radius); transition: box-shadow 0.2s;
}
.service-item:hover { box-shadow: 0 8px 24px rgba(150,105,25,0.1); }
.service-item h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--black); margin-bottom: 0.6rem; letter-spacing: -0.01em; line-height: 1.35; }
.service-item p { font-size: 0.93rem; color: #5a4e3a; line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--black); padding: 90px 2rem; text-align: center; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; color: var(--white); letter-spacing: -0.02em; line-height: 1.3; max-width: 780px; margin: 0 auto 2rem; }
.cta-banner__sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: #111; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 3rem 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { font-size: 1.3rem; color: var(--white); }
.footer-brand p { margin-top: 0.85rem; font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL TOP ── */
#scrollTop { position: fixed; bottom: 2rem; right: 2rem; width: 42px; height: 42px; background: var(--gold); color: var(--white); border: none; border-radius: 2px; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s, transform 0.2s; z-index: 300; }
#scrollTop.show { opacity: 1; }
#scrollTop:hover { transform: translateY(-2px); }

/* ── MOBILE ── */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 199; }
  .nav-links.open { display: flex; }
  .img-card-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .home-hero { min-height: auto; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 1.5rem; }
  .page-hero { padding: 80px 1.5rem 65px; }
  .home-hero__inner { padding: 80px 1.5rem 70px; }
}

/* ── CONTACT & ABOUT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--black); letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.25; }
.contact-info p { font-size: 0.97rem; color: #5a4e3a; line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-item .icon { width: 40px; height: 40px; min-width: 40px; background: var(--gold-pale); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-detail-item div strong { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.contact-detail-item div span { font-size: 0.95rem; color: var(--black-soft); }
.form-card { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.form-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.9rem; color: #7a6a4a; margin-bottom: 2rem; }
.contact-img { width: 100%; border-radius: var(--radius); display: block; aspect-ratio: 3/2; object-fit: cover; margin-top: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--black-soft); letter-spacing: 0.02em; }
.form-group input, .form-group textarea, .form-group select { border: 1px solid var(--border); border-radius: var(--radius); padding: 0.7rem 1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--black); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(150,105,25,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col img { width: 100%; border-radius: var(--radius); display: block; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-box { text-align: center; padding: 2rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-box .num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-box p { font-size: 0.88rem; color: #7a6a4a; margin-top: 0.4rem; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

.values-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.values-list li { display: flex; gap: 1rem; align-items: flex-start; }
.values-list li::before { content: ''; display: block; width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--gold); margin-top: 3px; }
.values-list li strong { display: block; font-weight: 600; color: var(--black); }
.values-list li span { font-size: 0.93rem; color: #5a4e3a; }

.pull-quote { border-left: 4px solid var(--gold); padding: 1.5rem 2rem; background: var(--gold-pale); margin: 2.5rem 0; }
.pull-quote p { font-family: var(--font-head); font-size: 1.45rem; font-weight: 500; color: var(--black); line-height: 1.45; font-style: italic; }
.pull-quote cite { display: block; margin-top: 0.75rem; font-size: 0.85rem; font-style: normal; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }

.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.expertise-item { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.1rem 1.25rem; background: var(--gold-pale); border-left: 3px solid var(--gold); }
.expertise-item .icon { width: 36px; height: 36px; min-width: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.expertise-item div strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--black); margin-bottom: 0.2rem; }
.expertise-item div span { font-size: 0.87rem; color: #5a4e3a; }
@media (max-width: 620px) { .expertise-grid { grid-template-columns: 1fr; } }

.service-full { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; background: var(--white); transition: box-shadow 0.25s; }
.service-full:hover { box-shadow: 0 10px 36px rgba(150,105,25,0.12); }
.service-full.reverse { direction: rtl; }
.service-full.reverse > * { direction: ltr; }
.service-full__img { width: 100%; height: 340px; object-fit: cover; display: block; }
.service-full__body { padding: 2.5rem 2.25rem; display: flex; flex-direction: column; justify-content: center; }
.service-full__num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold-mid); line-height: 1; margin-bottom: 0.5rem; }
.service-full__body h2 { font-family: var(--font-head); font-size: 1.55rem; font-weight: 600; color: var(--black); letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 1rem; }
.service-full__body p { font-size: 0.97rem; color: #5a4e3a; line-height: 1.75; margin-bottom: 1.25rem; }
.service-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.3rem 0.75rem; border-radius: 2px; margin-bottom: 1rem; }
@media (max-width: 820px) { .service-full { grid-template-columns: 1fr; } .service-full.reverse { direction: ltr; } .service-full__img { height: 220px; } }

/* ── CLIENT LOGOS STRIP ── */
.logos-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.logos-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.logos-strip__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a89a7a;
  margin-bottom: 1.75rem;
}
.logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
.logos-strip__row img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  display: block;
}
@media (max-width: 640px) {
  .logos-strip__row { gap: 1.75rem 2.5rem; }
  .logos-strip__row img { height: 36px; max-width: 120px; }
}

/* ── FOOTER LOGOS ── */
.footer-logos {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logos__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  text-align: center;
}
.footer-logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.footer-logos__row img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  display: block;
}
@media (max-width: 640px) {
  .footer-logos__row { gap: 1.25rem 2rem; }
  .footer-logos__row img { height: 28px; max-width: 100px; }
}

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 0.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover { box-shadow: 0 14px 40px rgba(150,105,25,0.13); transform: translateY(-4px); }
.team-card__img-wrap {
  position: relative;
  height: 460px;
  background: var(--gold-pale);
  overflow: hidden;
}
.team-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
/* Initials avatar for team members without a photo */
.team-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  letter-spacing: -0.02em;
}
.team-card__badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}
.team-card__body { padding: 1.75rem 1.75rem 2rem; }
.team-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.015em;
  margin-bottom: 0.2rem;
}
.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-card__body p {
  font-size: 0.95rem;
  color: #5a4e3a;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.team-card__body p:last-child { margin-bottom: 0; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }

/* ── LEARNING FUND ── */
.section--dark { background: var(--black); }
.fund-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.fund-how {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
}
.fund-how h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fund-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fund-steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.fund-step-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
  line-height: 1.2;
}
.fund-steps li div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fund-steps li strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.fund-steps li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .fund-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── M&A BLOCK ── */
.ma-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ma-block__text p {
  font-size: 1rem;
  color: #5a4e3a;
  line-height: 1.78;
  margin-bottom: 1rem;
}
.ma-block__image img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
@media (max-width: 820px) {
  .ma-block { grid-template-columns: 1fr; gap: 2rem; }
  .ma-block__image { order: -1; }
}

/* ── REASONS GRID ── */
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.reason-box { padding: 1.75rem 1.5rem; background: var(--white); border: 1px solid var(--border); border-bottom: 3px solid var(--gold); text-align: center; }
.reason-box .big { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.reason-box h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; }
.reason-box p { font-size: 0.88rem; color: #5a4e3a; line-height: 1.65; }
@media (max-width: 640px) { .reasons-grid { grid-template-columns: 1fr; } }
