:root{
  --bg: #F7F3EB;
  --surface: #FFFDF9;
  --surface-2: #F0EBE3;
  --text: #282828;
  --text-sub: #444B51;
  --muted: #444B51;
  --border: rgba(28,28,28,.12);
  --teal: #2EC4B6;
  --teal-2: #21b4a7;
  --teal-muted: rgba(46,196,182,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-edge: 20px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scrollbar-gutter: stable; }
body{
  margin:0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(900px 600px at 85% 20%, rgba(46,196,182,.08), transparent 50%),
    radial-gradient(700px 500px at 10% 80%, rgba(46,196,182,.05), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-full{
  max-width: 100%;
  padding-left: var(--header-edge);
  padding-right: var(--header-edge);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 12px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; outline: none; box-shadow: 0 0 0 3px rgba(46,196,182,.35); }

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container{
  padding-left: var(--header-edge);
  padding-right: var(--header-edge);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-mark{
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}
.brand-logo{
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}
.brand-text{ white-space: nowrap; }
.nav{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-desktop{
  margin-left: auto;
}
.nav-link{
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
}
.nav-link:hover{
  background: rgba(28,28,28,.06);
}
.nav-link.is-active{
  color: var(--teal);
  background: transparent;
  border: 1px solid transparent;
  font-weight: 700;
}
.nav-cta{
  background: transparent;
  border: 1px solid transparent;
}
.nav-cta:hover{
  background: var(--teal-muted);
  border-color: rgba(46,196,182,.35);
}
.nav-cta.is-active{
  color: var(--teal);
  background: transparent;
  border: 1px solid transparent;
  font-weight: 700;
}

/* Hamburger: hidden on desktop */
.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(28,28,28,.05);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle:hover{
  background: rgba(28,28,28,.08);
}
.nav-toggle:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(46,196,182,.35);
}
.nav-toggle-icon{
  display: block;
  width: 24px;
  height: 24px;
}
.nav-toggle-icon svg{
  display: block;
  width: 100%;
  height: 100%;
}
.nav-toggle-close{ display: none; }
body.nav-open .nav-toggle-menu{ display: none; }
body.nav-open .nav-toggle-close{ display: block; }

/* Overlay and drawer (mobile only) */
.nav-overlay{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(28,28,28,.25);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-drawer{
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  width: min(300px, 85vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  flex-direction: column;
  align-items: stretch;
}
.nav-drawer-close{
  flex-shrink: 0;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(28,28,28,.05);
  color: var(--text);
  cursor: pointer;
}
.nav-drawer-close:hover{
  background: rgba(28,28,28,.08);
}
.nav-drawer-close:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(46,196,182,.35);
}
.nav-drawer-close svg{
  display: block;
  width: 24px;
  height: 24px;
}
.nav-drawer-inner{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer-inner .nav-link{
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
}
.nav-drawer-inner .nav-link:hover{
  background: rgba(28,28,28,.06);
}
.nav-drawer-inner .nav-cta{
  margin-top: 12px;
}

/* Typography */
h1, h2, h3{ line-height: 1.15; margin: 0 0 10px; color: #282828; }
h1{ font-family: "Montserrat", sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.6px; }
h2{ font-family: "Montserrat", sans-serif; font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.3px; }
h3{ font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 18px; letter-spacing: -0.1px; }
p{ margin: 0 0 12px; font-family: "Inter", sans-serif; font-weight: 400; color: var(--text); }
.muted{ color: var(--muted); font-family: "Inter", sans-serif; font-weight: 400; }
.small{ font-size: 13px; }
.hero h1{
  display: block;
  width: 100%;
  text-align: inherit;
  white-space: normal;
  font-size: clamp(22px, 2.5vw + 1.25rem, 48px);
}
.eyebrow{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(46,196,182,.22);
  border: 1px solid rgba(46,196,182,.38);
  color: #444B51;
  font-weight: 600;
  margin: 0 0 14px;
}
.lead{
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  max-width: 62ch;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 650;
  letter-spacing: .1px;
  cursor: pointer;
  user-select: none;
}
.btn:focus{ outline:none; box-shadow: 0 0 0 3px rgba(46,196,182,.35); }
.btn-primary{
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #fff;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-secondary{
  background: rgba(28,28,28,.06);
  border-color: var(--border);
}
.btn-secondary:hover{ background: rgba(28,28,28,.09); }
.btn-ghost{
  background: transparent;
  border-color: var(--teal);
  color: #444B51;
}
.btn-ghost:hover{ background: var(--teal-muted); }
.btn-block{ width: 100%; }

/* Sections */
.hero{
  padding: 90px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-top{
  position: relative;
  width: 100%;
  align-self: stretch;
  padding: 32px 0 48px;
  display: flex;
  justify-content: center;
}
.hero-decor{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-icon{
  position: absolute;
  width: 88px;
  height: auto;
  object-fit: contain;
}
.hero-icon-left-1{ top: 2%; left: 10%; transform: rotate(5deg); }
.hero-icon-left-2{ top: 42%; left: 5%; transform: rotate(-4deg); }
.hero-icon-left-3{ top: 82%; left: 10%; transform: rotate(-5deg); }
.hero-icon-right-1{ top: 2%; right: 10%; left: auto; transform: rotate(4deg); }
.hero-icon-right-2{ top: 42%; right: 5%; left: auto; transform: rotate(-3deg); }
.hero-icon-right-3{ top: 82%; right: 10%; left: auto; transform: rotate(5deg); }
/* Full width so hero-copy is centered in the real content area (container minus padding) */
.hero-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-copy .lead{
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  width: 100%;
  font-size: clamp(13px, 1.5vw + 12px, 16px);
}
.hero-copy .cta-row{
  justify-content: center;
  align-self: stretch;
  width: 100%;
}
.hero-copy h1{
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.hero-visual{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 24px 0 8px;
}
.hero-infographic-head{
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 8px;
}
.hero-infographic-line{
  flex: 1;
  height: 0;
  border-top: 1px solid var(--border);
}
.hero-infographic-title{
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  margin: 0;
  flex-shrink: 0;
}
.hero-infographic-flow{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}
.hero-infographic-flow .hero-card-item{
  width: 228px;
  height: 232px;
  flex: 0 0 228px;
  min-width: 0;
}
.hero-infographic-arrow{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--teal);
  opacity: 0.7;
}
.hero-infographic-arrow svg{
  width: 20px;
  height: 20px;
}
.hero-card-item{
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-card-image{
  height: 132px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(46,196,182,.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
.hero-card-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-card-item h3{ font-size: 16px; margin: 10px 12px 4px; white-space: nowrap; }
.hero-card-item p{ font-size: 14px; line-height: 1.4; margin: 0 12px 12px; }
.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.stat{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.stat:last-of-type{ border-bottom: none; margin-bottom: 10px; }
.stat-label{ color: var(--muted); font-size: 13px; }
.stat-value{ font-weight: 800; letter-spacing: -0.2px; }
.cta-row{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.trust-row{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(28,28,28,.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
}

.section{
  padding: 40px 0;
}
.section-alt{
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

/* About page */
.page-head-about .about-subtitle{ max-width: 65ch; margin-left: auto; margin-right: auto; }
.page-head-about .about-subtitle + .about-subtitle{ margin-top: 16px; }

.about-section-heading{
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--teal);
}

/* 2. Who We Are: two-column split (text left, value stack card right) */
.about-who-section{ padding: 48px 0 40px; }
.about-who-split{
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 40px 48px;
  align-items: start;
}
.about-who-left .about-section-heading{ margin-bottom: 20px; }
.about-who-text p{ margin: 0 0 14px; }
.about-who-text p:last-child{ margin-bottom: 0; }
.about-value-stack{
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-value-item{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.about-value-item:last-child{ border-bottom: none; }

/* 3. Mission & Vision: side-by-side cards */
.about-mission-vision-section{ padding: 40px 0; }
.about-mission-vision-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.about-mission-card h3,
.about-vision-card h3{
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--teal);
}
.about-mission-card p,
.about-vision-card p{ margin: 0; }

/* 4. Our Approach uses .grid-4 + .card (existing) */

/* 5. Closing: centered */
.about-closing-section{ padding: 48px 0 56px; text-align: center; }
.about-closing-container{ max-width: 560px; margin: 0 auto; }
.about-closing-headline{
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
}
.about-closing-text{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.about-closing-ctas{ justify-content: center; flex-wrap: wrap; }

/* Built by Practitioners: two columns (statement left, card right) */
.about-practitioners-section{ padding: 40px 0 56px; }
.about-practitioners-split{
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 40px 48px;
  align-items: start;
}
.about-practitioners-left .about-section-heading{ margin-bottom: 20px; }
.about-practitioners-text p{ margin: 0; }
.about-practitioners-card{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-practitioners-card-title{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}
.about-practitioners-card-desc{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.about-practitioners-link{
  margin-top: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.about-practitioners-link:hover{ color: var(--teal-2); text-decoration: none; }
.about-practitioners-link::before{ content: "→ "; }

.section-head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.section-head .muted{ margin-bottom: 0; }
.section-head-stack .muted{ margin-bottom: 0; }
.section-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grid-5{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(46,196,182,.25);
}
@keyframes cardFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
.cards-fade-in .card{
  opacity: 0;
  animation: cardFadeIn 0.8s ease forwards;
}
.cards-fade-in .card:nth-child(1){ animation-delay: 0.1s; }
.cards-fade-in .card:nth-child(2){ animation-delay: 0.25s; }
.cards-fade-in .card:nth-child(3){ animation-delay: 0.4s; }
.cards-fade-in .card:nth-child(4){ animation-delay: 0.55s; }
.card-icon{
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--teal);
}
.card-icon svg{
  display: block;
  width: 100%;
  height: 100%;
}
.card p{ color: var(--muted); margin-bottom: 0; }

/* Expertise list: stacked rows, dot + label left, bullet roles right */
.expertise-list{
  max-width: 100%;
}
.expertise-row{
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.expertise-row:first-child{ border-top: 1px solid var(--border); }
.expertise-row:last-child{ border-bottom: none; }
.expertise-row-left{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 160px;
  min-width: 160px;
}
.expertise-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.expertise-label{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
}
.expertise-row .expertise-roles{
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-left: 28%;
  min-width: 200px;
}
.expertise-row .expertise-roles li{
  position: relative;
  padding-left: 14px;
}
.expertise-row .expertise-roles li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* Our process: dual asymmetry blocks (Clients highlighted, Candidates equal footing) */
.process-dual-section{ padding: 40px 0; }
.process-dual-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.process-block{
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-block-highlight{
  background: linear-gradient(135deg, rgba(46,196,182,.06) 0%, rgba(46,196,182,.02) 100%);
  border-color: rgba(46,196,182,.3);
}
.process-block-title{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--teal);
}
.process-block-title-sm{
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text);
}
.process-block-text{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
}
.process-block .btn{ align-self: flex-start; margin-top: 4px; }

/* Steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.steps-compact{ grid-template-columns: 1fr; }
.step{
  position: relative;
  padding: 14px 14px 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.step-title{
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.step-desc{ color: var(--muted); }

/* Page header */
.page-head{
  padding: 38px 0 12px;
}
.page-head .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-head .cta-row{ justify-content: center; }
.page-head .kicker{ margin-left: auto; margin-right: auto; }
.kicker{
  color: var(--muted);
  margin-top: 8px;
  max-width: 70ch;
}
.contact-email{
  margin: 14px 0 10px;
}
.contact-email a{
  color: var(--teal);
}
.contact-email a:hover{
  text-decoration: underline;
}
.contact-social{
  margin-top: 0;
}
.contact-grid-section{
  padding: 38px 0;
}
.contact-header{
  margin-bottom: 32px;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-left{
  max-width: 100%;
}
.contact-right{
  max-width: 100%;
}
.contact-grid-single{
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}
.contact-right-full{
  max-width: 100%;
}
.contact-pills{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-pill-label{
  font-weight: 650;
  color: var(--text);
  font-size: 14px;
}
.contact-pill-value{
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
}
.contact-pill-value:hover{
  text-decoration: underline;
  color: var(--teal-2);
}

/* Forms */
.form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.form-row{ margin-bottom: 12px; }
.form-row-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}
.form-col{ display: flex; flex-direction: column; gap: 0; }
.form-col .field{ margin-bottom: 12px; }
.form-col .field:last-child{ margin-bottom: 0; }
.field{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
label{ font-weight: 650; color: var(--text); font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }
input, textarea, select{
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}
select{
  cursor: pointer;
  appearance: auto;
}
textarea{ min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(46,196,182,.25);
  border-color: rgba(46,196,182,.4);
}
.form-note{ margin-top: 10px; }
.form-note--above{ margin-top: 0; margin-bottom: 8px; }

/* Footer */
.site-footer{
  margin-top: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.site-footer .container{
  padding-left: var(--header-edge);
  padding-right: var(--header-edge);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0;
}
.footer-right{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a{ color: var(--muted); padding: 6px 8px; border-radius: 10px; }
.footer-links a:hover{ background: rgba(28,28,28,.06); color: var(--text); }
.footer-bottom{ padding: 0 0 12px; }
.brand-row{ display:flex; align-items:center; gap: 10px; }

.social-links{
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-icon{
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon .social-icon-img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: opacity .2s;
}
.social-icon:hover .social-icon-img{
  opacity: 0.75;
}
.social-icon-x{
  position: relative;
}
.social-icon-x .x-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.social-icon-x .x-dark{ display: none; }
html[data-theme="dark"] .social-icon-x .x-light{ display: none; }
html[data-theme="dark"] .social-icon-x .x-dark{ display: block; }

/* Resume Review */
.resume-review-container {
  max-width: 640px;
}
.resume-upload-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.resume-upload-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resume-upload-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.resume-upload-or {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0;
}
.resume-min-hint {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.resume-min-hint.resume-min-hint--error {
  color: #e07c7c;
}
.resume-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.resume-upload-form .field {
  margin-bottom: 16px;
}
.resume-upload-form input[type="file"] {
  padding: 8px 0;
  cursor: pointer;
}
.resume-loading {
  text-align: center;
  padding: 48px 24px;
}
.resume-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: resumeSpin 0.8s linear infinite;
}
@keyframes resumeSpin {
  to { transform: rotate(360deg); }
}
.resume-loading-text {
  font-weight: 600;
  margin: 0 0 4px;
}
.resume-error {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.resume-error-text {
  color: var(--text);
  margin: 0 0 16px;
}
.resume-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.resume-score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.resume-score-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.resume-score-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.resume-score-reason,
.resume-summary-inline {
  margin: 12px 0 0;
  color: var(--text);
}
.resume-band-inline {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.resume-upgrade-inline {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: var(--teal-muted);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--text);
}
.resume-summary-block h3,
.resume-suggestions-block h3 {
  margin-bottom: 10px;
}
.resume-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resume-suggestion-item {
  padding: 14px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.resume-suggestion-item strong {
  display: block;
  margin-bottom: 4px;
}
.resume-suggestion-category {
  font-weight: 500;
  color: var(--muted);
  font-size: 13px;
}
.resume-download-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resume-privacy-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px){
  .hero{ padding: 48px 0 56px; }
  .hero-icon{ width: 56px; }
  .hero-icon-left-1{ left: 2%; }
  .hero-icon-left-2{ left: 0; }
  .hero-icon-left-3{ left: 2%; }
  .hero-icon-right-1{ right: 2%; }
  .hero-icon-right-2{ right: 0; }
  .hero-icon-right-3{ right: 2%; }
  .hero-copy{ max-width: 85%; }
  .hero-grid{ gap: 48px; }
  .hero-infographic-head{ margin-bottom: 24px; }
  .hero-infographic-flow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 16px;
    align-items: stretch;
  }
  .hero-infographic-flow .hero-card-item{
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 200px;
  }
  .hero-infographic-flow .hero-infographic-arrow{ display: none; }
  .hero-card-image{ height: 120px; padding: 8px; }
  .hero-card-item h3{ font-size: 15px; margin: 10px 12px 4px; white-space: normal; }
  .hero-card-item p{ font-size: 13px; margin: 0 12px 12px; }
  .expertise-row{ flex-wrap: nowrap; }
  .expertise-row-left{
    width: 110px;
    min-width: 110px;
    flex-shrink: 0;
  }
  .expertise-row .expertise-roles{
    align-items: flex-start;
    margin-left: 20%;
  }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .grid-5{ grid-template-columns: 1fr; }
  .about-who-split{ grid-template-columns: 1fr; }
  .about-mission-vision-grid{ grid-template-columns: 1fr; }
  .about-practitioners-split{ grid-template-columns: 1fr; }
  .process-dual-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 30px; }
  /* Header: single row, logo left, hamburger right, nav in drawer */
  .header-inner{
    padding: 14px 0;
    gap: 12px;
  }
  .nav-desktop{ display: none !important; }
  .theme-toggle{
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(28,28,28,.05);
  }
  .theme-toggle svg{ width: 22px; height: 22px; }
  .nav-toggle{ display: flex; }
  .theme-toggle{ margin-left: auto; }
  .nav-overlay{ display: block; }
  .nav-drawer{ display: flex; }
  body.nav-open{
    overflow: hidden;
  }
  body.nav-open .nav-overlay{
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open .nav-drawer{
    transform: translateX(0);
  }
  html[data-theme="dark"] .theme-toggle{
    border-color: rgba(234,241,247,.18);
    background: rgba(234,241,247,.06);
  }
  html[data-theme="dark"] .theme-toggle:hover{
    background: rgba(234,241,247,.10);
  }
}

@media (max-width: 640px){
  .hero-icon{ width: 44px; }
  .hero-copy{ max-width: 88%; }
  .form-row-split{ grid-template-columns: 1fr; }
  .footer-right{
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
}

@media (max-width: 480px){
  .container{ padding: 0 16px; }
  .site-header .container,
  .site-footer .container{
    padding-left: var(--header-edge);
    padding-right: var(--header-edge);
  }
  .header-inner{ padding: 12px 0; }
  .nav-drawer{ width: min(280px, 88vw); padding: var(--header-edge); }
  .hero-icon{ width: 36px; }
  .hero-copy{ max-width: 90%; }
  .hero h1{ white-space: normal; }
  .social-icon{
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .social-icon .social-icon-img{
    width: 24px;
    height: 24px;
  }
}

/* Dark / Night mode */
html[data-theme="dark"]{
  --bg: #070c10;
  --surface: #0c131a;
  --surface-2: #0f1922;
  --text: #eaf1f7;
  --text-sub: rgba(234,241,247,.78);
  --muted: rgba(234,241,247,.72);
  --border: rgba(234,241,247,.14);
  --teal-muted: rgba(46,196,182,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3{
  color: var(--text);
}
html[data-theme="dark"] body{
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(46,196,182,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(46,196,182,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #05080b 80%);
}
html[data-theme="dark"] .site-header{
  background: rgba(7,12,16,.72);
  border-bottom-color: rgba(234,241,247,.10);
}
html[data-theme="dark"] .nav-link:hover{ background: rgba(234,241,247,.06); }
html[data-theme="dark"] .nav-link.is-active{ color: var(--teal); }
html[data-theme="dark"] .nav-cta:hover{ background: rgba(46,196,182,.22); border-color: rgba(46,196,182,.28); }
html[data-theme="dark"] .nav-cta.is-active{ color: var(--teal); }
html[data-theme="dark"] .nav-toggle,
html[data-theme="dark"] .nav-drawer-close{
  border-color: rgba(234,241,247,.18);
  background: rgba(234,241,247,.06);
}
html[data-theme="dark"] .nav-toggle:hover,
html[data-theme="dark"] .nav-drawer-close:hover{ background: rgba(234,241,247,.10); }
html[data-theme="dark"] .nav-overlay{ background: rgba(7,12,16,.6); }
html[data-theme="dark"] .nav-drawer-inner .nav-link:hover{ background: rgba(234,241,247,.08); }
html[data-theme="dark"] .btn-ghost{ border-color: var(--teal); color: rgba(234,241,247,.85); }
html[data-theme="dark"] .btn-ghost:hover{ background: rgba(46,196,182,.15); }
html[data-theme="dark"] .btn:focus,
html[data-theme="dark"] .skip-link:focus,
html[data-theme="dark"] .nav-toggle:focus,
html[data-theme="dark"] .nav-drawer-close:focus{ box-shadow: 0 0 0 3px rgba(46,196,182,.25); }
html[data-theme="dark"] .card:hover{ border-color: rgba(46,196,182,.18); }
html[data-theme="dark"] .expertise-row{ border-bottom-color: rgba(234,241,247,.14); }
html[data-theme="dark"] .expertise-row:first-child{ border-top-color: rgba(234,241,247,.14); }
html[data-theme="dark"] .expertise-item-header:not(.is-expanded) .expertise-item-dot{ background: var(--muted); }
html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus{
  box-shadow: 0 0 0 3px rgba(46,196,182,.22);
  border-color: rgba(46,196,182,.38);
}
html[data-theme="dark"] .footer-links a:hover{ background: rgba(234,241,247,.06); color: var(--text); }
html[data-theme="dark"] .btn-secondary{ background: rgba(234,241,247,.08); border-color: rgba(234,241,247,.14); }
html[data-theme="dark"] .btn-secondary:hover{ background: rgba(234,241,247,.10); }
html[data-theme="dark"] .pill{ background: rgba(234,241,247,.06); border-color: rgba(234,241,247,.12); color: rgba(234,241,247,.86); }
html[data-theme="dark"] .eyebrow{ background: rgba(46,196,182,.18); border-color: rgba(46,196,182,.32); color: rgba(234,241,247,.85); }
html[data-theme="dark"] .lead{ color: rgba(234,241,247,.86); }
html[data-theme="dark"] .hero-card-image{
  background: linear-gradient(180deg, rgba(46,196,182,.12) 0%, transparent 100%);
  border-bottom-color: rgba(234,241,247,.14);
}
html[data-theme="dark"] .hero-icon{
  filter: brightness(0.55) contrast(1.1);
}
html[data-theme="dark"] .section-alt{
  background: linear-gradient(180deg, rgba(234,241,247,.04), rgba(234,241,247,.02));
  border-top: 1px solid rgba(234,241,247,.08);
  border-bottom: 1px solid rgba(234,241,247,.08);
}

/* Theme toggle button */
.theme-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle:hover{ opacity: 0.8; }
.theme-toggle:focus{ outline: none; box-shadow: 0 0 0 3px rgba(46,196,182,.35); }
.theme-toggle svg{ display: block; width: 20px; height: 20px; }
.theme-toggle .theme-icon-sun{ display: none; }
.theme-toggle .theme-icon-moon{ display: block; }
html[data-theme="dark"] .theme-toggle{
  background: transparent;
  color: var(--text);
}
html[data-theme="dark"] .theme-toggle:hover{ opacity: 0.8; }
html[data-theme="dark"] .theme-toggle:focus{ box-shadow: 0 0 0 3px rgba(46,196,182,.25); }
html[data-theme="dark"] .theme-toggle .theme-icon-sun{ display: block; }
html[data-theme="dark"] .theme-toggle .theme-icon-moon{ display: none; }
