/* Ascend Collective Consulting — shared site styles */

@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-Regular.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-Medium.ttf') format('truetype'); font-weight: 500; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype'); font-weight: 600; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-Bold.ttf') format('truetype'); font-weight: 700; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/Montserrat-Black.ttf') format('truetype'); font-weight: 900; }

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --copper:  #C28050;
  --copper-d:#A36840;
  --copper-t:#FBF3EC;
  --slate:   #5E7382;
  --slate-d: #3D4E5A;
  --slate-l: #8FA4B2;
  --slate-t: #EFF3F5;

  --learn:    #6EA8DB;
  --learn-d:  #4A88C0;
  --learn-t:  #EEF5FC;
  --talent:   #E8D265;
  --talent-d: #C4AE3A;
  --talent-t: #FDFAE8;
  --events:   #F2AC4A;
  --events-d: #D48C28;
  --events-t: #FEF7EC;
  --influence:#A3BE80;
  --influence-d:#7A9858;
  --influence-t:#F2F7EC;

  --white:    #FFFFFF;
  --off-white:#F8F6F3;
  --n-100:    #E8E4DF;
  --n-200:    #D4CEC7;
  --near-black:#1A1612;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--white);
  color: var(--slate-d);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
::selection { background: var(--copper); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--n-100);
}
.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header .brand img { height: 38px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
}
.site-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate-d);
  border-radius: 6px;
  transition: all .15s;
}
.site-nav a:hover { background: var(--off-white); color: var(--copper); }
.site-nav a.active { color: var(--copper); }
.site-nav .cta {
  background: var(--copper);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  margin-left: 10px;
  white-space: nowrap;
}
.site-nav .cta:hover { background: var(--copper-d); color: #fff; }

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 32px 80px;
  background: var(--white);
}
.hero .inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero .corner-tl {
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 180px 180px 0 0;
  border-color: var(--copper) transparent transparent transparent;
  z-index: 0;
}
.hero .corner-br {
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent rgba(94,115,130,0.14) transparent;
  z-index: 0;
}
.hero .ghost-mark {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--copper-t);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 28px;
}
.hero .eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.hero .eyebrow-pill span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--copper);
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--slate-d);
  max-width: 880px;
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--copper); }
.hero .subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--slate);
  max-width: 680px;
  text-wrap: pretty;
  margin-bottom: 36px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 15px 28px;
  transition: all .15s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
}
.btn-primary:hover { background: var(--copper-d); transform: translateY(-1px); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--slate-d);
  border: 1.5px solid rgba(94,115,130,0.4);
}
.btn-ghost:hover { background: var(--slate-t); border-color: var(--slate); }
.btn-pillar {
  color: #fff;
}

/* ─── SECTIONS ─── */
.section {
  padding: 96px 32px;
}
.section .inner { max-width: 1280px; margin: 0 auto; }
.section.cream { background: var(--off-white); }
.section.slate { background: var(--slate-d); color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate-d);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section.slate .section-head h2 { color: #fff; }
.section-head h2 .accent { color: var(--copper); }
.section-head p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  text-wrap: pretty;
}
.section.slate .section-head p { color: rgba(255,255,255,0.65); }

/* ─── PILLAR GRID (home) ─── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--n-100);
  border-radius: 14px;
  padding: 36px 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pillar-card .bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(94,115,130,0.14);
}
.pillar-card .pillar-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--slate-d);
  margin-bottom: 8px;
}
.pillar-card .pillar-tag {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.pillar-card p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 22px;
  flex: 1;
}
.pillar-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-top: 18px;
  border-top: 1px solid var(--n-100);
}
.pillar-card.learn .bar    { background: var(--learn); }
.pillar-card.learn .pillar-label, .pillar-card.learn .pillar-tag, .pillar-card.learn .more { color: var(--learn-d); }
.pillar-card.talent .bar   { background: var(--talent); }
.pillar-card.talent .pillar-label, .pillar-card.talent .pillar-tag, .pillar-card.talent .more { color: var(--talent-d); }
.pillar-card.events .bar   { background: var(--events); }
.pillar-card.events .pillar-label, .pillar-card.events .pillar-tag, .pillar-card.events .more { color: var(--events-d); }
.pillar-card.influence .bar{ background: var(--influence); }
.pillar-card.influence .pillar-label, .pillar-card.influence .pillar-tag, .pillar-card.influence .more { color: var(--influence-d); }

/* ─── APPROACH GRID (home) ─── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.approach-card {
  background: #fff;
  border: 1px solid var(--n-100);
  border-radius: 12px;
  padding: 32px 28px;
}
.approach-card .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--copper);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.approach-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--slate-d);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.approach-card p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

/* ─── TRACK / OFFERING GRID (pillar pages) ─── */
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.track-grid.two { grid-template-columns: repeat(2, 1fr); }
.track-grid.four { grid-template-columns: repeat(4, 1fr); }
.track-card {
  background: #fff;
  border: 1px solid var(--n-100);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.track-card .bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.track-card .track-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.track-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--slate-d);
  margin-bottom: 10px;
  line-height: 1.25;
}
.track-card p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

/* ─── CONTACT ─── */
.contact-box {
  background: var(--slate-d);
  color: #fff;
  border-radius: 16px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.contact-box .corner-tl {
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 110px 110px 0 0;
  border-color: var(--copper) transparent transparent transparent;
}
.contact-box .ghost {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.contact-box .inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.contact-box .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.contact-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.contact-box p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.6);
  padding: 64px 32px 32px;
}
.site-footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer .brand img { height: 28px; opacity: 0.9; margin-bottom: 18px; }
.site-footer .tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.site-footer .address {
  font-size: 13px;
  line-height: 1.65;
}
.site-footer .col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer .col a {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color .15s;
}
.site-footer .col a:hover { color: var(--copper); }
.site-footer .copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* ─── PILLAR HERO (pillar pages) ─── */
.pillar-hero {
  padding: 88px 32px 72px;
  position: relative;
  overflow: hidden;
}
.pillar-hero.learn { background: linear-gradient(180deg, var(--learn-t) 0%, #fff 80%); }
.pillar-hero.talent { background: linear-gradient(180deg, var(--talent-t) 0%, #fff 80%); }
.pillar-hero.events { background: linear-gradient(180deg, var(--events-t) 0%, #fff 80%); }
.pillar-hero.influence { background: linear-gradient(180deg, var(--influence-t) 0%, #fff 80%); }
.pillar-hero .inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pillar-hero .corner-tl {
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 140px 140px 0 0;
}
.pillar-hero.learn .corner-tl { border-color: var(--learn) transparent transparent transparent; }
.pillar-hero.talent .corner-tl { border-color: var(--talent) transparent transparent transparent; }
.pillar-hero.events .corner-tl { border-color: var(--events) transparent transparent transparent; }
.pillar-hero.influence .corner-tl { border-color: var(--influence) transparent transparent transparent; }
.pillar-hero .pillar-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-hero.learn .pillar-eyebrow { color: var(--learn-d); }
.pillar-hero.talent .pillar-eyebrow { color: var(--talent-d); }
.pillar-hero.events .pillar-eyebrow { color: var(--events-d); }
.pillar-hero.influence .pillar-eyebrow { color: var(--influence-d); }
.pillar-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--slate-d);
  margin-bottom: 20px;
}
.pillar-hero .pillar-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-d);
  margin-bottom: 28px;
  max-width: 720px;
  text-wrap: balance;
}
.pillar-hero .pillar-lead {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--slate);
  max-width: 760px;
  text-wrap: pretty;
}

/* ─── PILLAR ROW (alternating sections) ─── */
.pillar-row {
  padding: 88px 32px;
  background: #fff;
}
.pillar-row.alt { background: var(--off-white); }
.pillar-row .inner { max-width: 1280px; margin: 0 auto; }
.pillar-row .row-head { max-width: 760px; margin-bottom: 44px; }
.pillar-row .row-head .row-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-row.learn-track .row-eyebrow { color: var(--learn-d); }
.pillar-row.talent-track .row-eyebrow { color: var(--talent-d); }
.pillar-row.events-track .row-eyebrow { color: var(--events-d); }
.pillar-row.influence-track .row-eyebrow { color: var(--influence-d); }
.pillar-row .row-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-d);
  margin-bottom: 14px;
}
.pillar-row .row-head p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate);
  text-wrap: pretty;
}

/* ─── PILLAR PROGRAMS PILL (Learning) ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--n-100);
  border-radius: 12px;
  padding: 28px 26px;
  position: relative;
}
.program-card .program-tag {
  display: inline-block;
  background: var(--learn-t);
  color: var(--learn-d);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pillar-row.alt .program-card { background: #fff; }
.program-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  color: var(--slate-d);
  margin-bottom: 10px;
  line-height: 1.3;
}
.program-card p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}

/* responsive */
@media (max-width: 960px) {
  .pillar-grid, .approach-grid, .track-grid, .track-grid.four, .programs-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-footer .inner { grid-template-columns: 1fr; }
}
