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

/* ==============================
   DESIGN TOKENS
   ============================== */
:root {
  --teal:          #1A6B6B;
  --teal-light:    #2A8A8A;
  --teal-dark:     #104848;
  --teal-pale:     #EAF5F5;
  --teal-50:       #F0FAFA;
  --green:         #2D5A3D;
  --green-light:   #3D7050;
  --green-pale:    #EEF4F1;
  --gold:          #B8882C;
  --gold-light:    #CFA040;
  --gold-pale:     #FAF0D8;
  --gold-50:       #FDF7EC;

  --terra:         #A05A38;
  --terra-light:   #C07850;
  --terra-dark:    #7A4028;
  --terra-pale:    #FBF0EB;
  --terra-50:      #FEF8F5;

  --sage:          #6A8F74;
  --sage-light:    #85A88F;
  --sage-dark:     #4E6E58;
  --sage-pale:     #EDF4F0;
  --sage-50:       #F5FAF7;

  --bg:            #FAF7F2;
  --bg-white:      #FDFCF9;
  --bg-section:    #F5F1EB;

  --text:          #192828;
  --text-mid:      #3E5858;
  --text-light:    #6A8888;
  --text-muted:    #9AB0B0;

  --border:        #D8E8E8;
  --border-light:  #EAF2F2;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Lora', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(26,107,107,0.07);
  --shadow-md:  0 4px 20px rgba(26,107,107,0.10);
  --shadow-lg:  0 12px 48px rgba(26,107,107,0.13);
  --shadow-xl:  0 24px 72px rgba(26,107,107,0.16);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 76px;
  --container: 1160px;
  --container-narrow: 760px;
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--teal-pale); color: var(--teal-dark); }

/* ==============================
   TYPOGRAPHY SCALE
   ============================== */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
}
.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.28;
}
.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
}
.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}
.body-lg  { font-size: 1.125rem; line-height: 1.72; }
.body-md  { font-size: 1rem;     line-height: 1.68; }
.body-sm  { font-size: 0.9rem;   line-height: 1.65; }
.label    { font-size: 0.78rem;  font-weight: 600;  letter-spacing: 0.1em; text-transform: uppercase; }
.italic   { font-style: italic; }

/* ==============================
   LAYOUT UTILITIES
   ============================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}
.section--lg {
  padding-block: clamp(5rem, 11vw, 9rem);
}

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

.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-mid    { color: var(--text-mid); }
.text-light  { color: var(--text-light); }
.text-muted  { color: var(--text-muted); }

/* ==============================
   SECTION HEADERS
   ============================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--teal-pale);
  color: var(--teal-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-tag--gold {
  background: var(--gold-pale);
  color: #7A5A18;
}
.section-tag--green {
  background: var(--green-pale);
  color: var(--green);
}

.section-intro {
  max-width: 620px;
  color: var(--text-mid);
}
.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.divider-ornament::before, .divider-ornament::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--border));
}
.divider-ornament::after {
  background: linear-gradient(to left, transparent, var(--border));
}
.divider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 12px rgba(26,107,107,0.28);
}
.btn--primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(26,107,107,0.38);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal-pale);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 12px rgba(184,136,44,0.28);
}
.btn--gold:hover {
  background: #9A7020;
  box-shadow: 0 4px 20px rgba(184,136,44,0.38);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-mid);
  padding-inline: 1rem;
}
.btn--ghost:hover { color: var(--teal); }
.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(248,245,240,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(26,107,107,0.06);
}
.navbar__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.01em;
}
.navbar__logo-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.navbar__link:hover, .navbar__link.active {
  color: var(--teal);
  background: var(--teal-50);
}
.navbar__cta { margin-left: 0.75rem; }
.navbar__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar__menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .navbar__link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  filter: blur(72px);
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}
.hero__blob--teal {
  width: clamp(400px, 55vw, 720px);
  height: clamp(300px, 40vw, 540px);
  background: radial-gradient(ellipse, rgba(42,138,138,0.15) 0%, transparent 70%);
  top: -10%; right: -8%;
}
.hero__blob--gold {
  width: clamp(250px, 35vw, 480px);
  height: clamp(200px, 28vw, 380px);
  background: radial-gradient(ellipse, rgba(160,90,56,0.13) 0%, transparent 70%);
  bottom: 5%; left: -5%;
  animation-delay: -6s;
}
.hero__blob--green {
  width: clamp(200px, 28vw, 380px);
  height: clamp(180px, 24vw, 320px);
  background: radial-gradient(ellipse, rgba(106,143,116,0.10) 0%, transparent 70%);
  top: 30%; left: 35%;
  animation-delay: -3s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(2%, 3%) scale(1.03); }
  66%       { transform: translate(-2%, -1%) scale(0.98); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: 5rem 4rem;
}
.hero__content {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__eyebrow-line {
  width: 32px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.hero__title em {
  font-style: italic;
  color: var(--teal);
}
.hero__title .accent-line {
  display: block;
  color: var(--teal);
}
.hero__body {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero__card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.hero__card--main {
  position: relative;
  z-index: 2;
}
.hero__card--back {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: calc(100% - 2rem);
  z-index: 1;
  background: var(--teal-pale);
  border-color: rgba(26,107,107,0.15);
  padding: 1.5rem;
  box-shadow: none;
}
.hero__card-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--teal);
}
.hero__card-icon svg { width: 24px; height: 24px; }
.hero__card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.hero__card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.pill {
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.pill--gold { background: var(--gold-pale); color: #7A5A18; }
.pill--green { background: var(--green-pale); color: var(--green); }
.hero__card-progress {
  margin-top: 1.2rem;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, var(--teal), var(--teal-light));
  transition: width 1.2s var(--ease-out);
}
.hero__floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.badge-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.badge-icon svg { width: 18px; height: 18px; }
.badge-text { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.badge-sub  { font-size: 0.72rem; color: var(--text-light); }

/* ==============================
   WHAT WE DO
   ============================== */
.what-we-do {
  background: var(--bg-white);
}
.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.what-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.what-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.what-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}
.what-card__icon--teal   { background: var(--teal); }
.what-card__icon--green  { background: var(--green); }
.what-card__icon--gold   { background: var(--gold); }
.what-card__icon svg { width: 26px; height: 26px; }
.what-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.what-card__body {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.68;
}

/* ==============================
   THREE-STAGE APPROACH
   ============================== */
.approach {
  background: var(--bg);
}
.approach__intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.approach__quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.approach__quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}
.approach__stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.approach__stages::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--teal-pale), var(--teal), var(--teal-pale));
  z-index: 0;
}
.stage {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
}
.stage__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px var(--bg);
  transition: background 0.3s, color 0.3s;
}
.stage:hover .stage__num {
  background: var(--teal);
  color: #fff;
}
.stage__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stage__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.stage__body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.68;
}
.stage__items {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.stage__item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.stage__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.55em;
  flex-shrink: 0;
}

/* ==============================
   WHY EQ MATTERS
   ============================== */
.why-eq {
  background: var(--bg-white);
}
.eq-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.pillar:hover {
  background: var(--teal-pale);
  border-color: rgba(26,107,107,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal);
  background: var(--teal-pale);
  transition: background 0.3s, color 0.3s;
}
.pillar:hover .pillar__icon {
  background: var(--teal);
  color: #fff;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.pillar__body {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.research-callout {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--gold-50) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.research-callout::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(26,107,107,0.06);
  pointer-events: none;
}
.research-callout__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
.research-callout__source {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
.research-callout__stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
  min-width: 200px;
}
.research-stat {
  text-align: center;
}
.research-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.research-stat__label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* ==============================
   SERVICES PREVIEW
   ============================== */
.services-preview {
  background: var(--bg);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 0;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.service-card__top {
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.service-card__top--teal   { background: var(--teal-50); }
.service-card__top--green  { background: var(--green-pale); }
.service-card__top--gold   { background: var(--gold-50); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
.service-card__icon--teal  { background: var(--teal); }
.service-card__icon--green { background: var(--green); }
.service-card__icon--gold  { background: var(--gold); }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.service-card__body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s ease;
}
.service-card__link:hover { gap: 0.7rem; }
.service-card__link svg { width: 16px; height: 16px; }

/* ==============================
   EQ ADVANTAGE
   ============================== */
.eq-advantage {
  background: var(--bg-white);
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.advantage-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
}
.advantage-card--self   { background: var(--teal-50); border-color: rgba(26,107,107,0.12); }
.advantage-card--rel    { background: var(--teal-pale); border-color: rgba(26,107,107,0.18); }
.advantage-card--org    { background: var(--green-pale); border-color: rgba(45,90,61,0.12); }
.advantage-card:hover   { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.advantage-card__label  {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.6rem;
}
.advantage-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.3rem;
}
.advantage-card__sub {
  font-size: 0.8rem; font-style: italic;
  color: var(--text-light); margin-bottom: 1.5rem;
}
.advantage-list {
  display: flex; flex-direction: column; gap: 0.65rem;
}
.advantage-item {
  display: flex; gap: 0.65rem;
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.5;
}
.advantage-item__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.advantage-card--org .advantage-item__dot { background: var(--green); }
.advantage-item__dot svg { width: 10px; height: 10px; color: #fff; }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--green) 100%);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.cta-banner__title em { font-style: italic; opacity: 0.85; }
.cta-banner__body {
  font-size: 1.1rem;
  opacity: 0.82;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.68;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn--white {
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  background: #f0fafa;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding-block: 4rem 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.footer__brand-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.72;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer__col-title {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__link {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--teal-light); }
.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--gold-light); margin-top: 0.2em; flex-shrink: 0; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { opacity: 0.55; }
.footer__legal {
  display: flex;
  gap: 1.5rem;
  opacity: 0.55;
}
.footer__legal a:hover { opacity: 1; color: var(--teal-light); }

/* ==============================
   SCROLL REVEAL
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--left.visible, .reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   SERVICES PAGE
   ============================== */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero__blob {
  position: absolute;
  top: 0; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(42,138,138,0.1) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.page-hero__title em { font-style: italic; color: var(--teal); }
.page-hero__body {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 580px;
}

.service-detail {
  padding-block: clamp(4rem, 8vw, 6rem);
}
.service-detail--alt { background: var(--bg-white); }
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.service-detail__grid--reverse { direction: rtl; }
.service-detail__grid--reverse > * { direction: ltr; }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.service-badge--gold { background: var(--gold-pale); color: #7A5A18; }
.service-badge--green { background: var(--green-pale); color: var(--green); }
.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.service-detail__title em { font-style: italic; color: var(--teal); }
.service-detail__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.service-feature__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--teal);
}
.service-feature__check svg { width: 11px; height: 11px; }
.service-feature--gold .service-feature__check {
  background: var(--gold-pale);
  color: var(--gold);
}
.service-feature--green .service-feature__check {
  background: var(--green-pale);
  color: var(--green);
}

.service-visual {
  position: relative;
}
.service-visual__card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.service-visual__card--teal  { background: var(--teal-50); }
.service-visual__card--gold  { background: var(--gold-50); }
.service-visual__card--green { background: var(--green-pale); }
.service-visual__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.focus-area-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.focus-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.6rem 0.85rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}
.focus-area:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.focus-area__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.focus-area__dot--gold  { background: var(--gold); }
.focus-area__dot--green { background: var(--green); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.process-step:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.process-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.process-step__title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.process-step__body {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

.ideal-for {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.ideal-for__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.ideal-for__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ideal-tag {
  padding: 0.3rem 0.8rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-mid);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.impact-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.impact-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.impact-item__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--teal);
}
.impact-item__icon svg { width: 18px; height: 18px; }
.impact-item__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.testimonials { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.testimonial-card__stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.62;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.contact-section { background: var(--bg-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info__value { font-size: 0.95rem; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-label span { color: var(--teal); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,107,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .eq-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .advantage-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__menu-btn { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: 3rem 3rem; }
  .hero__body, .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .what-cards { grid-template-columns: 1fr; }
  .approach__intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .approach__stages { grid-template-columns: 1fr; gap: 2rem; }
  .approach__stages::before { display: none; }
  .eq-pillars { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .research-callout { grid-template-columns: 1fr; }
  .research-callout__stats { flex-direction: row; border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.5rem; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail__grid--reverse { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .eq-pillars { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-direction: column; gap: 1.25rem; align-items: center; }
  .hero__stat-num { font-size: 1.7rem; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__blob { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ==============================
   CIRCLE DIAGRAM (Self Others World)
   ============================== */
.hero__eq-visual {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-light);
}
/* ==============================
   VENN DIAGRAM (Hero Visual)
   ============================== */
.venn-diagram {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.venn-wrapper {
  position: relative;
  width: 420px;
  height: 400px;
  margin: 0 auto;
  overflow: visible;
}
.venn-circ {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), filter 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
  overflow: visible;
}
.venn-circ--self {
  top: 0; left: 50%; transform: translateX(-50%);
  background: rgba(26,107,107,0.5);
}
.venn-circ--self:hover {
  transform: translateX(-50%) scale(1.07);
  filter: brightness(1.12);
  box-shadow: 0 0 0 8px rgba(26,107,107,0.15), 0 16px 48px rgba(26,107,107,0.28);
  z-index: 10;
}
.venn-circ--world {
  bottom: 0; left: 0;
  background: rgba(45,90,61,0.58);
}
.venn-circ--world:hover {
  transform: scale(1.07);
  filter: brightness(1.12);
  box-shadow: 0 0 0 8px rgba(45,90,61,0.15), 0 16px 48px rgba(45,90,61,0.28);
  z-index: 10;
}
.venn-circ--others {
  bottom: 0; right: 0;
  background: rgba(184,136,44,0.5);
}
.venn-circ--others:hover {
  transform: scale(1.07);
  filter: brightness(1.12);
  box-shadow: 0 0 0 8px rgba(184,136,44,0.15), 0 16px 48px rgba(184,136,44,0.28);
  z-index: 10;
}
.venn-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1;
  pointer-events: none;
  opacity: 0.82;
}
.venn-circ--self .venn-sub   { color: #0d4040; }
.venn-circ--world .venn-sub  { color: #142a1e; }
.venn-circ--others .venn-sub { color: #5a3d08; }
.venn-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.venn-circ--self .venn-name   { color: #0d4040; }
.venn-circ--world .venn-name  { color: #142a1e; }
.venn-circ--others .venn-name { color: #5a3d08; }
.venn-eq {
  position: absolute;
  left: 50%; top: 56%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
  pointer-events: none;
  z-index: 5;
}
/* Description boxes */
.venn-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.75rem;
  width: 420px;
}
.venn-box {
  border-radius: 12px;
  padding: 0.75rem 0.7rem;
  font-size: 0.73rem;
  font-family: var(--font-body);
  line-height: 1.48;
  text-align: center;
  font-weight: 500;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.venn-box--self {
  background: rgba(26,107,107,0.09);
  border: 1.5px solid rgba(26,107,107,0.22);
  color: #0d4040;
}
.venn-box--world {
  background: rgba(45,90,61,0.09);
  border: 1.5px solid rgba(45,90,61,0.22);
  color: #142a1e;
}
.venn-box--others {
  background: rgba(184,136,44,0.09);
  border: 1.5px solid rgba(184,136,44,0.22);
  color: #5a3d08;
}
.venn-diagram:has(.venn-circ--self:hover) .venn-box--self {
  background: rgba(26,107,107,0.2);
  border-color: rgba(26,107,107,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,107,107,0.2);
}
.venn-diagram:has(.venn-circ--world:hover) .venn-box--world {
  background: rgba(45,90,61,0.2);
  border-color: rgba(45,90,61,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,90,61,0.2);
}
.venn-diagram:has(.venn-circ--others:hover) .venn-box--others {
  background: rgba(184,136,44,0.2);
  border-color: rgba(184,136,44,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184,136,44,0.2);
}

/* ==============================
   FOUNDER STATEMENT
   ============================== */
.founder-statement {
  background: linear-gradient(135deg, var(--terra-pale) 0%, var(--gold-50) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(160,90,56,0.14);
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.founder-statement::before {
  content: '"';
  position: absolute;
  top: -1.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: rgba(184,136,44,0.08);
  pointer-events: none;
}
.founder-statement__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.founder-statement__attr {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ==============================
   SECTION IMAGES
   ============================== */
.section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}
.service-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ==============================
   LANDMARK STAT BLOCK
   ============================== */
.landmark-stat {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--bg-white) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(106,143,116,0.18);
  margin-top: 1.5rem;
}
.landmark-stat__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.landmark-stat__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.landmark-stat__source {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-style: italic;
}

/* ==============================
   WARM ACCENT OVERRIDES
   ============================== */
.what-card__icon--terra { background: var(--terra); }
.pillar:hover { background: var(--terra-pale); border-color: rgba(160,90,56,0.18); }
.pillar:hover .pillar__icon { background: var(--terra); color: #fff; }
