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

:root {
  color-scheme: dark;
  --bg:      #0A0D04;
  --s1:      #0F1108;
  --s2:      #141408;
  --white:   #F7FFF2;
  --mid:     #808080;
  --dim:     #333333;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --accent: #BFF53D;
  --font:    'Montserrat', Arial, sans-serif;
  --nav-h:   60px;
  --px:      min(5vw, 72px);
}

html {
  scroll-behavior: smooth;
  background: #0A0D04;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  height: var(--nav-h);
  background: rgba(10,13,4,0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { cursor: pointer; display: flex; align-items: center; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 16px;
  transition: color 0.2s;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.nav-links a:hover, .nav-links a:active { color: var(--white); }

.nav-cta {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  padding: 10px 18px !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.nav-cta:hover { border-color: rgba(255,255,255,0.4) !important; }

.nav-mobile-cta {
  display: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 14px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.nav-ham {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--mid);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-drawer {
  display: flex;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: auto;
  background: rgba(10,13,4,0.94);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border2);
  z-index: 300;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.22s ease-out,
              transform 0.3s cubic-bezier(0.22,1,0.36,1),
              visibility 0s linear 0.3s;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-drawer a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 18px var(--px);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: #0A0D04;
  -webkit-tap-highlight-color: transparent;
  display: block;
  width: 100%;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a:active { color: var(--white); }

/* BUTTONS */
.btn-primary {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0A0D04;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); }

.btn-secondary {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  border: 1px solid var(--border2);
  padding: 13px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font);
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

/* HERO */
.hero {
  /* Capped so the hero does not become a 2400px void on a 4K screen or when
     the browser is zoomed out. Borders stay full-bleed; only the grid
     columns are centred inside the cap. */
  min-height: min(100svh, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding-top: var(--nav-h);
  padding-inline: max(0px, calc((100% - 1720px) / 2));
  border-bottom: 1px solid var(--border);
}

.hero-main {
  padding: 80px 56px 80px var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}

.hero h1 .sub-line {
  display: block;
  font-weight: 200;
  color: var(--mid);
  font-size: 0.48em;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-panel {
  padding: 56px var(--px) 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hp-row:hover .hp-title, .hp-row:active .hp-title { color: var(--white); }

.hp-num { font-size: 9px; font-weight: 600; color: var(--mid); letter-spacing: 0.1em; min-width: 20px; }
.hp-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); flex: 1; transition: color 0.2s; }
.hp-arr { font-size: 10px; color: var(--mid); }

/* CLIENTS TICKER */
.clients-bar {
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.clients-bar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 16px 28px 16px var(--px);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.clients-ticker-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.clients-ticker-track {
  display: flex;
  align-items: center;
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.clients-ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 16px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.client-item:hover { color: var(--accent); }

.client-sep {
  width: 3px; height: 3px;
  background: var(--mid);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}

/* SECTIONS */
.section { padding: 80px var(--px); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-eyebrow::before { content: '\2014'; margin-right: 10px; }

.section-heading {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
}

.section-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
  max-width: 480px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 44px;
}

.sc {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.sc:hover, .sc:active { background: var(--s1); }
.sc:hover .sc-arr, .sc:active .sc-arr { color: var(--white); }

.sc-num { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: var(--mid); text-transform: uppercase; }
.sc h3 { font-size: 15px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.sc p { font-size: 12px; color: var(--mid); line-height: 1.8; font-weight: 300; flex: 1; }
.sc-arr { font-size: 10px; font-weight: 600; color: var(--mid); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; transition: color 0.2s; }

/* APPROACH */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 44px;
}

.approach-col { background: var(--bg); padding: 44px 40px; }

.ac-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.approach-point {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.approach-point:first-of-type { border-top: 1px solid var(--border); margin-top: 4px; }

.ap-n { font-size: 9px; font-weight: 700; color: var(--mid); letter-spacing: 0.1em; min-width: 20px; padding-top: 2px; }
.ap-body h4 { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 5px; }
.ap-body p { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.75; }

.approach-quote { background: var(--s1); padding: 44px 40px; display: flex; flex-direction: column; }
.approach-quote blockquote {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.85;
  color: var(--white);
  letter-spacing: 0.02em;
  border-left: 1px solid var(--border2);
  padding-left: 20px;
  margin-top: 28px;
  flex: 1;
}
.approach-quote cite {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 28px;
  display: block;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 44px;
}

.tc { background: var(--bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }

.stars { display: flex; gap: 3px; }
.star { width: 10px; height: 10px; background: var(--mid); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

.tc-text { font-size: 12px; font-weight: 300; color: var(--white); line-height: 1.8; flex: 1; letter-spacing: 0.01em; }
.tc-author { padding-top: 14px; border-top: 1px solid var(--border); }
.tc-name { font-size: 10px; font-weight: 800; color: var(--white); letter-spacing: 0.16em; text-transform: uppercase; }
.tc-co { font-size: 10px; color: var(--mid); font-weight: 400; letter-spacing: 0.06em; margin-top: 3px; }

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 44px;
}

.pc { background: var(--bg); padding: 28px 24px; display: flex; flex-direction: column; gap: 18px; }
.pc.featured { background: var(--s1); border-color: var(--accent); }

.pc-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.pc-name { font-size: 19px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.pc-div { height: 1px; background: var(--border); }

.pc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; font-weight: 300; color: var(--mid); line-height: 1.5; }

.chk { position: relative; width: 13px; height: 13px; border: 1px solid var(--border2); flex-shrink: 0; box-sizing: border-box; }
.chk::after { content: ''; position: absolute; left: 50%; top: 47%; width: 5px; height: 3px; border-left: 1px solid var(--mid); border-bottom: 1px solid var(--mid); transform: translate(-50%, -50%) rotate(-45deg); }

.pc-cta {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border2);
  color: var(--mid);
  background: transparent;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font);
  margin-top: auto;
  -webkit-tap-highlight-color: transparent;
}
.pc-cta:hover, .pc-cta:active { color: var(--white); border-color: rgba(255,255,255,0.3); }
.featured .pc-cta { background: var(--white); color: var(--bg); border-color: var(--white); }
.featured .pc-cta:hover { opacity: 0.88; }

/* CONSULTING BLOCK */
.consulting-block {
  border: 1px solid var(--border);
  border-top: none;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--s1);
}
.cb-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 7px; }
.cb-title { font-size: 15px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cb-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.75; max-width: 560px; letter-spacing: 0.02em; }

/* BUDGET TOOL */
.budget-section { padding: 80px var(--px); border-top: 1px solid var(--border); }
.budget-inner { max-width: 1100px; margin: 0 auto; }

.budget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 44px;
}

.budget-input-col { background: var(--bg); padding: 44px 40px; }
.budget-output-col { background: var(--s1); padding: 44px 40px; }

.budget-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.budget-field { margin-bottom: 28px; }

.budget-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}

.budget-field input,
.budget-field select {
  width: 100%;
  background: var(--s2);
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  letter-spacing: 0.02em;
}
.budget-field input:focus, .budget-field select:focus { border-color: rgba(255,255,255,0.3); }
.budget-field input::placeholder { color: var(--mid); }

.budget-helper {
  font-size: 10px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-top: 6px;
  line-height: 1.5;
}

.budget-result-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
  text-align: center;
  gap: 12px;
}
.budget-result-empty p {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 240px;
}

.budget-total { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.budget-total-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.budget-total-val { font-size: 48px; font-weight: 400; letter-spacing: 0.04em; color: var(--accent); line-height: 1; }
.budget-total-sub { font-size: 10px; font-weight: 300; color: var(--mid); letter-spacing: 0.06em; margin-top: 6px; }

.budget-splits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 4px; }
.budget-split-row { display: flex; flex-direction: column; gap: 6px; }
.budget-split-header { display: flex; justify-content: space-between; align-items: baseline; }
.budget-split-name { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.budget-split-amount { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.budget-bar-track { height: 2px; background: var(--border2); width: 100%; }
.budget-bar-fill { height: 2px; background: var(--white); transition: width 0.5s ease; }
.budget-split-sub { font-size: 10px; font-weight: 300; color: var(--mid); letter-spacing: 0.04em; line-height: 1.5; margin-top: 3px; }

.budget-note { font-size: 10px; font-weight: 300; color: var(--mid); line-height: 1.7; letter-spacing: 0.02em; padding-top: 20px; border-top: 1px solid var(--border); margin-top: 20px; }

.budget-plan-rec { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px; }
.budget-plan-rec-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.budget-rec-name { font-size: 22px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); line-height: 1; margin-top: 4px; }
.budget-rec-fee { font-size: 22px; font-weight: 400; letter-spacing: 0.06em; color: var(--accent); line-height: 1; white-space: nowrap; }
.budget-rec-fee span { font-size: 11px; font-weight: 300; color: var(--mid); letter-spacing: 0.04em; }
.budget-rec-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.budget-rec-includes li { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 300; color: var(--mid); letter-spacing: 0.02em; }
.budget-rec-dot { width: 3px; height: 3px; background: var(--mid); border-radius: 50%; flex-shrink: 0; }

/* FAQ */
.faq-section { padding: 80px var(--px); border-top: 1px solid var(--border); }
.faq-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 80px; }
.faq-heading { font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.05; color: var(--white); position: sticky; top: 76px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; font-family: var(--font); text-align: left; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 20px 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.faq-q-text { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); line-height: 1.4; }
.faq-icon { font-size: 16px; font-weight: 200; color: var(--mid); flex-shrink: 0; transition: transform 0.25s; line-height: 1; margin-top: 2px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
/* Collapse is driven by max-height set from JS (site-ui.js) rather than a
   grid 0fr row. The grid approach kept leaking the answer's padding, and a
   fixed max-height cap clipped longer answers. This does neither: closed is
   a hard 0, open is the measured content height. */
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(0.22,1,0.36,1); }
.faq-ans-inner { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; padding-bottom: 20px; }


/* CTA */
.cta-section { border-top: 1px solid var(--border); padding: 90px var(--px); }
.cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.cta-section h2 { font-size: clamp(30px, 4.5vw, 60px); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 0.96; }
.cta-section p { font-size: 12px; font-weight: 300; color: var(--mid); margin-top: 14px; letter-spacing: 0.04em; line-height: 1.75; max-width: 380px; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 52px var(--px) 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; gap: 72px; padding-bottom: 36px; border-bottom: 1px solid var(--border); margin-bottom: 20px; align-items: start; }
.footer-tagline { font-size: 11px; font-weight: 300; color: var(--mid); line-height: 1.7; max-width: 200px; margin-top: 14px; letter-spacing: 0.02em; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 12px; font-weight: 300; color: var(--mid); text-decoration: none; transition: color 0.2s; cursor: pointer; letter-spacing: 0.02em; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 10px; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; }

/* SERVICES PAGE */
.svc-hero { padding: 130px var(--px) 72px; border-bottom: 1px solid var(--border); }
.svc-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.svc-hero h1 { font-size: clamp(40px, 6vw, 82px); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 0.93; color: var(--white); }
.svc-hero-sub { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; }

.svc-detail { padding: 72px var(--px); border-bottom: 1px solid var(--border); }
.svc-detail-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.svc-num { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; color: var(--mid); text-transform: uppercase; margin-bottom: 14px; }
.svc-detail h2 { font-size: clamp(20px, 2.6vw, 34px); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.0; color: var(--white); margin-bottom: 20px; }
.svc-detail-body { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 28px; letter-spacing: 0.02em; }
.incl-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.incl-item { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 400; color: var(--white); padding: 11px 0; border-bottom: 1px solid var(--border); letter-spacing: 0.03em; }
.incl-dot { width: 3px; height: 3px; background: var(--mid); border-radius: 50%; flex-shrink: 0; }

.svc-panel { background: var(--s1); border: 1px solid var(--border); padding: 28px; display: flex; flex-direction: column; gap: 18px; align-self: start; position: sticky; top: 72px; }
.svc-panel-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); border: 1px solid var(--border2); padding: 6px 12px; }

/* ABOUT */
.about-hero { padding: 130px var(--px) 88px; border-bottom: 1px solid var(--border); }
.about-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 72px; align-items: center; }
.about-hero h1 { font-size: clamp(34px, 4.5vw, 60px); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 0.96; margin-bottom: 24px; color: var(--white); }
.about-hero h1 em { font-style: normal; color: var(--mid); }
.about-hero p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; }
.about-card { background: var(--s1); border: 1px solid var(--border); padding: 36px 28px; text-align: center; }
.about-monogram { width: 56px; height: 56px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 400; color: var(--white); margin: 0 auto 18px; }
.about-name { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.about-role { font-size: 10px; font-weight: 300; color: var(--mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.about-contact { font-size: 11px; font-weight: 500; color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--border2); padding-bottom: 2px; letter-spacing: 0.04em; transition: color 0.2s; }
.about-contact:hover { color: var(--white); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu  { animation: fadeUp 0.6s ease both; }
.d1  { animation-delay: 0.08s; }
.d2  { animation-delay: 0.18s; }
.d3  { animation-delay: 0.28s; }

/* RESPONSIVE - tablet */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-main { border-right: none; padding: 72px var(--px) 64px; }
  .approach-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail-inner { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .consulting-block { grid-template-columns: 1fr; gap: 24px; }
  .svc-panel { position: static; }
  .faq-heading { position: static; }
  .budget-layout { grid-template-columns: 1fr; }
}

/* RESPONSIVE - mobile */
@media (max-width: 640px) {
  :root { --px: 20px; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .nav-mobile-cta { display: block; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-main { padding: 52px var(--px) 56px; justify-content: flex-start; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); margin-bottom: 28px; }
  .hero-body { font-size: 13px; max-width: 100%; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; padding: 16px; font-size: 10px; }
  .clients-bar { flex-wrap: nowrap; }
  .clients-bar-label { padding: 14px 16px 14px var(--px); font-size: 8px; }
  .client-item { font-size: 9px; padding: 14px 18px; }
  .section { padding: 60px var(--px); }
  .section-heading { font-size: clamp(26px, 8vw, 40px); }
  .services-grid { grid-template-columns: 1fr; }
  .sc { padding: 32px 24px; }
  .approach-col { padding: 32px 24px; }
  .approach-quote { padding: 32px 24px; }
  .approach-quote blockquote { font-size: 14px; }
  .testi-grid { grid-template-columns: 1fr; }
  .tc { padding: 28px 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pc { padding: 24px 20px; }
  .pc .pc-cta { display: none; }
  .consulting-block { padding: 24px 20px; }
  .budget-section { padding: 60px var(--px); }
  .budget-input-col { padding: 32px 24px; }
  .budget-output-col { padding: 32px 24px; }
  .faq-section { padding: 60px var(--px); }
  .faq-q-text { font-size: 11px; }
  .cta-section { padding: 64px var(--px); }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { text-align: center; padding: 16px; }
  .svc-hero { padding: 110px var(--px) 52px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .svc-hero h1 { font-size: clamp(40px, 11vw, 58px); }
  .svc-detail { padding: 52px var(--px); }
  .svc-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail h2 { font-size: clamp(20px, 7vw, 30px); }
  .svc-panel { padding: 22px 20px; }
  .about-hero { padding: 110px var(--px) 60px; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .site-footer { padding: 48px var(--px) 24px; }
  .footer-top { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 40px; }
  .section-heading { font-size: 26px; }
}


/* SIMPLE MODE BANNER — mobile only */
.simple-banner {
  display: none;
}
@media (max-width: 640px) {
  .simple-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F0;
    border-bottom: 2px solid var(--accent);
    padding: 9px var(--px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 199;
  }
  .simple-banner span {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #555;
    letter-spacing: 0.06em;
  }
  .simple-banner span.arrow {
    margin-left: 6px;
    color: var(--accent);
  }
  /* Push hero content down to clear nav + banner */
  .hero-main { padding-top: 110px; }
}

/* NOTEPAD OVERLAY */
.notepad-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #000;
  padding: 0;
}
.notepad-overlay.active { display: block; }

.notepad-titlebar {
  background: #000080;
  color: #ffffff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  padding: 4px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.notepad-close {
  background: #C0C0C0;
  border: 1px solid #fff;
  border-right-color: #555;
  border-bottom-color: #555;
  color: #000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  width: 18px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.notepad-body {
  padding: 16px;
}
.notepad-body p  { margin-bottom: 8px; }
.notepad-body hr { border: none; border-top: 1px solid #ccc; margin: 14px 0; }
.notepad-body a  { color: var(--accent); text-decoration: underline; }
.notepad-body a:visited { color: #551A8B; }
.notepad-body ul { list-style: none; padding: 0; margin: 6px 0 10px 0; }
.notepad-body ul li::before { content: "* "; }
.notepad-body ul li { margin-bottom: 4px; }
.notepad-body .indent { padding-left: 16px; }
.notepad-back {
  font-size: 11px;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Courier New', Courier, monospace;
  padding: 0;
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {

  /* Scroll reveal base */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  .reveal.d4 { transition-delay: 0.32s; }

  /* Hero stagger */
  @keyframes heroUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ha { opacity: 0; animation: heroUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
  .ha1 { animation-delay: 0.05s; }
  .ha2 { animation-delay: 0.2s;  }
  .ha3 { animation-delay: 0.38s; }
  .ha4 { animation-delay: 0.52s; }
  .ha5 { animation-delay: 0.64s; }

  /* Nav link underline slide */
  .nav-links li a { position: relative; }
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease-out;
  }
  .nav-links li a:hover::after { transform: scaleX(1); }

  /* Plan card hover lift */
  .pc { transition: transform 0.22s ease-out, border-color 0.22s; }
  .pc:hover { transform: translateY(-4px); }

  /* Service card border glow on hover */
  .sc { transition: border-color 0.22s, background 0.22s; }
  .sc:hover { border-color: rgba(191,245,61,0.28); }

  /* Approach item hover */
  .ap-item { transition: background 0.2s; }

  /* Count-up shimmer on load */
  @keyframes accentPulse {
    0%   { opacity: 0.4; }
    50%  { opacity: 1; }
    100% { opacity: 1; }
  }
  .count-up { animation: accentPulse 1.2s ease-out forwards; }
}

@media (min-width: 641px) {
  .nav-logo-char {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: #808080;
    display: inline-block;
    transition: color 0.15s;
  }
  .nav-logo-char.cycling { color: #BFF53D; }
  .nav-logo-char.settled { color: #808080; }
}



/* === MOBILE SERVICE CARDS — Soft Ivory Mist background === */
@media (max-width: 640px) {
  .sc {
    background: #F7FFF2 !important;
    border-color: rgba(0,0,0,0.08) !important;
  }
  .sc h3 {
    color: #0A0D04 !important;
  }
  .sc p {
    color: #333333 !important;
  }
  .sc-num {
    color: #1C210A !important;
  }
  .sc-arr {
    color: #1C210A !important;
  }
}

/* Landing page components (shared with service hub pages) */
.lp-hero { padding: 130px var(--px) 80px; border-bottom: 1px solid var(--border); }
.lp-section { padding: 72px var(--px); border-bottom: 1px solid var(--border); }
.lp-section:last-of-type { border-bottom: none; }
.lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
.lp-card { background: var(--s1); border: 1px solid var(--border); padding: 28px 24px; }
.lp-card h3 { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.lp-card p { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.lp-list { list-style: none; padding: 0; margin-top: 24px; display: flex; flex-direction: column; gap: 0; }
.lp-list li { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.8; padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; }
.lp-list li span.marker { color: var(--mid); flex-shrink: 0; font-size: 11px; padding-top: 3px; }

@media (max-width: 640px) {
  .lp-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-heading { position: static; }
}


/* WORKING NOTES */
.note-hero { padding: 130px var(--px) 56px; border-bottom: 1px solid var(--border); }
.note-hero-inner { max-width: 780px; }

.note-crumb { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.note-crumb a { color: var(--mid); transition: color 0.2s; }
.note-crumb a:hover { color: var(--accent); }
.note-crumb span.sep { color: var(--mid); }

.note-hero h1 { font-size: clamp(30px, 4.6vw, 58px); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.02; color: var(--white); margin-bottom: 26px; }
.note-standfirst { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; max-width: 640px; }

.note-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); }
.note-meta-item { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.note-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.note-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); border: 1px solid var(--border2); padding: 6px 12px; transition: color 0.2s, border-color 0.2s; }
.note-tag:hover { color: var(--accent); border-color: var(--accent); }

.note-wrap { padding: 60px var(--px) 0; }
.note-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 80px; align-items: start; }

.note-toc { position: sticky; top: 84px; }
.note-toc-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.note-toc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.note-toc a { font-size: 11px; font-weight: 300; color: var(--mid); line-height: 1.5; letter-spacing: 0.02em; transition: color 0.2s; display: block; }
.note-toc a:hover { color: var(--accent); }

.note-body { max-width: 720px; }
.note-body h2 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; line-height: 1.15; color: var(--white); margin: 56px 0 20px; padding-top: 34px; border-top: 1px solid var(--border); scroll-margin-top: 80px; }
.note-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.note-body h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin: 32px 0 12px; }
.note-body p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; margin-bottom: 18px; }
.note-body a:not(.btn-primary):not(.btn-secondary) { color: var(--white); border-bottom: 1px solid var(--border2); transition: color 0.2s, border-color 0.2s; }
.note-body a:not(.btn-primary):not(.btn-secondary):hover { color: var(--accent); border-color: var(--accent); }
.note-body strong { color: var(--white); font-weight: 500; }

.note-list { list-style: none; margin: 22px 0 26px; }
.note-list li { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; letter-spacing: 0.02em; padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; }
.note-list li span.marker { color: var(--mid); flex-shrink: 0; font-size: 11px; padding-top: 4px; }
.note-list li strong { color: var(--white); font-weight: 500; }

.note-block { background: var(--s1); border: 1px solid var(--border); padding: 26px 24px; margin: 26px 0; }
.note-block-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.note-block h3 { margin-top: 0; }
.note-block p:last-child { margin-bottom: 0; }


.note-callout { border-left: 2px solid var(--accent); padding: 6px 0 6px 22px; margin: 30px 0; }
.note-callout p { font-size: 15px; font-weight: 400; color: var(--white); line-height: 1.75; margin-bottom: 0; letter-spacing: 0.02em; }

.plan-phase { padding: 20px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; }
.plan-phase:last-of-type { border-bottom: none; }
.plan-weeks { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); padding-top: 3px; }
.plan-detail { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; letter-spacing: 0.02em; }

.note-summary { background: var(--s1); border: 1px solid var(--border2); padding: 30px 28px; margin: 46px 0 0; }
.note-summary .note-block-label { color: var(--accent); }
.note-summary p { font-size: 14px; margin-bottom: 0; }

.note-foot { padding: 0 var(--px) 72px; }
.note-foot-inner { max-width: 1100px; margin: 0 auto; }

@media (max-width: 980px) {
  .note-layout { grid-template-columns: 1fr; gap: 0; }
  .note-toc { position: static; margin-bottom: 44px; }
  .note-toc ul { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
}
@media (max-width: 640px) {
  .note-hero { padding: 100px var(--px) 44px; }
  .note-wrap { padding: 44px var(--px) 0; }
  .note-body h2 { margin-top: 40px; padding-top: 28px; }
  .note-body p { font-size: 14px; }
  .plan-phase { grid-template-columns: 1fr; gap: 8px; }
}

/* WORKING NOTES - INDEX + TOPIC */
.notes-hero { padding: 130px var(--px) 64px; border-bottom: 1px solid var(--border); }
.notes-hero-inner { max-width: 1100px; margin: 0 auto; }
.notes-hero h1 { font-size: clamp(38px, 6vw, 80px); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 0.93; color: var(--white); margin-bottom: 28px; }
.notes-hero-sub { font-size: 15px; font-weight: 200; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; max-width: 560px; }

.notes-topics { padding: 34px var(--px); border-bottom: 1px solid var(--border); }
.notes-topics-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.notes-topics-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-right: 8px; }

.notes-list { padding: 0 var(--px) 80px; }
.notes-list-inner { max-width: 1100px; margin: 0 auto; }
.note-card { display: block; padding: 40px 0; border-bottom: 1px solid var(--border); transition: opacity 0.2s; }
.note-card:hover { opacity: 0.72; }
.note-card-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 16px; }
.note-card-meta span { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.note-card-meta span.topic { color: var(--accent); }
.note-card h2 { font-size: clamp(20px, 2.8vw, 34px); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.1; color: var(--white); margin-bottom: 16px; max-width: 820px; }
.note-card p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; letter-spacing: 0.02em; max-width: 700px; }
.note-card-more { display: inline-block; margin-top: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }

.notes-empty { padding: 60px 0; font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 620px; }

@media (max-width: 640px) {
  .notes-hero { padding: 100px var(--px) 48px; }
  .note-card { padding: 32px 0; }
}


/* ============================================================
   SELF-HOSTED MONTSERRAT (variable, 100-900)
   Replaces the render-blocking Google Fonts request.
   ============================================================ */
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--accent);
  color: #0A0D04;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.budget-field input:focus-visible,
.budget-field select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

main { display: block; }

/* ============================================================
   PRESS FEEDBACK - responds on pointer-down, not release
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn-secondary, .pc-cta, .nav-cta, .nav-mobile-cta,
  .sc, .hp-row, .note-tag, .faq-q, .nav-ham {
    transition: transform 0.18s cubic-bezier(0.22,1,0.36,1),
                background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  }
  .btn-primary:active, .btn-secondary:active, .pc-cta:active,
  .nav-cta:active, .nav-mobile-cta:active, .note-tag:active {
    transform: scale(0.972);
    transition-duration: 0.06s;
  }
  .sc:active, .hp-row:active { transform: scale(0.994); transition-duration: 0.06s; }
  .faq-q:active { opacity: 0.7; transition-duration: 0.06s; }
  .nav-ham:active { transform: scale(0.9); transition-duration: 0.06s; }
  .client-item:active { color: var(--accent); }
}

/* ============================================================
   TYPOGRAPHY - tracking eases in as display type scales up
   ============================================================ */
.hero h1, .svc-hero h1, .notes-hero h1 { letter-spacing: 0.075em; }
.section-heading, .cta-section h2, .note-hero h1 { letter-spacing: 0.085em; }
@media (max-width: 640px) {
  .hero h1, .svc-hero h1, .notes-hero h1 { letter-spacing: 0.09em; }
  .section-heading, .cta-section h2, .note-hero h1 { letter-spacing: 0.095em; }
}

/* ============================================================
   AGENCY COMPARISON - labels move to a legend below 640px
   ============================================================ */
.agency-legend { display: none; }
.agency-seg-label { display: block; }
.agency-seg-num { display: none; }

@media (max-width: 640px) {
  .agency-seg-label { display: none; }
  .agency-seg-num { display: block; }
  .agency-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin-top: 12px;
  }
  .agency-legend p {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--mid);
    line-height: 1.5;
  }
  .agency-legend p span {
    font-weight: 700;
    color: var(--white);
    margin-right: 6px;
  }
  .agency-box { padding: 10px 4px !important; }
  .agency-box p {
    font-size: 10px !important;
    letter-spacing: 0.02em !important;
    text-align: center;
  }
}

/* ============================================================
   REDUCED MOTION - gentler equivalents, not just "off"
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .clients-ticker-track { animation: none; transform: none; }
  .clients-ticker-wrap { overflow-x: auto; }
  .fu, .ha { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav-drawer {
    transform: none;
    transition: opacity 0.15s ease, visibility 0s linear 0.15s;
  }
  .faq-ans { transition: none; }
  .pc:hover { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* Immediate press state (set on pointerdown by site-ui.js) */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary.is-pressed, .btn-secondary.is-pressed, .pc-cta.is-pressed,
  .nav-cta.is-pressed, .nav-mobile-cta.is-pressed, .note-tag.is-pressed {
    transform: scale(0.972);
    transition-duration: 0.06s;
  }
  .sc.is-pressed, .hp-row.is-pressed { transform: scale(0.994); transition-duration: 0.06s; }
  .faq-q.is-pressed { opacity: 0.7; transition-duration: 0.06s; }
  .nav-ham.is-pressed { transform: scale(0.9); transition-duration: 0.06s; }
}

/* Drawer CTA reads as a CTA, not another nav link */
.nav-drawer a.drawer-cta { color: var(--accent); font-weight: 700; }

@media (max-width: 640px) {
  .agency-savings-label { font-size: 9px !important; letter-spacing: 0.08em !important; }
}

/* ============================================================
   HERO GLOW - static
   A single element, three stacked radial gradients, no animation
   and no JavaScript. Each gradient is sized in percentages of the
   element, so it reaches full transparency before the hero edges -
   that is what stops the hard seams. The mask keeps it inside the
   band between the headline and the services panel.
   Desktop only: below 1180px there is no clear space for it.
   ============================================================ */
.hero { position: relative; overflow: hidden; }

.hero-glow {
  position: absolute;
  top: 0; bottom: 0;
  left:  max(0px, calc((100% - 1720px) / 2));
  right: max(0px, calc((100% - 1720px) / 2));
  z-index: 0;
  pointer-events: none;
  background:
    /* bright core, lower right - the mockup's hot spot */
    radial-gradient(ellipse 13% 31% at 66% 62%,
      rgba(198, 253, 52, 0.50)  0%,
      rgba(140, 192, 14, 0.28) 40%,
      rgba(50,   74,  6, 0.09) 70%,
      transparent 100%),
    /* main column */
    radial-gradient(ellipse 28% 54% at 62% 50%,
      rgba(186, 246, 34, 0.60)  0%,
      rgba(150, 202, 16, 0.43) 28%,
      rgba(92,  132,  6, 0.24) 52%,
      rgba(42,   62,  4, 0.10) 74%,
      transparent 100%),
    /* upper haze so the top does not go flat */
    radial-gradient(ellipse 16% 32% at 57% 20%,
      rgba(146, 198, 18, 0.22)  0%,
      rgba(64,   94,  8, 0.09) 50%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, transparent max(44%, 600px), #000 max(62%, 700px),
    #000 calc(100% - 384px), transparent calc(100% - 326px));
  mask-image: linear-gradient(to right,
    transparent 0%, transparent max(44%, 600px), #000 max(62%, 700px),
    #000 calc(100% - 384px), transparent calc(100% - 326px));
}

/* Content sits above the glow */
.hero-main, .hero-panel { position: relative; z-index: 1; }

/* Below 1180px the services panel owns the right edge (down to 960px) and
   below that the copy fills the width, so there is nowhere clean to put it. */
@media (max-width: 1180px) {
  .hero { min-height: min(100svh, 900px); padding-inline: 0; }
  .hero-glow { display: none; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; }
}
