/* ─────────────────────────────────────────────
   Anhar Coaching — Clean Design System
   ───────────────────────────────────────────── */

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

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── CSS Variables ─────────────────────────── */
:root {
  /* Two brand colors only */
  --ink:        #133433;
  --ink-soft:   #133433;
  --card:       #133433;
  --card-hover: rgba(19,52,51,0.85);
  --border:     rgba(221,222,218,0.12);
  --border-alt: rgba(221,222,218,0.22);

  --cream:      #DDDEDA;
  --cream-dim:  rgba(221,222,218,0.12);
  --cream-line: rgba(221,222,218,0.3);

  --white:    #DDDEDA;
  --muted:    rgba(221,222,218,0.75);
  --subtle:   rgba(221,222,218,0.22);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --gold:       #DDDEDA;
  --gold-light: #DDDEDA;
  --gold-dim:   rgba(221,222,218,0.1);
  --gold-line:  rgba(221,222,218,0.3);
}

/* btn--gold alias */
.btn--gold {
  background: var(--cream);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ── Base ──────────────────────────────────── */
body {
  font-family: var(--sans);
  background: url('images/green-bg.png') center/cover fixed var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Custom Cursor (subtle dot only) ──────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.cursor-ring { display: none; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out-expo),
              transform 0.85s var(--ease-out-expo);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.in {
  opacity: 1;
  transform: translate(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.32s; }
.reveal.delay-4 { transition-delay: 0.44s; }
.reveal.delay-5 { transition-delay: 0.56s; }

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.4s, backdrop-filter 0.4s, transform 0.4s var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(19,52,51,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav.hidden { transform: translateY(-100%); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav__logo img {
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cream);
  transition: width 0.3s var(--ease-out-expo);
}
.nav__link:hover,
.nav__link.active { color: var(--cream); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  margin-left: 36px;
  padding: 9px 22px;
  border: 1px solid var(--cream-line);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover {
  background: var(--cream);
  color: var(--ink);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: url('images/green-bg.png') center/cover var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-overlay__links { display: flex; flex-direction: column; gap: 20px; }
.menu-overlay__link {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.2s;
}
.menu-overlay.open .menu-overlay__link { opacity: 1; transform: translateX(0); }
.menu-overlay.open .menu-overlay__link:nth-child(1) { transition-delay: 0.04s; }
.menu-overlay.open .menu-overlay__link:nth-child(2) { transition-delay: 0.08s; }
.menu-overlay.open .menu-overlay__link:nth-child(3) { transition-delay: 0.12s; }
.menu-overlay.open .menu-overlay__link:nth-child(4) { transition-delay: 0.16s; }
.menu-overlay.open .menu-overlay__link:nth-child(5) { transition-delay: 0.20s; }
.menu-overlay.open .menu-overlay__link:nth-child(6) { transition-delay: 0.24s; }
.menu-overlay__link:hover { color: var(--white); }
.menu-overlay__footer {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── Eyebrow ────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 16px;
  display: block;
}

/* ── Section ────────────────────────────────── */
.section { padding: 100px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
}
.btn__arrow { transition: transform 0.3s var(--ease-out-expo); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--cream);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--cream-line);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: var(--cream-dim);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 48px;
}

.hero__image-col {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease-out;
  transform: scale(1.04);
}
.hero__image.loaded { transform: scale(1); }
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 35%),
              linear-gradient(to top, var(--ink) 0%, transparent 25%);
  z-index: 1;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cream);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: rgba(221,222,218,0.8);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}
.hero__title .line span.in { transform: translateY(0); }

.hero__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out-expo) 0.65s,
              transform 0.8s var(--ease-out-expo) 0.65s;
}
.hero__sub.in { opacity: 1; transform: translateY(0); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out-expo) 0.85s,
              transform 0.8s var(--ease-out-expo) 0.85s;
}
.hero__actions.in { opacity: 1; transform: translateY(0); }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.8s 1.3s;
}
.hero__scroll.in { opacity: 1; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cream-line), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────
   ABOUT STRIP
   ───────────────────────────────────────────── */
.about-strip {
  padding: 100px 0;
  background: url('images/green-bg.png') center/cover var(--ink);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-strip__image-wrap {
  position: relative;
}
.about-strip__image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: 65% top;
  aspect-ratio: 3/4;
}
.about-strip__text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}
.about-strip__text h2 em { font-style: italic; opacity: 0.8; }
.about-strip__text p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-strip__text p strong { color: var(--cream); font-weight: 500; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 20px;
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 14px; }

/* ─────────────────────────────────────────────
   STATS BAND
   ───────────────────────────────────────────── */
.stats-band {
  padding: 72px 0;
  background: var(--cream);
}
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 50%; width: 1px;
  background: rgba(19,52,51,0.2);
}
.stat-item__num {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.stat-item__suffix {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
}
.stat-item__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19,52,51,0.55);
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────── */
.services { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }
.services__header { margin-bottom: 60px; }
.services__header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.services__header p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ── Compact tabbed services (homepage) ───────── */
.svc-tabs {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: start;
}

/* Left — clickable service list */
.svc-tabs__nav { display: flex; flex-direction: column; }
.svc-tab {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  background: none;
  border: none;
  border-bottom: 1px dashed rgba(19,52,51,0.22);
  padding: 24px 4px;
  cursor: pointer;
  color: rgba(19,52,51,0.42);
  transition: color 0.45s var(--ease-out-expo), padding-left 0.45s var(--ease-out-expo);
}
.svc-tab:first-child { border-top: 1px dashed rgba(19,52,51,0.22); }
.svc-tab__no {
  display: none;
  min-width: 22px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(19,52,51,0.32);
  transition: color 0.45s;
}
.svc-tab__name {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}
.svc-tab__arrow {
  display: inline-flex;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s, transform 0.45s var(--ease-out-expo);
}
.svc-tab:hover { color: rgba(19,52,51,0.78); padding-left: 14px; }
.svc-tab.is-active { color: var(--ink); }
.svc-tab.is-active .svc-tab__no { color: var(--ink); }
.svc-tab.is-active .svc-tab__arrow { opacity: 1; transform: translateX(0); }

/* Right — live preview panel */
.svc-panel { position: relative; }
.svc-panel__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(19,52,51,0.06);
}
.svc-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}
.svc-panel__media-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,52,51,0.62) 0%, rgba(19,52,51,0.08) 42%, transparent 72%);
}
.svc-panel__title {
  position: absolute;
  left: 32px;
  bottom: 28px;
  margin: 0;
  max-width: 78%;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.04;
  color: var(--cream);
}
.svc-panel__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-top: 30px;
}
.svc-panel__desc {
  margin: 0;
  max-width: 52ch;
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(19,52,51,0.72);
}
.svc-panel__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid rgba(19,52,51,0.32);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out-expo), border-color 0.3s;
}
.svc-panel__link svg { transition: transform 0.3s var(--ease-out-expo); }
.svc-panel__link:hover { gap: 14px; border-color: var(--ink); }
.svc-panel__link:hover svg { transform: translateX(3px); }

/* Crossfade content on tab switch */
.svc-panel.svc-in .svc-panel__media img { animation: svcImgIn 0.7s var(--ease-out-expo); }
.svc-panel.svc-in .svc-panel__title,
.svc-panel.svc-in .svc-panel__desc { animation: svcTextIn 0.55s var(--ease-out-expo); }
@keyframes svcImgIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes svcTextIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────
   LOGO TICKER
   ───────────────────────────────────────────── */
.logo-bar {
  padding: 52px 0 60px;
  background: url('images/green-bg.png') center/cover var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-bar__header {
  text-align: center;
  margin-bottom: 40px;
}
.logo-bar__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* Edge gradient masks */
.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12%;
  min-width: 60px;
  max-width: 160px;
  z-index: 2;
  pointer-events: none;
}
.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--ink-soft), transparent);
}
.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--ink-soft), transparent);
}

/* Animated track — duplicate content for seamless loop */
.logo-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoTicker 40s linear infinite;
  will-change: transform;
}
.logo-ticker__track:hover {
  animation-play-state: paused;
}
@keyframes logoTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
  height: 64px;
  flex-shrink: 0;
}
.logo-ticker__item img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.logo-ticker__item:hover img {
  opacity: 1;
  transform: scale(1.06);
}
/* HP is a square icon — constrain */
.logo-ticker__item--sq img {
  height: 42px;
  width: 42px;
}
/* Two-line wordmarks — slightly taller */
.logo-ticker__item--tall img {
  height: 54px;
}

.logo-ticker__sep {
  width: 1px;
  height: 28px;
  background: var(--border-alt);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }
.testimonials__header { margin-bottom: 56px; }
.testimonials__header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--card);
  padding: 44px 40px;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--card-hover); }
.testi-card__text {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.testi-card__author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.testi-card__role {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   STRATEGIC PARTNER (top of cream testimonials)
   ───────────────────────────────────────────── */
.partner-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.partner-feature .eyebrow {
  color: rgba(19,52,51,0.55);
  border-color: rgba(19,52,51,0.2);
}
.partner-feature__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}
.partner-feature__divider {
  width: 1px;
  height: 64px;
  background: rgba(19,52,51,0.14);
  flex-shrink: 0;
}
.partner-feature__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: partnerFloat 6s ease-in-out infinite;
}
.partner-feature__logo-wrap--delay {
  animation-delay: -3s;
}
.partner-feature__logo {
  width: 200px;
  height: auto;
  display: block;
  transition: transform 0.45s var(--ease-out-expo), filter 0.45s ease;
  filter: drop-shadow(0 8px 18px rgba(19,52,51,0.12));
}
.partner-feature__logo--lbs {
  width: 94px;
  border-radius: 3px;
  filter: drop-shadow(0 10px 22px rgba(19,52,51,0.2));
}
.partner-feature__logo-wrap:hover .partner-feature__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 14px 26px rgba(19,52,51,0.18));
}
@media (max-width: 540px) {
  .partner-feature__logos { gap: 34px; }
  .partner-feature__divider { display: none; }
}
@keyframes partnerFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ─────────────────────────────────────────────
   COMMUNITY & ADVOCACY
   ───────────────────────────────────────────── */
.advocacy {
  padding: 0;
  background: url('images/green-bg.png') center/cover var(--ink);
  overflow: hidden;
}

.advocacy__header {
  text-align: center;
  padding: 100px 40px 72px;
  border-bottom: 1px solid rgba(221,222,218,0.08);
}

.advocacy__headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 18px;
}
.advocacy__headline em { font-style: italic; opacity: 0.75; }

/* Two-column grid, no gap — separated by border */
.advocacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.advocacy-card {
  position: relative;
  padding: 72px 64px 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(221,222,218,0.08);
  transition: background 0.5s;
}
.advocacy-card:first-child {
  border-right: 1px solid rgba(221,222,218,0.08);
}
.advocacy-card:hover {
  background: rgba(221,222,218,0.03);
}

/* Ghost number in background */
.advocacy-card__ghost {
  position: absolute;
  top: -10px;
  right: 48px;
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 300;
  color: rgba(221,222,218,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.5s;
}
.advocacy-card:hover .advocacy-card__ghost {
  color: rgba(221,222,218,0.07);
}

/* Animated SVG icon */
.advocacy-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  color: rgba(221,222,218,0.7);
  transition: color 0.4s;
}
.advocacy-card:hover .advocacy-card__icon { color: var(--cream); }
.advocacy-card__icon svg { width: 100%; height: 100%; overflow: visible; }

/* Content */
.advocacy-card__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.2;
}
.advocacy-card__text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 420px;
}

/* Animated bottom accent line */
.advocacy-card__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, rgba(221,222,218,0.6), rgba(221,222,218,0.1));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.advocacy-card.in .advocacy-card__line { width: 100%; }

/* ── ADVOCACY SVG ANIMATIONS ─────────────────── */
.adv-draw {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.adv-dot { opacity: 0; transform: scale(0); transform-box: fill-box; transform-origin: center; }
.adv-orbit-dot { opacity: 0; }

@keyframes advDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes advFadeScale {
  to { opacity: 1; transform: scale(1); }
}
@keyframes advFadeIn {
  to { opacity: 1; }
}

/* Staggered draw-in when card is in view */
.advocacy-card.in .adv-d0 { animation: advDraw 1s cubic-bezier(0.4,0,0.2,1) 0.2s forwards; }
.advocacy-card.in .adv-d1 { animation: advDraw 1s cubic-bezier(0.4,0,0.2,1) 0.55s forwards; }
.advocacy-card.in .adv-d2 { animation: advDraw 1s cubic-bezier(0.4,0,0.2,1) 0.9s forwards; }
.advocacy-card.in .adv-d3 { animation: advDraw 0.7s cubic-bezier(0.4,0,0.2,1) 1.2s forwards; }
.advocacy-card.in .adv-dot { animation: advFadeScale 0.4s ease 0.2s forwards; }
.advocacy-card.in .adv-orbit-dot { animation: advFadeIn 0.4s ease 1.4s forwards; }

/* Mentor icon: network floats upward */
@keyframes mentorFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.advocacy-card.in .adv-svg--mentor {
  animation: mentorFloat 4s ease-in-out 1.8s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* STEM icon: atom orbits spin */
@keyframes atomSpin {
  to { transform: rotate(360deg); }
}
.advocacy-card.in .adv-svg--stem {
  animation: atomSpin 12s linear 1.5s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* from-left / from-right reveal variants */
.reveal.from-left  { transform: translateY(24px) translateX(-24px); }
.reveal.from-right { transform: translateY(24px) translateX(24px); }
.reveal.from-left.in, .reveal.from-right.in { transform: translateY(0) translateX(0); }

@media (max-width: 768px) {
  .advocacy__grid { grid-template-columns: 1fr; }
  .advocacy-card:first-child { border-right: none; border-bottom: 1px solid rgba(221,222,218,0.08); }
  .advocacy-card { padding: 52px 32px 60px; }
  .advocacy__header { padding: 72px 24px 52px; }
}

/* ── CTA BAND
   ───────────────────────────────────────────── */
.cta-band {
  padding: 100px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band__inner h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-band__inner h2 em { font-style: italic; opacity: 0.8; }
.cta-band__inner p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: transparent;
  padding: 52px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__brand .footer__logo img {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer__brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid var(--border-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.footer__social:hover { border-color: var(--cream); color: var(--cream); }

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color 0.3s;
}
.footer__col ul a:hover { color: var(--cream); }

.footer__contact p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer__contact a { color: var(--muted); transition: color 0.3s; }
.footer__contact a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--cream); }

/* ── Legal content pages (terms / privacy) ── */
.legal-content {
  background: var(--cream);
  padding: 80px 0 100px;
}
.legal-content__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content__inner p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(19,52,51,0.82);
  margin-bottom: 20px;
}
.legal-content__inner h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(19,52,51,0.12);
}
.legal-content__inner ul {
  margin: 0 0 20px 24px;
  padding: 0;
}
.legal-content__inner ul li {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(19,52,51,0.82);
  margin-bottom: 6px;
}
.legal-content__inner a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content__inner a:hover { opacity: 0.7; }

/* ── Legal bar */
.legal-bar {
  background: #0a0f0f;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.legal-bar a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(221,222,218,0.45);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  padding: 0 20px;
}
.legal-bar a:not(:last-child) {
  border-right: 1px solid rgba(221,222,218,0.15);
}
.legal-bar a:hover { color: var(--cream); }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  background: url('images/green-bg.png') center/cover var(--ink);
}
.page-hero__inner {
  padding: 88px 0 72px;
  text-align: center;
}
.page-hero__inner .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.page-hero__inner h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.page-hero__inner h1 em { font-style: italic; opacity: 0.8; }
.page-hero__inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.page-hero__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-alt), transparent);
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────── */
.about-bio {
  padding: 100px 0;
  background: url('images/green-bg.png') center/cover var(--ink);
}
.about-bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.about-bio__photo {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about-bio__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.about-bio__content h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-bio__content p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-bio__content p strong { color: var(--cream); font-weight: 500; }

.why-cards { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }
.why-cards h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 48px;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.why-card {
  background: var(--card);
  padding: 44px 40px;
  transition: background 0.3s;
}
.why-card:hover { background: var(--card-hover); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.88rem; line-height: 1.85; color: var(--muted); }

/* ── WHY CARD ICONS ─────────────────────────── */
.why-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: rgba(221,222,218,0.65);
  transition: color 0.4s;
}
.why-card:hover .why-card__icon { color: rgba(221,222,218,0.95); }
.why-card__icon svg { width: 100%; height: 100%; overflow: visible; }

/* Draw-in keyframe */
@keyframes iconDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes iconFadeIn {
  to { opacity: 1; transform: scale(1); }
}

/* All stroked paths start hidden */
.icon-draw {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: 0.9;
}
/* Filled dots start invisible */
.icon-dot { opacity: 0; transform: scale(0); transform-box: fill-box; transform-origin: center; }

/* Trigger draw when card enters view */
.why-card.in .icon-draw {
  animation: iconDraw 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}
.why-card.in .icon-draw--delay {
  animation: iconDraw 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.why-card.in .icon-draw--delay2 {
  animation: iconDraw 0.5s ease 1.1s forwards;
}
.why-card.in .icon-ring-1 {
  animation: iconDraw 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.why-card.in .icon-ring-2 {
  animation: iconDraw 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}
.why-card.in .icon-ring-3 {
  animation: iconDraw 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}
.why-card.in .icon-dot {
  animation: iconFadeIn 0.4s ease 1s forwards;
}

/* Continuous animations after draw */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes radarPulse {
  0%, 100% { opacity: 0.9; }
  60%      { opacity: 0.25; }
}
@keyframes compassSpin {
  to { transform: rotate(360deg); }
}
@keyframes spiralRotate {
  to { transform: rotate(-360deg); }
}

/* Icon 1: diamond floats up/down */
.why-card.in .icon-svg--float {
  animation: iconFloat 4s ease-in-out 1.6s infinite;
  transform-box: fill-box;
  transform-origin: center;
}
/* Icon 2: radar pulse on outer rings */
.why-card.in .icon-ring-2 { animation: iconDraw 0.9s ease 0.55s forwards, radarPulse 2.8s ease-in-out 1.6s infinite; }
.why-card.in .icon-ring-3 { animation: iconDraw 1.1s ease 0.85s forwards, radarPulse 2.8s ease-in-out 2.1s infinite; }
/* Icon 3: compass crosshair spins */
.icon-spin {
  transform-box: fill-box;
  transform-origin: center;
}
.why-card.in .icon-spin {
  animation: compassSpin 10s linear 1.4s infinite;
}
/* Icon 4: spiral rotates counter-clockwise */
.why-card.in .icon-svg--spiral {
  transform-box: fill-box;
  transform-origin: center;
  animation: spiralRotate 9s linear 1.6s infinite;
}

.credentials { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }
.credentials h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 40px;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cred-item {
  background: var(--card);
  padding: 24px 28px;
  border-left: 2px solid var(--border-alt);
  transition: border-color 0.3s, background 0.3s;
}
.cred-item:hover { border-color: var(--cream); background: var(--card-hover); }
.cred-item__org {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 6px;
}
.cred-item__name { font-size: 0.88rem; color: var(--off); line-height: 1.5; }

/* ── CERTIFICATION CARDS (animated) ─────────── */
.cert-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: rgba(221,222,218,0.06);
  border: 1px solid rgba(221,222,218,0.12);
  border-top: 3px solid rgba(221,222,218,0.18);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo),
              border-color 0.35s,
              background 0.35s;
}
.cert-card:focus-visible { border-top-color: var(--cream); box-shadow: 0 0 0 2px rgba(221,222,218,0.5); }
.credentials .cert-card:focus-visible { border-top-color: var(--ink); box-shadow: 0 0 0 2px rgba(19,52,51,0.4); }
.cert-card:active { transform: translateY(-2px) scale(0.99); }
.cert-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(221,222,218,0.07) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.cert-card:hover::after { transform: translateX(120%); }
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  border-top-color: var(--cream);
  background: rgba(221,222,218,0.1);
}
.cert-card__logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo);
}
.cert-card:hover .cert-card__logo-wrap { transform: scale(1.1) rotate(-2deg); }
.cert-card__logo { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-card__body { flex: 1; min-width: 0; }
.cert-card__org {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(221,222,218,0.45);
  margin-bottom: 5px;
}
.cert-card__name {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(221,222,218,0.88);
  line-height: 1.45;
  margin: 0;
}
.cert-card__tick {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(221,222,218,0.25);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.35s, color 0.35s, background 0.35s, transform 0.35s var(--ease-out-expo);
}
.cert-card__tick .ic-check,
.cert-card__tick .ic-plus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(221,222,218,0.55);
  transition: opacity 0.3s, transform 0.35s var(--ease-out-expo);
}
.cert-card__tick .ic-check { font-size: 0.62rem; }
.cert-card__tick .ic-plus  { font-size: 1rem; font-weight: 300; opacity: 0; transform: rotate(-90deg); }
.cert-card:hover .cert-card__tick {
  border-color: var(--cream);
  background: rgba(221,222,218,0.12);
  transform: scale(1.12);
}
.cert-card:hover .ic-check { opacity: 0; transform: scale(0.4); }
.cert-card:hover .ic-plus  { opacity: 1; transform: rotate(0deg); color: var(--cream); }
.credentials .cert-card__tick .ic-check,
.credentials .cert-card__tick .ic-plus { color: rgba(19,52,51,0.5); }
.credentials .cert-card:hover .cert-card__tick { border-color: var(--ink); background: rgba(19,52,51,0.08); }
.credentials .cert-card:hover .ic-plus { color: var(--ink); }

/* PCC badge is a self-contained square card, no extra crop needed */
.cert-card__logo-wrap--badge { background: transparent; }

/* Click hint above the grid */
.cert-hint {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(19,52,51,0.5);
  margin: 28px 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-hint::before {
  content: '';
  width: 22px; height: 1px;
  background: rgba(19,52,51,0.3);
}

/* ── CERT MODAL ─────────────────────────────── */
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}
.cert-modal.open { visibility: visible; pointer-events: auto; }
.cert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,20,19,0.55);
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: opacity 0.45s ease, backdrop-filter 0.45s ease;
}
.cert-modal.open .cert-modal__backdrop { opacity: 1; backdrop-filter: blur(8px); }
.cert-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--cream);
  border-top: 4px solid var(--ink);
  padding: 44px 44px 40px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(8,20,19,0.5);
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
}
.cert-modal.open .cert-modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.cert-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(19,52,51,0.55);
  background: rgba(19,52,51,0.06);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.cert-modal__close:hover { background: rgba(19,52,51,0.12); color: var(--ink); transform: rotate(90deg); }
.cert-modal__logo-wrap {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(19,52,51,0.18);
  display: flex; align-items: center; justify-content: center;
  /* staggered entrance */
  opacity: 0; transform: scale(0.6) rotate(-8deg);
  transition: opacity 0.5s var(--ease-out-expo) 0.12s, transform 0.6s var(--ease-out-expo) 0.12s;
}
.cert-modal__logo-wrap--badge { background: transparent; box-shadow: none; }
.cert-modal.open .cert-modal__logo-wrap { opacity: 1; transform: scale(1) rotate(0); }
.cert-modal__logo { width: 100%; height: 100%; object-fit: contain; }
.cert-modal__org,
.cert-modal__title,
.cert-modal__line,
.cert-modal__desc,
.cert-modal__badge {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}
.cert-modal.open .cert-modal__org   { opacity: 1; transform: none; transition-delay: 0.18s; }
.cert-modal.open .cert-modal__title { opacity: 1; transform: none; transition-delay: 0.24s; }
.cert-modal.open .cert-modal__line  { opacity: 1; transform: none; transition-delay: 0.30s; }
.cert-modal.open .cert-modal__desc  { opacity: 1; transform: none; transition-delay: 0.36s; }
.cert-modal.open .cert-modal__badge { opacity: 1; transform: none; transition-delay: 0.44s; }
.cert-modal__org {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(19,52,51,0.5);
  margin-bottom: 8px;
}
.cert-modal__title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 500; line-height: 1.25;
  color: var(--ink); margin: 0;
}
.cert-modal__line { width: 40px; height: 2px; background: var(--ink); margin: 18px auto 20px; }
.cert-modal__desc {
  font-size: 0.92rem; line-height: 1.8; color: rgba(19,52,51,0.82); margin: 0;
}
.cert-modal__badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(19,52,51,0.6);
}
.cert-modal__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #2e8b57;
  box-shadow: 0 0 0 0 rgba(46,139,87,0.5);
  animation: certPulse 2s infinite;
}
@keyframes certPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,139,87,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(46,139,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,139,87,0); }
}
@media (max-width: 540px) {
  .cert-modal__panel { padding: 40px 26px 32px; }
  .cert-modal__title { font-size: 1.35rem; }
}

/* Cream-section overrides */
.credentials .cert-card {
  background: rgba(255,255,255,0.75);
  border-color: rgba(19,52,51,0.1);
  border-top-color: rgba(19,52,51,0.2);
  box-shadow: 0 2px 8px rgba(19,52,51,0.06);
}
.credentials .cert-card:hover {
  background: #fff;
  border-top-color: var(--ink);
  box-shadow: 0 20px 48px rgba(19,52,51,0.16);
}
.credentials .cert-card::after {
  background: linear-gradient(110deg, transparent 35%, rgba(19,52,51,0.04) 50%, transparent 65%);
}
.credentials .cert-card__org { color: rgba(19,52,51,0.45); }
.credentials .cert-card__name { color: rgba(19,52,51,0.88); }
.credentials .cert-card__tick {
  border-color: rgba(19,52,51,0.2);
  color: rgba(19,52,51,0.4);
}
.credentials .cert-card:hover .cert-card__tick {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(19,52,51,0.07);
}

@media (max-width: 768px) { .cert-cards { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .cert-cards { grid-template-columns: repeat(2, 1fr); } }

.languages { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.lang-tag {
  padding: 7px 18px;
  border: 1px solid var(--border-alt);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: border-color 0.3s, color 0.3s;
}
.lang-tag:hover { border-color: var(--cream); color: var(--cream); }

/* ─────────────────────────────────────────────
   SERVICES SIDE NAV
   ───────────────────────────────────────────── */
.sn {
  position: fixed;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.sn--visible {
  opacity: 1;
  pointer-events: auto;
}

.sn__rail {
  position: absolute;
  left: 5px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(221,222,218,0.1);
  overflow: hidden;
}

.sn__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, rgba(221,222,218,0.6), rgba(221,222,218,0.15));
  transition: height 0.6s cubic-bezier(0.4,0,0.2,1);
}

.sn__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.sn__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(221,222,218,0.25);
  background: transparent;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.sn__label {
  display: none;
}

.sn__item:hover .sn__label {
  opacity: 1;
  transform: translateX(0);
  color: rgba(221,222,218,0.75);
}

.sn__item:hover .sn__dot {
  border-color: rgba(221,222,218,0.5);
  transform: scale(1.2);
}

.sn__item.active .sn__dot {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 0 10px rgba(221,222,218,0.35);
  transform: scale(1.15);
}

.sn__item.active .sn__label {
  opacity: 0;
  transform: translateX(-6px);
}

.sn__item.active:hover .sn__label {
  opacity: 1;
  transform: translateX(0);
  color: var(--cream);
}

/* stagger entrance */
.sn__item { opacity: 0; animation: snIn 0.5s ease forwards; }
.sn__item[data-index="0"] { animation-delay: 0.1s; }
.sn__item[data-index="1"] { animation-delay: 0.2s; }
.sn__item[data-index="2"] { animation-delay: 0.3s; }
.sn__item[data-index="3"] { animation-delay: 0.4s; }
.sn__item[data-index="4"] { animation-delay: 0.5s; }

@keyframes snIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Dark mode (over cream sections) */
.sn { transition: opacity 0.5s ease; }
.sn__rail { transition: background 0.4s ease; }
.sn__fill { transition: height 0.6s cubic-bezier(0.4,0,0.2,1), background 0.4s ease; }
.sn__dot  { transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease; }
.sn__label { transition: color 0.35s ease, opacity 0.35s ease, transform 0.35s ease; }

.sn--dark .sn__rail { background: rgba(19,52,51,0.12); }
.sn--dark .sn__fill { background: linear-gradient(to bottom, rgba(19,52,51,0.55), rgba(19,52,51,0.15)); }
.sn--dark .sn__dot  { border-color: rgba(19,52,51,0.28); }
.sn--dark .sn__label { color: rgba(19,52,51,0.38); }
.sn--dark .sn__item:hover .sn__label { color: rgba(19,52,51,0.75); }
.sn--dark .sn__item:hover .sn__dot   { border-color: rgba(19,52,51,0.55); }
.sn--dark .sn__item.active .sn__dot  { background: var(--ink); border-color: var(--ink); box-shadow: 0 0 10px rgba(19,52,51,0.22); }
.sn--dark .sn__item.active:hover .sn__label { color: var(--ink); }

/* hide on small screens */
@media (max-width: 1024px) { .sn { display: none; } }

/* ─────────────────────────────────────────────
   EDITORIAL PHOTO TREATMENT
   Consistent frame style across all photos
   ───────────────────────────────────────────── */
.editorial-photo {
  position: relative;
  margin-top: 40px;
}
.editorial-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
/* Photos are shown clean — vignette overlays disabled site-wide */
.photo-vignette {
  display: none;
}

/* ─────────────────────────────────────────────
   SERVICES PAGE
   ───────────────────────────────────────────── */
.service-detail {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even),
.service-detail:nth-child(odd)  { background: var(--cream); }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.service-detail__inner.reversed { grid-template-columns: 1.5fr 1fr; }
.service-detail__aside .service-num {
  font-family: var(--sans);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border-alt);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.service-detail__aside h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.service-detail__body p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(19,52,51,0.72);
  margin-bottom: 18px;
}
.service-detail__body p strong { color: var(--ink); font-weight: 500; }
.service-detail__body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 28px 0 12px;
  opacity: 0.88;
}
.service-detail__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-detail__list li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(19,52,51,0.72);
}
.service-detail__list li::before {
  content: '—';
  color: var(--ink);
  opacity: 0.35;
  flex-shrink: 0;
}
.service-quote {
  background: var(--card);
  border-left: 2px solid var(--border-alt);
  padding: 24px 28px;
  margin-top: 32px;
}
.service-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────── */
.contact-section { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info p { font-size: 0.93rem; line-height: 1.85; color: var(--muted); margin-bottom: 40px; }
.contact-detail { display: flex; flex-direction: column; gap: 20px; }
.contact-detail__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.contact-detail__text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-detail__text a,
.contact-detail__text span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.3s;
  display: block;
}
.contact-detail__text a:hover { color: var(--cream); }

.contact-form {
  background: var(--card);
  padding: 44px 44px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--ink-soft);
  border: 1px solid var(--border-alt);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cream-line); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─────────────────────────────────────────────
   RESOURCES / MEDIA PAGE
   Split feature rows (Maria-style layout, Anhar colors)
   ───────────────────────────────────────────── */
.resources { padding: 100px 0; background: url('images/green-bg.png') center/cover var(--ink); }

.media-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  margin-bottom: 34px;
  box-shadow: 0 44px 90px -55px rgba(19, 52, 51, 0.45);
  background: var(--ink);
}
.media-feature__thumb {
  aspect-ratio: auto;
  min-height: 280px;
  height: 100%;
}
.media-feature__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-feature__tag {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
}
.media-feature__tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--cream);
}
.media-feature__panel {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}
.media-feature__panel .eyebrow {
  color: rgba(221, 222, 218, 0.72);
  border-color: rgba(221, 222, 218, 0.35);
  margin-bottom: 18px;
}
.media-feature__panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  margin: 0;
}
.media-feature__panel p {
  font-family: var(--sans);
  color: rgba(221, 222, 218, 0.72);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.7;
}
.media-feature__link {
  margin-top: 24px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: opacity 0.3s ease;
}
.media-feature__link:hover { opacity: 0.75; }
.media-feature__link .ln {
  width: 26px;
  height: 1px;
  background: var(--cream);
  display: inline-block;
}
@media (max-width: 860px) {
  .media-feature { grid-template-columns: 1fr; }
  .media-feature__thumb { width: 100%; min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .media-feature__panel { padding: 36px 28px; }
}

/* Honeypot anti-spam field — off-screen, invisible, not focusable.
   Real visitors never see or fill it; bots that auto-fill every field get caught. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Contact form submit status message */
.form-msg {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.form-msg.show { opacity: 1; transform: translateY(0); }
.form-msg.is-success { color: #2a7d52; }
.form-msg.is-error { color: #b5524f; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image-col { display: none; }
  .hero__content { padding: 80px 48px; }
  .hero__sub { max-width: 100%; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-tabs { grid-template-columns: 0.96fr 1.04fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-bio__inner { grid-template-columns: 1fr; }
  .about-bio__photo { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-detail__inner,
  .service-detail__inner.reversed { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 72px 0; }
  .hero__content { padding: 56px 24px; }
  .svc-tabs { grid-template-columns: 1fr; gap: 12px; }
  .svc-tab { padding: 18px 4px; }
  .svc-panel { margin-top: 8px; }
  .svc-panel__foot { flex-direction: column; gap: 18px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .menu-overlay { padding: 80px 24px 48px; }
}

/* ─────────────────────────────────────────────
   TWO-COLOR ALTERNATING SYSTEM
   Green (#133433) → Cream (#DDDEDA) → Green → Cream
   ───────────────────────────────────────────── */

/* Better muted text readability on dark sections */
/* (overrides :root --muted inline below) */

/* ── HOMEPAGE: About Strip → CREAM */
.about-strip { background: var(--cream); }
.about-strip__text h2 { color: var(--ink); }
.about-strip__text h2 em { color: var(--ink); opacity: 0.7; }
.about-strip__text p { color: rgba(19,52,51,0.82); }
.about-strip__text p strong { color: var(--ink); font-weight: 600; }
.about-strip .link-arrow { color: var(--ink); }

/* ── HOMEPAGE: Stats Band → GREEN */
.stats-band { background: url('images/green-bg.png') center/cover var(--ink); }
.stat-item__num { color: var(--cream); }
.stat-item__suffix { color: var(--cream); }
.stat-item__label { color: rgba(221,222,218,0.62); }
.stat-item + .stat-item::before { background: rgba(221,222,218,0.15); }

/* ── HOMEPAGE: Services section → CREAM */
.services { background: var(--cream); }
.services__header h2 { color: var(--ink); }
.services .eyebrow { color: rgba(19,52,51,0.55); border-color: rgba(19,52,51,0.2); }
.services__header p { color: rgba(19,52,51,0.7); }

/* ── HOMEPAGE: Testimonials → CREAM */
.testimonials { background: var(--cream); padding: 76px 0; }
.testimonials__header h2 { color: var(--ink); }
.testi-card { background: rgba(19,52,51,0.05); }
.testi-card:hover { background: rgba(19,52,51,0.1); }
.testi-card__text { color: rgba(19,52,51,0.88); border-top-color: rgba(19,52,51,0.12); }
.testi-card__author { color: var(--ink); }
.testi-card__role { color: rgba(19,52,51,0.58); }

/* ── ABOUT PAGE: Bio → CREAM */
.about-bio { background: var(--cream); }
.about-bio h2,
.about-bio .about-bio__content h2 { color: var(--ink); }
.about-bio p { color: rgba(19,52,51,0.85); }
.about-bio p strong { color: var(--ink); font-weight: 600; }
.about-bio .eyebrow { color: rgba(19,52,51,0.55); border-color: rgba(19,52,51,0.2); }
.about-bio .lang-tag,
.credentials .lang-tag {
  background: rgba(19,52,51,0.08);
  color: var(--ink);
  border-color: rgba(19,52,51,0.18);
}
.credentials .lang-tag:hover {
  border-color: var(--ink);
  color: var(--ink);
}
/* ── ABOUT PAGE: Why Cards → CREAM section with dark-green cards */
.why-cards { background: var(--cream); }
.why-cards h2 { color: var(--ink); }
.why-cards .eyebrow { color: rgba(19,52,51,0.55); border-color: rgba(19,52,51,0.2); }
.why-card { background: var(--ink); border: none; }
.why-card:hover { background: #0e2b2a; }
.why-card h3 { color: var(--cream); }
.why-card p { color: rgba(221,222,218,0.75); }
.why-card__icon { color: rgba(221,222,218,0.7); }
.why-card:hover .why-card__icon { color: var(--cream); }

/* ── ABOUT PAGE: Credentials → CREAM */
.credentials { background: var(--cream); }
.credentials h2 { color: var(--ink); }
.credentials .eyebrow { color: rgba(19,52,51,0.55); border-color: rgba(19,52,51,0.2); }
.cred-item { background: rgba(19,52,51,0.05); border-left-color: rgba(19,52,51,0.18); }
.cred-item:hover { background: rgba(19,52,51,0.1); border-color: var(--ink); }
.cred-item__org { color: rgba(19,52,51,0.6); opacity: 1; }
.cred-item__name { color: rgba(19,52,51,0.85); }

/* ── SERVICES PAGE: Odd sections → CREAM, Even → GREEN */
#transition, #executive, #team, #family, #digital { background: var(--cream); }

#transition .service-num, #team .service-num, #digital .service-num { color: rgba(19,52,51,0.07); }
.service-detail .eyebrow { color: rgba(19,52,51,0.55); border-color: rgba(19,52,51,0.2); }
.service-detail .service-quote { background: rgba(19,52,51,0.05); border-left-color: rgba(19,52,51,0.28); }
.service-detail .service-quote p { color: rgba(19,52,51,0.75); }
.service-detail .service-quote cite { color: rgba(19,52,51,0.52); }

.service-detail { border-bottom-color: rgba(19,52,51,0.08); }

/* ── CONTACT → CREAM */
.contact-section { background: var(--cream); }
.contact-info h2 { color: var(--ink); }
.contact-info p { color: rgba(19,52,51,0.82); }
.contact-detail__icon { color: var(--ink); border-color: rgba(19,52,51,0.2); }
.contact-detail__text strong { color: var(--ink); opacity: 1; }
.contact-detail__text a,
.contact-detail__text span { color: rgba(19,52,51,0.72); }
.contact-detail__text a:hover { color: var(--ink); }
.contact-form { background: rgba(19,52,51,0.05); border-color: rgba(19,52,51,0.12); }
.contact-form h3 { color: var(--ink); }
.form-group label { color: rgba(19,52,51,0.62); opacity: 1; }
.form-group input,
.form-group textarea,
.form-group select { background: rgba(255,255,255,0.7); border-color: rgba(19,52,51,0.2); color: var(--ink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(19,52,51,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--ink); }

/* ── RESOURCES → CREAM */
.resources { background: var(--cream); }
.resources .media-shorts .eyebrow {
  color: rgba(19,52,51,0.55);
  border-color: rgba(19,52,51,0.2);
}
.resources .media-shorts__title { color: var(--ink); }
/* Keep feature panels on Anhar ink (not cream-overridden) */
.media-feature__panel h2 { color: var(--cream); }
.media-feature__panel .eyebrow {
  color: rgba(221, 222, 218, 0.72);
  border-color: rgba(221, 222, 218, 0.35);
}

/* ── SERVICE NAV CARDS (contact page recap) ──── */
.svc-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.svc-nav-card {
  background: rgba(8,28,27,0.55);
  backdrop-filter: blur(6px);
  padding: 44px 28px 36px;
  text-decoration: none;
  border: 1px solid rgba(221,222,218,0.18);
  border-top: 3px solid var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.35s, border-color 0.35s;
}
.svc-nav-card:hover {
  background: rgba(8,28,27,0.75);
  border-color: rgba(221,222,218,0.35);
  border-top-color: var(--cream);
}
.svc-nav-card__num {
  font-family: var(--sans);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(221,222,218,0.35);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.35s;
}
.svc-nav-card:hover .svc-nav-card__num {
  color: rgba(221,222,218,0.6);
}
.svc-nav-card__line {
  width: 24px;
  height: 1px;
  background: rgba(221,222,218,0.35);
  margin-bottom: 16px;
  transition: width 0.35s, background 0.35s;
}
.svc-nav-card:hover .svc-nav-card__line {
  width: 40px;
  background: var(--cream);
}
.svc-nav-card__label {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.65;
  flex: 1;
  transition: opacity 0.35s;
}
.svc-nav-card:hover .svc-nav-card__label {
  opacity: 1;
}
.svc-nav-card__arrow {
  display: block;
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(221,222,218,0.5);
  transition: color 0.35s, transform 0.35s;
}
.svc-nav-card:hover .svc-nav-card__arrow {
  color: var(--cream);
  transform: translateX(6px);
}

/* ── Nav Dropdown ─────────────────────────────────────────────────── */
.nav__has-dropdown { position: relative; }

.nav__has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 20px;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav__has-dropdown:hover .nav__chevron,
.nav__has-dropdown.open .nav__chevron { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--ink);
  min-width: 222px;
  border: 1px solid rgba(255,255,255,0.09);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
  z-index: 500;
}

.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nav__dropdown-item {
  display: block;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(221,222,218,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.18s ease, padding-left 0.18s ease;
  white-space: nowrap;
}
.nav__dropdown-item:last-child { border-bottom: none; }
.nav__dropdown-item:hover { color: var(--cream); padding-left: 28px; }

/* ── Services Hub Grid ────────────────────────────────────────────── */
.svc-hub {
  background: var(--cream);
  padding: 80px 0 100px;
}

.svc-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .svc-hub__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-hub__grid { grid-template-columns: 1fr; } }

.svc-hub__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.svc-hub__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(19,52,51,0.13);
}

.svc-hub__img { aspect-ratio: 16/10; overflow: hidden; }
.svc-hub__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.svc-hub__card:hover .svc-hub__img img { transform: scale(1.04); }

.svc-hub__body {
  padding: 26px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-hub__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-hub__body p {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(19,52,51,0.62);
  flex: 1;
  margin-bottom: 22px;
}
.svc-hub__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(19,52,51,0.28);
  padding-bottom: 2px;
  transition: gap 0.3s ease, border-color 0.3s ease;
}
.svc-hub__card:hover .svc-hub__link { gap: 12px; border-color: var(--ink); }

/* ─────────────────────────────────────────────
   CLIENT REVISIONS (17 Jul 2026)
   ───────────────────────────────────────────── */

/* Contact: Area of Interest uses .custom-select (white professional UI) */

/* Contact: consent checkbox on the cream contact form */
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(19,52,51,0.72);
  cursor: pointer;
}
.contact-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
  flex-shrink: 0;
  cursor: pointer;
}
.contact-consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-consent a:hover { opacity: 0.7; }

/* Terms & Privacy: restore visible bullet points on legal lists */
.legal-content__inner ul { list-style: disc; }
.legal-content__inner ul li { padding-left: 4px; }
.legal-content__inner ul li::marker { color: rgba(19,52,51,0.5); }

/* Footer: centre the brand block (logo, tagline, socials) */
.footer__brand { text-align: center; }
.footer__brand .footer__logo { justify-content: center; }
.footer__brand p { margin-left: auto; margin-right: auto; }
.footer__socials { justify-content: center; }

/* Organizations ticker: light chips so full-colour client logos read cleanly */
.logo-ticker__track { animation-duration: 160s; }
/* Client logos: single soft tone that blends into the dark band (no cards).
   Each logo is sized inline for equal optical weight; even spacing via padding. */
.logo-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 0 30px;
}
.logo-chip img {
  /* Equal optical weight: each logo carries a per-logo height (--logo-h, set
     inline and computed from its trimmed aspect ratio) so a wide wordmark and a
     compact emblem read as the same visual size — none bigger or smaller. */
  height: var(--logo-h, 44px);
  /* Width is reserved up-front from the logo's aspect ratio (--ar) so the box
     never resizes as the image loads — this keeps the marquee loop perfectly
     aligned and glitch-free. */
  width: calc(var(--logo-h, 44px) * var(--ar, 2));
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.logo-chip:hover img { opacity: 1; transform: scale(1.05); }
@media (max-width: 640px) {
  .logo-chip { height: 64px; padding: 0 22px; }
  .logo-chip img {
    height: calc(var(--logo-h, 44px) * 0.86);
    width: calc(var(--logo-h, 44px) * 0.86 * var(--ar, 2));
    max-width: 190px;
    transform: none;
  }
  .logo-chip:hover img { transform: scale(1.05); }
}
/* Respect users who prefer reduced motion: stop the marquee, show one wrapped set */
@media (prefers-reduced-motion: reduce) {
  .logo-ticker__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; row-gap: 18px; }
  .logo-chip[aria-hidden="true"] { display: none; }
}

/* Media page: click-to-play video cards */
.vthumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #0b2322;
  aspect-ratio: 16 / 9;
}
.vthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.vthumb:hover img { transform: scale(1.04); opacity: 0.85; }
.vthumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vplay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 0;
  background: rgba(221,222,218,0.92);
  color: #133433;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.vplay svg { width: 26px; height: 26px; margin-left: 3px; }
.vthumb:hover .vplay { transform: translate(-50%, -50%) scale(1.1); background: #fff; }

/* Split media rows: thumb fills the feature height */
.media-feature .vthumb {
  aspect-ratio: auto;
  min-height: 280px;
  height: 100%;
}
.media-feature .vplay {
  width: 72px;
  height: 72px;
  background: var(--cream);
  color: var(--ink);
}
@media (max-width: 860px) {
  .media-feature .vthumb {
    /* Let the container width drive the size; height follows from 16:9.
       (min-height + aspect-ratio would force width past the screen edge.) */
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* Quick insights (Shorts) grid */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.short-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #0b2322;
  aspect-ratio: 9 / 16;
  text-decoration: none;
  border: 1px solid rgba(19,52,51,0.12);
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.short-card:hover img { transform: scale(1.05); }
.short-card__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(8,28,27,0.92), transparent);
  color: #DDDEDA;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 860px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Media page: "Stay Connected / Work With Delel" two-up grid */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 860px) {
  .stay-grid { grid-template-columns: 1fr; }
}

/* Mobile: collapse the contact-page services recap
   (base .svc-nav-grid rule appears after the shared 768px block,
   so these must live at the end of the sheet to win) */
@media (max-width: 900px) {
  .svc-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-nav-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   SERVICE PAGE TESTIMONIALS (interactive refs)
   ───────────────────────────────────────────── */
.svc-testimonials {
  --ref-serif: 'Instrument Serif', Georgia, serif;
  --ref-sans:  'DM Sans', system-ui, sans-serif;
  padding: 88px 0 96px;
  background: var(--cream);
  border-top: 1px solid rgba(19,52,51,0.08);
}
.svc-testimonials__header {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.svc-testimonials__header h2 {
  font-family: var(--ref-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Side-by-side reference buttons */
.svc-refs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 28px;
}
.svc-refs__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
  padding: 18px 18px;
  min-height: 104px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(19,52,51,0.12);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo);
}
.svc-refs__btn:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(19,52,51,0.28);
  transform: translateY(-2px);
}
.svc-refs__btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(19,52,51,0.18);
  transform: translateY(-2px);
}
.svc-refs__btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.svc-refs__name {
  font-family: var(--ref-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.svc-refs__position {
  font-family: var(--ref-sans);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(19,52,51,0.72);
}
.svc-refs__org {
  font-family: var(--ref-sans);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(19,52,51,0.48);
}
.svc-refs__btn.is-active .svc-refs__position {
  color: rgba(221,222,218,0.88);
}
.svc-refs__btn.is-active .svc-refs__org {
  color: rgba(221,222,218,0.62);
}

/* Animated quote stage — height follows active quote */
.svc-refs__stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(19,52,51,0.1);
  overflow: hidden;
  transition: height 0.45s var(--ease-out-expo);
}
.svc-refs__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  padding: 28px 32px 26px;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.45s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo),
    visibility 0s linear 0.45s;
}
.svc-refs__panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.5s var(--ease-out-expo) 0.08s,
    transform 0.6s var(--ease-out-expo) 0.08s,
    visibility 0s linear 0s;
  z-index: 1;
}
.svc-refs__panel.is-leaving {
  position: absolute;
  opacity: 0;
  transform: translateY(-14px);
  visibility: visible;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.32s var(--ease-out-expo),
    transform 0.38s var(--ease-out-expo),
    visibility 0s linear 0.38s;
}
.svc-refs__mark {
  font-family: var(--ref-serif);
  font-size: 2.6rem;
  line-height: 0.7;
  color: rgba(19,52,51,0.2);
  display: block;
  margin-bottom: 8px;
}
.svc-refs__quote {
  font-family: var(--ref-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(19,52,51,0.9);
  line-height: 1.5;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.svc-refs__author {
  font-family: var(--ref-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-style: normal;
}
.svc-refs__role {
  font-family: var(--ref-sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(19,52,51,0.55);
  display: block;
  max-width: 560px;
}
@media (max-width: 720px) {
  .svc-testimonials { padding: 64px 0 72px; }
  .svc-testimonials__header { margin-bottom: 24px; }
  .svc-refs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .svc-refs__btn {
    min-height: 92px;
    padding: 14px 14px;
  }
  .svc-refs__panel { padding: 22px 18px 20px; }
  .svc-refs__mark { font-size: 2.2rem; }
}
@media (max-width: 420px) {
  .svc-refs { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   CUSTOM SELECT (Area of Interest)
   White, professional, consistent on Win/Mac
   ───────────────────────────────────────────── */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(19,52,51,0.22);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.custom-select__trigger:hover {
  border-color: rgba(19,52,51,0.4);
}
.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px rgba(19,52,51,0.12);
}
.custom-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__value.is-placeholder {
  color: rgba(19,52,51,0.4);
}
.custom-select__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: rgba(19,52,51,0.55);
  transition: transform 0.25s var(--ease-out-expo);
}
.custom-select.is-open .custom-select__chevron {
  transform: rotate(180deg);
}
.custom-select__list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(19,52,51,0.18);
  border-radius: 2px;
  box-shadow: 0 12px 36px rgba(19,52,51,0.12);
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease-out-expo), transform 0.2s var(--ease-out-expo), visibility 0.2s;
}
.custom-select.is-open .custom-select__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.custom-select__option:hover,
.custom-select__option.is-active {
  background: rgba(19,52,51,0.06);
}
.custom-select__option.is-selected {
  background: rgba(19,52,51,0.1);
  font-weight: 500;
}
.custom-select__option[aria-disabled="true"] {
  color: rgba(19,52,51,0.35);
  cursor: default;
  pointer-events: none;
}

/* Override prior dark option styling — keep native fallback white too */
.form-group select,
.contact-form .form-group select {
  background: #ffffff !important;
  color: var(--ink) !important;
  border: 1px solid rgba(19,52,51,0.22) !important;
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23133433' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color-scheme: light;
}
.form-group select:focus,
.contact-form .form-group select:focus {
  border-color: var(--ink) !important;
}
.form-group select option,
.contact-form .form-group select option {
  background: #ffffff !important;
  color: #133433 !important;
}
