
:root{
  --navy:#061827;
  --navy2:#082238;
  --gold:#c9942d;
  --gold2:#d7ad62;
  --ivory:#fbf8f1;
  --paper:#fffdf8;
  --line:#dfd0b8;
  --muted:#66727d;
  --ink:#101820;
  --shadow:0 22px 52px rgba(6,24,39,.13);
  --serif:"Cormorant Garamond",Georgia,serif;
  --sans:"Inter",Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
}
.container{width:min(1180px,calc(100% - 72px));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,253,248,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.site-nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:min(1180px,calc(100% - 72px));
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--navy);
  min-width:220px;
}
.brand img{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
}
.brand b{
  display:block;
  font-family:var(--serif);
  font-size:31px;
  letter-spacing:.105em;
  line-height:.85;
}
.brand small{
  display:block;
  font-size:10px;
  color:#617080;
  letter-spacing:.02em;
  margin-top:6px;
}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  position:relative;
  color:var(--navy);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.nav-links a.active:after,
.nav-links a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-12px;
  height:2px;
  background:var(--gold);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  white-space:nowrap;
  transition:transform .2s ease,box-shadow .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-navy{background:var(--navy);color:white;box-shadow:0 14px 32px rgba(6,24,39,.18)}
.btn-gold{background:var(--gold);color:white;box-shadow:0 14px 28px rgba(201,148,45,.22)}
.btn-outline{border:1px solid var(--gold);color:#8a5914;background:rgba(255,253,248,.72)}
.line-icon{display:inline-flex;color:var(--gold)}
.line-icon svg{width:34px;height:34px;stroke:currentColor;fill:none;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.eyebrow{
  display:inline-flex;
  gap:14px;
  align-items:center;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#a8641c;
  font-weight:900;
  font-size:11px;
}
.eyebrow:before{
  content:"";
  display:block;
  width:32px;
  height:1px;
  background:var(--gold);
}
.center{text-align:center}
.centered{display:flex;justify-content:center}
.centered:before{display:none}
h1,h2,h3{
  font-family:var(--serif);
  font-weight:700;
  letter-spacing:-.018em;
  color:var(--navy);
  margin:0;
}
h1{
  font-size:clamp(52px,5.1vw,72px);
  line-height:.98;
}
h1 em,h2 em{font-style:normal;color:var(--gold)}
h2{
  font-size:clamp(34px,3.25vw,48px);
  line-height:1.06;
}
h3{font-size:23px;line-height:1.12}

/* Homepage hero repair: image-led, controlled typography */
.hero-home{
  position:relative;
  min-height:560px;
  overflow:hidden;
  background:var(--ivory);
  border-bottom:1px solid var(--line);
}
.hero-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  display:block;
}
.hero-fade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(251,248,241,1) 0%,
      rgba(251,248,241,.99) 29%,
      rgba(251,248,241,.82) 47%,
      rgba(251,248,241,.28) 69%,
      rgba(251,248,241,.03) 100%);
}
.hero-inner{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
}
.hero-copy{
  max-width:480px;
  padding:34px 0 30px;
}
.hero-copy h1{margin-top:18px}
.hero-copy p{
  font-size:18px;
  color:#1f2b35;
  margin:24px 0 26px;
  max-width:430px;
  line-height:1.52;
}
.trust-strip{background:linear-gradient(90deg,#061827,#082238);color:white}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.trust-grid div{
  min-height:116px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px;
  border-right:1px solid rgba(255,255,255,.17);
}
.trust-grid div:last-child{border-right:0}
.trust-grid .line-icon svg{width:38px;height:38px}
.trust-grid p{
  font-size:15px;
  font-weight:650;
  line-height:1.35;
  margin:10px 0 0;
  color:white;
}
.zones-section{padding:68px 0 58px}
.zones-section h2{
  font-size:clamp(32px,3.1vw,42px);
  line-height:1.08;
  margin:16px auto 38px;
  max-width:820px;
}
.zone-row{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0;
}
.zone-row div{
  padding:0 16px;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.zone-row div:last-child{border-right:0}
.zone-row .line-icon svg{width:34px;height:34px}
.zone-row span{
  font-weight:800;
  font-size:12.5px;
  line-height:1.25;
  color:var(--navy);
}
.roadmap-showcase{
  padding:66px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#fffdf8,#fbf8f1);
}
.roadmap-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:66px;
  align-items:center;
}
.device-wrap{
  position:relative;
  min-height:320px;
}
.laptop{
  position:absolute;
  left:0;
  bottom:0;
  width:540px;
  max-width:88%;
  filter:drop-shadow(0 22px 40px rgba(6,24,39,.17));
}
.screen{
  background:#101820;
  border:12px solid #111820;
  border-radius:11px 11px 4px 4px;
  aspect-ratio:16/10;
  overflow:hidden;
}
.screen img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
}
.screen.image-missing:before{
  content:"Executive Transformation Roadmap preview";
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  color:white;
  font-family:var(--serif);
  font-size:25px;
  text-align:center;
  padding:28px;
}
.base{
  height:22px;
  background:linear-gradient(180deg,#d8d8d8,#aeb3b7);
  border-radius:0 0 30px 30px;
  margin:0 26px;
}
.book-card{
  position:absolute;
  right:10px;
  bottom:34px;
  width:170px;
  height:230px;
  background:linear-gradient(135deg,#061827,#0d2d47);
  border:1px solid rgba(201,148,45,.55);
  box-shadow:0 22px 44px rgba(6,24,39,.23);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  transform:rotate(2deg);
}
.book-card span{
  font-family:var(--serif);
  font-size:22px;
  color:white;
  line-height:1.16;
}
.book-card small{
  color:var(--gold);
  font-family:var(--serif);
  font-size:21px;
  margin-top:22px;
}
.roadmap-copy p{
  font-size:17px;
  color:#293540;
  margin:22px 0 26px;
}
.offers-section{padding:64px 0}
.offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-top:30px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.offer-grid article{
  padding:32px 32px;
  border-right:1px solid var(--line);
}
.offer-grid article:last-child{border-right:0}
.offer-grid .line-icon{
  background:var(--navy);
  border-radius:50%;
  width:62px;
  height:62px;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.offer-grid .line-icon svg{width:31px;height:31px}
.offer-grid h3{
  font-family:var(--sans);
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.offer-grid p{font-size:14.5px;color:#2d3942}
.offer-grid a{color:#a8641c;font-weight:900;text-decoration:none}
.leadership-section{
  padding:70px 0;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,#fffdf8,#fbf8f1);
}
.leadership-grid{
  display:grid;
  grid-template-columns:.95fr repeat(3,1fr);
  gap:40px;
  align-items:end;
}
.leader-intro p{color:#2d3942;margin:18px 0 22px}
.leader-card{text-align:center}
.leader-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 16px 38px rgba(6,24,39,.11);
  display:block;
  margin-bottom:15px;
}
.leader-card h3{font-size:19px}
.leader-card p{font-size:13px;margin:4px 0 0;color:#34434f}
.teaser-section{
  padding:68px 0;
  background:var(--ivory);
  border-top:1px solid var(--line);
}
.testimonial-teasers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:30px;
}
.testimonial-teasers article{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:8px;
  padding:26px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  box-shadow:0 16px 38px rgba(6,24,39,.04);
}
.testimonial-teasers b{
  font-family:var(--serif);
  font-size:40px;
  color:var(--gold);
  line-height:.7;
}
.testimonial-teasers p{
  font-family:var(--serif);
  font-size:20px;
  line-height:1.35;
  margin:14px 0 22px;
  flex:1;
}
.testimonial-teasers strong{font-size:12px;text-transform:uppercase;letter-spacing:.08em}
.testimonial-teasers span{font-size:12px;color:var(--muted);margin-top:3px}
.more-results{margin-top:30px}
.final-cta{
  background:linear-gradient(90deg,#061827,#092741);
  color:white;
  padding:44px 0;
}
.final-grid{
  display:grid;
  grid-template-columns:116px 1fr auto;
  gap:40px;
  align-items:center;
}
.final-grid img{
  width:96px;
  height:96px;
  object-fit:contain;
  filter:drop-shadow(0 0 20px rgba(201,148,45,.2));
}
.final-cta h2{
  font-size:40px;
  color:white;
}
.final-cta h2 em{color:var(--gold)}
.final-cta p{margin:7px 0 0;color:rgba(255,255,255,.8)}
.site-footer{background:var(--paper);border-top:1px solid var(--line)}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:20px 0;
}
.footer-grid span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
  color:var(--navy);
  border-right:1px solid var(--line);
}
.footer-grid span:last-child{border-right:0}
.footer-grid .line-icon svg{width:28px;height:28px}
@media(max-width:1020px){
  .nav-links,.nav-cta{display:none}
  .hero-home,.hero-inner{min-height:570px}
  .trust-grid,.offer-grid,.testimonial-teasers{grid-template-columns:1fr 1fr}
  .zone-row{grid-template-columns:repeat(2,1fr);gap:30px}
  .zone-row div{border-right:0}
  .roadmap-grid,.leadership-grid,.final-grid{grid-template-columns:1fr}
  .device-wrap{min-height:420px}
  .leader-intro{text-align:center}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-grid span{border:0}
  .brand b{font-size:29px}
}
@media(max-width:680px){
  .container,.site-nav{width:min(100% - 34px,1180px)}
  .site-nav{height:74px}
  .brand img{width:40px;height:40px}
  .brand b{font-size:24px}
  .brand small{font-size:9px}
  .hero-art{object-position:center}
  .hero-fade{background:linear-gradient(90deg,rgba(251,248,241,.99),rgba(251,248,241,.78))}
  .hero-home,.hero-inner{min-height:520px}
  .hero-copy{max-width:100%}
  h1{font-size:46px}
  .hero-copy p{font-size:16px}
  .trust-grid,.offer-grid,.testimonial-teasers,.footer-grid{grid-template-columns:1fr}
  .trust-grid div,.offer-grid article,.footer-grid span{border-right:0;border-bottom:1px solid rgba(223,208,184,.4)}
  .zones-section h2{font-size:32px}
  .zone-row{grid-template-columns:1fr 1fr}
  .roadmap-showcase{padding:56px 0}
  .device-wrap{min-height:340px}
  .book-card{display:none}
  .laptop{max-width:100%;width:100%}
  .leadership-section,.teaser-section,.offers-section,.zones-section{padding:56px 0}
  .final-grid{text-align:center}
  .final-grid img{margin:auto}
  .final-cta h2{font-size:31px}
  .btn{width:100%}
}
