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

:root {
  --navy:        #0d1f3c;
  --navy2:       #162b52;
  --gold:        #b8952a;
  --gold2:       #d4ab3a;
  --cream:       #f7f4ef;
  --cream2:      #efeae2;
  --text:        #2c2c2c;
  --light:       #6b7280;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: #fff; line-height: 1.65; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav-logo { font-family: var(--font-serif); font-size: 1.2rem; color: #fff; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }
.nav-logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 2.4rem; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold2); }
.nav-links a.active { color: var(--gold2); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s ease; border-radius: 2px; }
nav.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Inner page header ── */
.page-header {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(184,149,42,0.08) 0%, transparent 60%);
  padding: calc(68px + 60px) 10% 60px;
}
.page-header .section-label { color: var(--gold2); margin-bottom: 0.9rem; }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: normal; color: #fff; line-height: 1.25;
  max-width: 720px; margin-top: 0.5rem;
}

/* ── Hero ── */
#home {
  min-height: 100vh;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(184,149,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(22,43,82,0.8) 0%, transparent 60%);
  display: flex; align-items: center;
  padding: 0 10%; padding-top: 68px; padding-bottom: 3rem;
}
.hero-inner { width: 100%; max-width: 1200px; }
.hero-rule { width: 52px; height: 3px; background: var(--gold); margin-bottom: 2rem; }
.hero-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  margin-bottom: 2rem;
}
.hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: normal; color: #fff; line-height: 1.2; margin-bottom: 0;
}
.hero-inner h1 em { font-style: normal; color: var(--gold2); }
.hero-image {
  position: relative; overflow: hidden;
  border: 1px solid rgba(184,149,42,0.2);
  margin-top: 2rem;
}
.hero-image img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  filter: brightness(0.75) saturate(0.8);
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.5) 0%, transparent 60%);
}

/* ── Symptoms Section ── */
#symptoms { background: #fff; padding-bottom: 3rem; }
.symptoms-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  margin-top: 2.5rem;
}
.symptoms-list { list-style: none; }
.symptoms-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--navy);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream2);
  line-height: 1.5;
}
.symptoms-list li:first-child { border-top: 1px solid var(--cream2); }
.symptoms-list li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 0.55rem;
}
.symptoms-text p { font-size: 0.97rem; color: var(--text); margin-bottom: 1rem; line-height: 1.75; }
.symptoms-text .btn-primary { margin-top: 0.5rem; }

.hero-bottom {
  border-top: 1px solid rgba(184,149,42,0.22);
  padding-top: 2.5rem;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.hero-bottom p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  max-width: 680px; flex: 1; min-width: 260px;
}
.btn-primary {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── Shared section ── */
section { padding: 90px 10%; }
.section-label {
  font-size: 1.17rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
  display: block;
}
.section-label::before { display: none; }
h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: normal; color: var(--navy); line-height: 1.25; }

/* ── Home Pillars Teaser ── */
#home-framework {
  background: var(--cream);
  padding: 80px 10%;
}
.home-framework-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.home-framework-header .section-label { justify-content: center; display: block; text-align: center; }
.home-framework-header .section-label::before { display: none; }
.home-framework-header h2 { color: var(--navy); margin-top: 0.5rem; }
.home-framework-header p { font-size: 0.97rem; color: var(--light); margin-top: 1rem; }
.teaser-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.teaser-pillar {
  background: #fff;
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.6rem;
}
.teaser-pillar-num {
  font-family: var(--font-serif);
  font-size: 1.8rem; color: var(--gold);
  opacity: 0.35; line-height: 1; margin-bottom: 0.5rem;
}
.teaser-pillar h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); font-weight: normal; margin-bottom: 0.5rem; }
.teaser-pillar p { font-size: 0.87rem; color: var(--light); line-height: 1.6; }
.home-framework-cta { text-align: center; }

/* ── Growth Problem ── */
#growth-problem { background: #fff; padding-bottom: 0; }

.gp-chapter {
  padding: 60px 0;
  border-top: 1px solid var(--cream2);
}
.gp-chapter:first-of-type { border-top: none; padding-top: 0; }

.gp-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.gp-display {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: normal; color: var(--navy);
  line-height: 1.15; margin-bottom: 1.8rem;
  max-width: 820px;
}
.gp-display em { font-style: normal; color: var(--gold); }
.gp-body { max-width: 700px; }
.gp-body p { font-size: 0.97rem; color: var(--text); margin-bottom: 0.9rem; line-height: 1.75; }
.gp-body p:last-child { margin-bottom: 0; }

/* 4 reasons grid */
.reasons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.reason {
  border-top: 3px solid var(--gold);
  padding: 1.6rem 1.8rem;
  background: var(--cream);
}
.reason h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: normal;
  color: var(--navy); margin-bottom: 0.8rem;
}
.reason ul { list-style: none; padding: 0; }
.reason ul li {
  font-size: 0.86rem; color: var(--light);
  padding: 0.28rem 0 0.28rem 1rem;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.reason ul li:last-child { border-bottom: none; }
.reason ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.78rem;
}

/* "Many leadership teams" callout */
.misdiagnosis { max-width: 820px; }
.misdiagnosis p { font-size: 0.97rem; color: var(--text); margin-bottom: 0.9rem; line-height: 1.75; }
.misdiagnosis p:last-child { margin-bottom: 0; }

/* AI Pullquote */
.ai-pullquote {
  background: var(--navy);
  margin: 2.5rem -10% 0;
  padding: 5rem 10%;
  text-align: center;
}
.ai-pullquote .quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem; line-height: 0.6;
  color: var(--gold); opacity: 0.5;
  margin-bottom: 1.5rem;
}
.ai-pullquote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: normal; font-style: normal;
  color: #fff; line-height: 1.5;
  max-width: 800px; margin: 0 auto 1.5rem;
}
.ai-pullquote blockquote em { font-style: normal; color: var(--gold2); }
.ai-pullquote .pullquote-follow {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* Section CTA strip */
.section-cta {
  margin-top: 3.5rem; padding-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
}

/* Reason card icons */
.reason-icon { width: 42px; height: 42px; margin-bottom: 1rem; color: var(--gold); }
.reason-icon svg { width: 42px; height: 42px; }

/* Framework intro text */
.framework-intro-text { max-width: 700px; margin-bottom: 2.5rem; }
.framework-intro-text p { font-size: 0.97rem; color: var(--text); line-height: 1.75; }

/* ── Approach ── */
#approach { background: var(--cream); }

.framework-use-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.framework-use-intro {
  max-width: 680px; font-size: 0.97rem; color: var(--text);
  margin-bottom: 2.5rem; line-height: 1.7;
}

/* Framework pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 4rem;
}
.pillar { background: #fff; border: 1px solid rgba(184,149,42,0.18); border-top: 3px solid var(--gold); padding: 1.8rem 1.6rem; }
.pillar-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 0.5rem; }
.pillar h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); font-weight: normal; margin-bottom: 0.3rem; }
.pillar-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.pillar p { font-size: 0.87rem; color: var(--light); line-height: 1.6; }
.pillar ul { margin-top: 0.7rem; padding-left: 1rem; list-style: disc; }
.pillar ul li { font-size: 0.84rem; color: var(--light); margin-bottom: 0.22rem; }

/* 3-step flow diagram */
.flow-diagram {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  margin: 0 0 4.5rem;
}
.flow-node { background: var(--navy); padding: 2rem 1.8rem; }
.flow-node-num {
  font-family: var(--font-serif);
  font-size: 2.4rem; color: var(--gold);
  opacity: 0.28; line-height: 1; margin-bottom: 0.8rem;
}
.flow-node h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: #fff; font-weight: normal;
  margin-bottom: 0.7rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,149,42,0.25);
}
.flow-node p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
.flow-connector {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch; color: rgba(184,149,42,0.55);
}
.flow-connector svg { width: 40px; height: 100%; min-height: 100px; }

/* Engagement type tiles */
.work-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.work-intro { max-width: 680px; font-size: 0.97rem; color: var(--text); margin-bottom: 2rem; line-height: 1.7; }
.engage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; background: var(--navy);
  border: 3px solid var(--navy);
}
.engage-box { background: #fff; padding: 2rem 2.2rem 2.4rem; }
.engage-box h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); font-weight: normal; margin-bottom: 0.75rem; }
.engage-box p { font-size: 0.87rem; color: var(--light); line-height: 1.65; }

/* ── About ── */
#about { background: #fff; }

.about-intro-block { width: 100%; margin-bottom: 3.5rem; }
.about-intro-block p { font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; line-height: 1.7; }

.about-divider { width: 100%; height: 1px; background: var(--cream2); margin-bottom: 3.5rem; }

.about-grid { display: grid; grid-template-columns: 240px 1fr; gap: 5rem; align-items: start; }
.about-photo-col { text-align: center; }
.photo-frame {
  width: 200px; height: 200px; border-radius: 4px;
  background: var(--navy);
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2.6rem;
  color: var(--gold); border: 3px solid var(--gold);
  overflow: hidden;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-col .name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); }
.about-photo-col .title-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0.3rem 0 1.1rem; }
.about-photo-col .linkedin-link { font-size: 0.8rem; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,149,42,0.4); padding-bottom: 1px; }
.about-photo-col .linkedin-link:hover { color: var(--gold2); border-color: var(--gold2); }
.about-bio p { font-size: 0.97rem; color: var(--text); margin-bottom: 1rem; }

/* ── Contact ── */
#contact { background: var(--navy); }
#contact .section-label { color: var(--gold2); }
#contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 0.55rem; font-size: 0.95rem; }
.contact-info strong { color: var(--gold2); }
form { display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(184,149,42,0.4);
  color: #fff; padding: 0.85rem 1rem;
  font-family: var(--font-sans); font-size: 0.92rem;
  outline: none; transition: border-color 0.2s;
}
form input::placeholder, form textarea::placeholder { color: rgba(255,255,255,0.38); }
form input:focus, form textarea:focus { border-color: var(--gold2); }
form textarea { resize: vertical; min-height: 130px; }
form button {
  align-self: flex-start; padding: 0.85rem 2.2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
form button:hover { background: var(--gold2); }

/* ── Footer ── */
footer {
  background: #07111f;
  padding: 2rem 10%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); margin: 0;
}
.footer-links {
  display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0;
}
.footer-links a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Responsive ── */
@media (max-width: 1024px) { }
@media (max-width: 900px) {
  .symptoms-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .teaser-pillars { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .flow-diagram { grid-template-columns: 1fr; }
  .flow-connector { height: 56px; align-self: auto; transform: rotate(90deg); }
  .flow-connector svg { width: auto; height: 56px; }
  .engage-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-col { display: flex; align-items: center; gap: 1.5rem; text-align: left; }
  .photo-frame { margin: 0; flex-shrink: 0; width: 110px; height: 110px; font-size: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  nav { padding: 0 6%; }
  #home { padding: 0 6%; padding-top: 68px; }
  section { padding: 70px 6%; }
  #home-framework { padding: 70px 6%; }
  .page-header { padding: calc(68px + 40px) 6% 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 0.5rem 5% 1.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { padding: 0.9rem 0; display: block; font-size: 0.95rem; letter-spacing: 0.1em; }
}
