/* =========================================================
   Holistic Leadership Solutions - Brand Aligned (Navy + Cyan)
   Colors drawn from the woven hexagon logo:
     - Midnight navy background
     - Deep cobalt blue
     - Bright sky/cyan accent (replaces gold)
   ========================================================= */

:root {
  --navy:          #0B1F4F;       /* primary deep */
  --navy-dark:     #06143A;
  --navy-deep:     #040D2A;
  --blue:          #1E40AF;
  --blue-bright:   #2563EB;
  --cyan:          #38BDF8;       /* primary accent (was gold) */
  --cyan-deep:     #0EA5E9;
  --cyan-soft:     #BAE6FD;
  --cloud:         #F4F7FC;       /* page bg (was cream) */
  --cloud-soft:    #E8EFFA;
  --ink:           #0F172A;
  --ink-soft:      #1E293B;
  --muted:         #64748B;
  --muted-light:   #94A3B8;
  --border:        #DCE5F3;
  --white:         #ffffff;

  --shadow-sm:  0 1px 2px rgba(11,31,79,.06), 0 1px 3px rgba(11,31,79,.04);
  --shadow-md:  0 4px 16px rgba(11,31,79,.10), 0 2px 4px rgba(11,31,79,.04);
  --shadow-lg:  0 20px 50px rgba(11,31,79,.14), 0 8px 18px rgba(11,31,79,.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1240px;
  --container-narrow: 920px;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p { color: var(--ink-soft); }

.container       { width: 100%; max-width: var(--container);        margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  background: var(--navy-deep);
  color: var(--cloud);
  font-size: .82rem;
  letter-spacing: .03em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px;
}
.topbar a { color: var(--cloud); opacity: .82; }
.topbar a:hover { opacity: 1; color: var(--cyan); }
.topbar-contact span { margin-right: 22px; }
.topbar-social a { margin-left: 14px; }

/* =========================================================
   Navigation - simplified, more breathing room
   ========================================================= */
.nav {
  background: rgba(244,247,252,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 82px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-serif);
  font-weight: 600; font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 auto 0 12px;   /* push to center-right */
}
.nav-links a {
  padding: 10px 16px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--cyan); border-radius: 2px;
}

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a .caret {
  width: 10px; height: 10px;
  transition: transform .2s var(--ease);
}
.nav-drop:hover > a .caret,
.nav-drop:focus-within > a .caret { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s var(--ease);
  z-index: 60;
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-panel li { margin: 0; }
.nav-drop-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--ink-soft);
}
.nav-drop-panel a:hover { background: var(--cloud-soft); color: var(--navy); }
.nav-drop-panel a strong {
  display: block; color: var(--navy); font-weight: 600;
  margin-bottom: 2px;
}
.nav-drop-panel a span {
  display: block; font-size: .8rem; color: var(--muted);
}

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: .95rem; font-weight: 500;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cloud);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-cyan {
  background: var(--cyan);
  color: var(--navy-dark);
  font-weight: 600;
}
.btn-cyan:hover {
  background: var(--cyan-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cloud);
}
.btn-light {
  background: var(--white);
  color: var(--navy-dark);
}
.btn-light:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 85% 20%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(30,64,175,.10), transparent 50%),
    linear-gradient(180deg, var(--cloud) 0%, var(--cloud-soft) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(30,64,175,.08);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56,189,248,.25);
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  color: var(--blue);
  font-style: italic;
  font-family: var(--font-serif);
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-stats {
  margin-top: 56px;
  display: flex; gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--navy);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 6px;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-card::before {
  content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  border-radius: 50%;
  opacity: .55;
  z-index: -1;
}
.hero-card .photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-card .photo img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  display: block;
}
.hero-card .photo .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--navy);
  color: var(--cloud);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero-card .credentials {
  margin-top: 18px;
  text-align: center;
}
.hero-card .credentials strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
}
.hero-card .credentials span {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 80% 30%, rgba(56,189,248,.16), transparent 60%),
    linear-gradient(180deg, var(--cloud) 0%, var(--cloud-soft) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero h1 { max-width: 820px; margin: 0 auto 18px; }
.page-hero p {
  max-width: 680px; margin: 0 auto;
  font-size: 1.1rem; color: var(--muted);
}

/* =========================================================
   Sections
   ========================================================= */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.dark {
  background: var(--navy-dark);
  color: var(--cloud);
}
section.dark h2, section.dark h3 { color: var(--cloud); }
section.dark p { color: rgba(244,247,252,.82); }

.section-eyebrow {
  display: block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; }
.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head-center .section-lead { margin: 18px auto 0; }

/* =========================================================
   Trust bar
   ========================================================= */
.trust {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 24px;
  align-items: center;
  justify-items: center;
}
.trust-grid .client {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  opacity: .8;
  transition: all .25s var(--ease);
}
.trust-grid .client:hover { color: var(--navy); opacity: 1; }

/* =========================================================
   Principles 4-up
   ========================================================= */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.principle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all .35s var(--ease);
}
.principle:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}
.principle .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-weight: 700;
}
.principle h3 {
  margin: 14px 0 12px;
  font-size: 1.25rem;
  color: var(--navy);
}
.principle p { font-size: .96rem; }

/* =========================================================
   Service tier cards
   ========================================================= */
.tier {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.tier:last-child { border-bottom: none; }
.tier:nth-child(even) .tier-media { order: 2; }
.tier-media {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--cloud);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tier-media::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(56,189,248,.45), transparent 70%);
  border-radius: 50%;
}
.tier-media .tier-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--cyan);
  opacity: .85;
  line-height: 1;
}
.tier-media h3 {
  color: var(--cloud);
  font-size: 1.9rem;
  position: relative; z-index: 2;
}
.tier-media .tier-sub {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--cyan-soft);
  font-size: 1.1rem;
  margin-top: 12px;
}
.tier-content h4 {
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 20px 0 8px;
}
.tier-content h4:first-child { margin-top: 0; }
.tier-content ul { padding-left: 0; list-style: none; }
.tier-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.tier-content li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 2px;
  background: var(--cyan);
}

/* =========================================================
   Features 3-up
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: all .35s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-soft), var(--cloud-soft));
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

/* =========================================================
   Split
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,79,.35));
}
.split-image-wide {
  aspect-ratio: 16/11;
}

/* =========================================================
   Testimonial - improved contrast
   ========================================================= */
.testimonial {
  background:
    radial-gradient(circle at 80% 10%, rgba(56,189,248,.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(30,64,175,.20), transparent 60%),
    var(--navy-dark);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(186,230,253,.18);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  backdrop-filter: blur(8px);
  position: relative;
}
.testimonial-card::before {
  content: "“"; position: absolute;
  top: -50px; left: 32px;
  font-family: var(--font-serif);
  font-size: 14rem;
  color: var(--cyan);
  opacity: .35;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 36px;
  color: #ffffff;          /* maximum contrast */
  position: relative;
  z-index: 1;
}
.testimonial-quote .highlight {
  background: linear-gradient(120deg,
    rgba(56,189,248,.0) 0%,
    rgba(56,189,248,.28) 35%,
    rgba(56,189,248,.28) 65%,
    rgba(56,189,248,.0) 100%);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
}
.testimonial-author {
  display: flex; align-items: center; gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(186,230,253,.18);
}
.testimonial-author .avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .01em;
}
.testimonial-author span {
  font-size: .92rem;
  color: var(--cyan-soft);
}

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--cloud);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: .35;
}
.cta-strip h2 {
  color: var(--cloud);
  font-size: 2rem;
  margin-bottom: 8px;
  position: relative; z-index: 2;
}
.cta-strip p {
  color: rgba(244,247,252,.88);
  position: relative; z-index: 2;
}
.cta-strip .actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 2;
  justify-content: flex-end;
}

/* =========================================================
   About / bio
   ========================================================= */
.bio {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.bio-photo { position: sticky; top: 110px; }
.bio-photo .photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}
.bio-photo .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo .photo-frame::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  border-radius: 50%;
  z-index: -1;
  opacity: .8;
}
.bio-photo .name-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.bio-photo .name-card strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  display: block;
}
.bio-photo .name-card span {
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .04em;
  margin-top: 4px;
  display: block;
}
.bio-photo .credentials-list {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.bio-photo .credentials-list span {
  font-size: .72rem;
  background: var(--cloud-soft);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.bio-text h2 { margin-bottom: 14px; }
.bio-text .lead {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.45;
}
.bio-text p { margin-bottom: 18px; }
.bio-text h3 {
  margin: 36px 0 14px;
  color: var(--navy);
  font-size: 1.35rem;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info .info-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info .label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info .value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
}
.contact-info .value a { color: var(--navy); }
.contact-info .value a:hover { color: var(--cyan-deep); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(56,189,248,.15);
}
.field textarea { resize: vertical; min-height: 140px; }

/* =========================================================
   Programs / workshops
   ========================================================= */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.program {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.program:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.program .program-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.program .badge {
  font-size: .72rem;
  background: var(--cloud-soft);
  color: var(--navy);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.program h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.program p { flex: 1; margin-bottom: 20px; }
.program .program-foot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.program .program-foot small {
  color: var(--muted);
  font-size: .85rem;
}
.program .program-foot a {
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}
.program .program-foot a:hover { color: var(--cyan-deep); }

/* =========================================================
   Assessments
   ========================================================= */
.assessment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.assessment {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.assessment:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.assessment .assessment-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--cloud-soft);
  position: absolute;
  top: 14px; right: 22px;
  line-height: 1;
}
.assessment h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.assessment .meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
  margin: 16px 0 18px;
}
.assessment .meta span strong { color: var(--navy); font-weight: 700; }

/* =========================================================
   Metric grid
   ========================================================= */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.metric .big {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-weight: 700;
}
.metric .lbl {
  margin-top: 8px;
  font-size: .9rem;
  color: var(--muted);
}

/* =========================================================
   Image gallery for entrepreneurs
   ========================================================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.who-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transition: all .35s var(--ease);
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.who-card img { width: 100%; height: 100%; object-fit: cover; }
.who-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,15,46,.85));
}
.who-card .caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: #fff;
  z-index: 1;
}
.who-card .caption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.who-card .caption span {
  font-size: .85rem;
  color: var(--cyan-soft);
}

/* =========================================================
   Hamster Wheel Banner (home page)
   ========================================================= */
.wheel-banner {
  background:
    radial-gradient(circle at 20% 30%, rgba(56,189,248,.22), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(30,64,175,.30), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.wheel-banner-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
/* Layout: square-ish container that holds wheel up top, stand below.
   Stand is built with CSS pseudo-elements so it never rotates with the wheel. */
.wheel-art {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}
/* Static stand: vertical post anchored at wheel hub, horizontal base at floor */
.wheel-stand {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;     /* furthest back */
}
.wheel-stand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;             /* anchors at wheel hub center */
  bottom: 7%;           /* meets top of the base bar */
  width: 10px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #1E40AF 0%, #06143A 100%);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.wheel-stand::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  bottom: 3%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1E40AF 0%, #06143A 100%);
  box-shadow: 0 8px 22px rgba(56,189,248,.18);
}

/* The wheel SVG — rotates around the (stationary) hamster.
   Sits IN FRONT of the hamster so the cage bars actually sweep over the
   hamster like a real running wheel. Bars are semi-transparent so the
   hamster is still readable. */
.wheel-spin {
  position: absolute;
  top: 2%; left: 50%;
  width: 80%;
  aspect-ratio: 1 / 1;
  animation: wheel-spin 6s linear infinite;
  transform-origin: 50% 50%;
  z-index: 3;
  pointer-events: none;
}
.wheel-spin img { width: 100%; height: 100%; display: block; }
@keyframes wheel-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

/* The illustrated side-profile hamster runs INSIDE the wheel cage.
   The hamster's legs animate via SMIL inside the SVG itself; the wrapper
   adds the up-down body bob for that "weight shifting onto each leg"
   feeling. Sized smaller than the wheel so the proportions read right. */
.wheel-hamster {
  position: absolute;
  width: 48%;
  left: 50%;
  top: 36%;
  transform: translateX(-50%);
  animation: hamster-run 0.36s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.35));
  z-index: 2;
  pointer-events: none;
}
/* Pulsing warm glow halo behind the hamster (the "mascot has aura" effect) */
.wheel-aura {
  position: absolute;
  left: 50%; top: 50%;
  width: 45%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(56,189,248,.55) 0%,
    rgba(56,189,248,.22) 35%,
    transparent 70%);
  animation: aura-pulse 1.4s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}
@keyframes aura-pulse {
  from { transform: translate(-50%,-50%) scale(.85); opacity: .55; }
  to   { transform: translate(-50%,-50%) scale(1.05); opacity: .95; }
}
/* Motion speed-lines on either side of the wheel */
.wheel-streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.wheel-streaks::before,
.wheel-streaks::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 16%; height: 22%;
  background:
    repeating-linear-gradient(90deg,
      rgba(186,230,253,.65) 0 2px,
      transparent 2px 14px);
  border-radius: 4px;
  filter: blur(1px);
  animation: streak-dash 0.4s linear infinite;
}
.wheel-streaks::before { left: -4%;  transform: scaleX(-1); }
.wheel-streaks::after  { right: -4%; }
@keyframes streak-dash {
  from { background-position: 0 0;     opacity: .9; }
  to   { background-position: 30px 0;  opacity: .4; }
}
@keyframes hamster-run {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-5px); }
}
/* Tiny dust puff cues below the hamster for the "running" feel */
.wheel-hamster::after {
  content: "";
}
.wheel-art .dust {
  position: absolute;
  left: 50%;
  top: 60%;
  width: 22%;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(186,230,253,.45), rgba(186,230,253,0) 70%);
  transform: translateX(-50%);
  z-index: 2;
  animation: dust-pulse 0.5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes dust-pulse {
  from { opacity: .35; width: 18%; }
  to   { opacity: .85; width: 28%; }
}

/* =========================================================
   ROI Calculator
   ========================================================= */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.calc-form, .calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.calc-form .field { margin-bottom: 24px; }
.calc-form label {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.calc-form input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--cloud-soft);
  border-radius: 999px;
  outline: none;
  margin: 8px 0 6px;
}
.calc-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(11,31,79,.25);
  cursor: pointer;
}
.calc-form input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(11,31,79,.25);
  cursor: pointer;
}
.range-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
}

.calc-results { display: flex; flex-direction: column; gap: 20px; }
.calc-eyebrow {
  font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.calc-big {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.calc-sub { color: var(--muted); margin-top: 4px; }
.calc-bars { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 100px;
  gap: 12px;
  align-items: center;
  font-size: .9rem;
}
.bar-lbl { color: var(--muted); font-weight: 600; }
.bar-track { background: var(--cloud-soft); border-radius: 999px; height: 12px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width .3s ease; }
.bar-turn { background: linear-gradient(90deg, #EF4444, #F59E0B); }
.bar-eng  { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.bar-val { text-align: right; font-weight: 700; color: var(--ink); }

.calc-card-good {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.calc-card-good::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: .3;
}
.calc-card-good .calc-big {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  -webkit-background-clip: text;
  background-clip: text;
}
.mini-num {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--cyan); font-weight: 700;
}
.mini-lbl {
  font-size: .78rem; color: var(--cyan-soft);
  margin-top: 2px;
}

/* =========================================================
   Game
   ========================================================= */
.game-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.game-hud {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hud-block {
  flex: 1;
  background: var(--cloud-soft);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}
.hud-lbl {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.hud-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
}
#gameCanvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  background: var(--cloud);
  border: 1px solid var(--border);
  cursor: pointer;
  touch-action: manipulation;
}
.game-help {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: .88rem;
}
.game-help kbd {
  background: var(--cloud-soft);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(244,247,252,.85);
  padding: 72px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,247,252,.12);
}
.footer h4 {
  color: var(--cloud);
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(244,247,252,.7);
  font-size: .92rem;
  margin: 14px 0 22px;
  max-width: 320px;
}
.footer-brand .brand { color: var(--cloud); }
.footer-brand .brand small { color: var(--cyan-soft); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(244,247,252,.7);
  font-size: .92rem;
}
.footer ul a:hover { color: var(--cyan); }
.footer-social {
  display: flex; gap: 12px; margin-top: 18px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(244,247,252,.08);
  display: grid; place-items: center;
  color: var(--cloud);
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: var(--cyan);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: .82rem;
  color: rgba(244,247,252,.55);
}

/* =========================================================
   Mobile - hamburger triggers earlier so nav never crowds
   ========================================================= */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 82px; left: 0; right: 0;
    background: var(--cloud); padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-md);
    margin: 0;
  }
  .nav-links.open .nav-drop-panel {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    background: transparent; padding-left: 16px;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .split, .bio, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo { position: static; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .tier { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .tier:nth-child(even) .tier-media { order: 0; }
  .program-grid, .assessment-list { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cta-strip { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; }
  .cta-strip .actions { justify-content: center; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { padding: 40px 32px; }
  .wheel-banner-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .wheel-art { max-width: 280px; }
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .bar-row { grid-template-columns: 90px 1fr 80px; font-size: .85rem; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-stats { flex-wrap: wrap; gap: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .topbar .container { font-size: .72rem; height: auto; padding: 8px 16px; flex-direction: column; gap: 4px;}
  .topbar-contact span { margin-right: 12px; }
  .contact-form { padding: 28px 22px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .testimonial-card::before { font-size: 8rem; top: -32px; }
}
