/* =========================================================
   CoPowr marketing site — services firm positioning
   Squarespace-inspired layout with CoPowr brand tokens
   ========================================================= */

:root {
  --ease-emphasized: cubic-bezier(.2,.7,.1,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--fg); background: var(--bg); overflow-x: hidden; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-emphasized), transform .7s var(--ease-emphasized); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .22s; }
.reveal.d4 { transition-delay: .30s; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { height: 34px; display: block; }
.nav.is-scrolled .nav-row { height: 64px; }
.nav.is-scrolled .nav-logo { height: 28px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--ink-800); font-size: 14px; font-weight: 500; position: relative;
  padding: 6px 2px; transition: color .15s ease; cursor: pointer;
  font-family: var(--font-body);
}
.nav-links a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: -2px; height: 1.5px;
  background: var(--copowr-teal); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-emphasized);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--copowr-teal); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 120ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--copowr-blue); color: #fff; }
.btn-primary:hover { background: #054f6a; color: #fff; }
.btn-accent { background: var(--copowr-teal); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--copowr-blue); border-color: var(--copowr-blue); }
.btn-outline:hover { background: var(--copowr-blue); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-800); }
.btn-ghost:hover { background: var(--ink-100); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-white { background: #fff; color: var(--copowr-blue); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copowr-teal);
}

/* ---------- Section helpers ---------- */
.section { padding: clamp(72px, 10vw, 136px) 0; position: relative; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.section-cream { background: var(--cream); }
.section-cloud { background: var(--cloud); }
.section-ink { background: var(--ink-900); color: #fff; }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink p { color: rgba(255,255,255,0.72); }
.section-ink .eyebrow { color: var(--copowr-mint); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.028em;
  color: var(--ink-900);
  margin: 16px 0 18px;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--copowr-teal); }
.section-head p {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55;
  color: var(--fg-2); margin: 0;
  text-wrap: pretty; max-width: 58ch;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Home: problem section ---------- */
.home-what {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.home-what-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06; letter-spacing: -0.022em;
  color: var(--ink-900);
  margin: 14px 0 0; text-wrap: balance;
}
.home-what-title em { font-style: italic; color: var(--copowr-teal); font-weight: 600; }
.home-what-p {
  font-size: 18px; line-height: 1.7;
  color: var(--ink-700); margin: 0 0 18px;
}
.home-what-list {
  margin: 8px 0 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.home-what-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-700); line-height: 1.5;
}
.home-what-list li::before {
  content: ""; flex: 0 0 6px; width: 6px; height: 6px;
  border-radius: 999px; background: var(--copowr-teal);
  margin-top: 8px;
}

/* Reusable page-level h2/p (replaces inline styles) */
.page-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 14px 0 24px; text-wrap: balance;
}
.page-h2-sm {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.page-p {
  font-size: 18px; line-height: 1.7;
  color: var(--ink-700); margin: 0 0 16px;
}
.page-p:last-child { margin-bottom: 0; }

/* ---------- HERO (Home) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}
.hero::before {
  content: ""; position: absolute; top: -15%; right: -10%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(25,154,142,0.16), transparent 60%);
  filter: blur(10px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -20%; left: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(115,207,135,0.14), transparent 65%);
  filter: blur(10px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1040px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--copowr-teal);
  background: rgba(25,154,142,0.08);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(25,154,142,0.16);
}
.hero-eyebrow-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--copowr-teal);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(25,154,142,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(25,154,142,0); }
}
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.02; letter-spacing: -0.032em;
  color: var(--ink-900);
  margin: 8px 0 0;
  max-width: 20ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--copowr-teal); font-style: italic; font-weight: 500; }
.hero .lede {
  font-size: clamp(17px, 1.55vw, 21px); color: var(--ink-700);
  max-width: 62ch; line-height: 1.55; margin: 0;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* hero visual: layered cards showing 4 pillars */
.hero-visual {
  margin-top: clamp(32px, 5vw, 64px); position: relative;
  width: 100%; max-width: 1040px;
}
.hero-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.hero-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 24px 22px; text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-emphasized), box-shadow .35s ease;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hero-card .num {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-3);
  letter-spacing: .08em;
}
.hero-card .ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-50); color: var(--copowr-teal);
}
.hero-card.mint .ic { background: var(--mint-50); color: #2a7a43; }
.hero-card.blue .ic { background: var(--blue-50); color: var(--copowr-blue); }
.hero-card.deep .ic { background: var(--ink-100); color: var(--ink-900); }
.hero-card h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em; color: var(--ink-900); margin: 0;
}
.hero-card p { font-size: 13.5px; line-height: 1.5; color: var(--fg-3); margin: 0; }

/* ---------- Sub hero (inner pages) ---------- */
.subhero {
  position: relative; overflow: hidden;
  padding: clamp(88px, 10vw, 140px) 0 clamp(56px, 7vw, 88px);
  background: linear-gradient(180deg, #ffffff 0%, var(--cloud) 100%);
}
.subhero::before {
  content: ""; position: absolute; top: -30%; right: -15%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(7,100,132,0.09), transparent 60%);
  filter: blur(8px); pointer-events: none;
}
.subhero-inner { position: relative; z-index: 1; max-width: 820px; }
.subhero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04; letter-spacing: -0.03em;
  color: var(--ink-900); margin: 14px 0 20px; text-wrap: balance;
}
.subhero h1 em { font-style: italic; font-weight: 500; color: var(--copowr-teal); }
.subhero .lede {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--ink-700); margin: 0; max-width: 56ch;
}

/* ---------- Pillar grid ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease-emphasized), box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar .num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--fg-3);
}
.pillar .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-50); color: var(--copowr-teal);
}
.pillar.mint .ic { background: var(--mint-50); color: #2a7a43; }
.pillar.blue .ic { background: var(--blue-50); color: var(--copowr-blue); }
.pillar.deep .ic { background: var(--ink-100); color: var(--ink-900); }
.pillar h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.015em; color: var(--ink-900); margin: 0;
}
.pillar p { font-size: 14.5px; line-height: 1.55; color: var(--fg-3); margin: 0; }
.pillar ul { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 6px; }
.pillar li {
  font-size: 13.5px; color: var(--ink-700); display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.45;
}
.pillar li::before {
  content: ""; flex: 0 0 4px; width: 4px; height: 4px; margin-top: 9px;
  border-radius: 999px; background: var(--copowr-teal);
}
.pillar.mint li::before { background: var(--copowr-mint); }
.pillar.blue li::before { background: var(--copowr-blue); }
.pillar.deep li::before { background: var(--ink-700); }

/* ---------- Value row (why us) ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  letter-spacing: -0.01em; color: var(--ink-900); margin: 0 0 10px;
}
.value p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.value-num {
  font-family: var(--font-mono); font-size: 12px; color: var(--copowr-teal);
  letter-spacing: 0.08em; margin-bottom: 14px; display: block;
  padding-top: 14px; border-top: 1.5px solid var(--ink-200);
}
.value:nth-child(1) .value-num { border-top-color: var(--copowr-teal); }
.value:nth-child(2) .value-num { border-top-color: var(--copowr-mint); color: #2a7a43; }
.value:nth-child(3) .value-num { border-top-color: var(--copowr-blue); color: var(--copowr-blue); }
.value:nth-child(4) .value-num { border-top-color: var(--ink-700); color: var(--ink-700); }

/* ---------- Process timeline ---------- */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  position: relative;
}
.process-steps::before {
  content: ""; position: absolute; top: 28px; left: 5%; right: 5%;
  height: 1.5px; background: linear-gradient(90deg, var(--copowr-teal), var(--copowr-mint), var(--copowr-blue), var(--ink-400));
  opacity: 0.3;
}
.step {
  background: #fff; border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--border); position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff; border: 1.5px solid var(--copowr-teal); color: var(--copowr-teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.step:nth-child(2) .step-num { border-color: var(--copowr-mint); color: #2a7a43; }
.step:nth-child(3) .step-num { border-color: var(--copowr-blue); color: var(--copowr-blue); }
.step:nth-child(4) .step-num { border-color: var(--ink-700); color: var(--ink-700); }
.step h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.015em; color: var(--ink-900); margin: 0 0 10px;
}
.step p { font-size: 14.5px; line-height: 1.55; color: var(--fg-3); margin: 0 0 14px; }
.step ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.step li {
  font-size: 13px; color: var(--fg-2); display: flex; gap: 8px; align-items: flex-start;
}
.step li::before {
  content: ""; flex: 0 0 14px; width: 14px; height: 14px; margin-top: 2px;
  border-radius: 999px; background: var(--teal-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23199a8e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
  background-size: cover;
}

/* ---------- Outcomes ---------- */
.outcomes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.outcome {
  background: #fff; border-radius: 16px; padding: 26px 22px;
  border: 1px solid var(--border); text-align: left;
  transition: transform .25s ease, border-color .25s ease;
}
.outcome:hover { transform: translateY(-2px); border-color: var(--copowr-teal); }
.outcome .num {
  font-family: var(--font-display); font-weight: 600; font-size: 34px;
  letter-spacing: -0.025em; color: var(--copowr-blue); line-height: 1; margin: 0 0 6px;
}
.outcome h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink-900); margin: 0 0 4px; letter-spacing: -0.005em;
}
.outcome p { font-size: 13px; line-height: 1.5; color: var(--fg-3); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink-900);
  cursor: pointer; text-align: left; gap: 24px;
  transition: color .15s ease;
}
.faq-q:hover { color: var(--copowr-teal); }
.faq-q .plus {
  flex: none; width: 28px; height: 28px; border-radius: 999px;
  border: 1.5px solid var(--ink-300); position: relative;
  transition: border-color .2s ease, background .2s ease, transform .3s var(--ease-emphasized);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink-700);
  top: 50%; left: 50%; transition: transform .25s var(--ease-emphasized), background .2s ease;
}
.faq-q .plus::before { width: 11px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.5px; height: 11px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .plus { border-color: var(--copowr-teal); background: var(--copowr-teal); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: #fff; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-q { color: var(--copowr-teal); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-emphasized);
}
.faq-item.open .faq-a { max-height: 440px; }
.faq-a-inner {
  padding: 0 0 24px; font-size: 15.5px; line-height: 1.6; color: var(--fg-2);
  max-width: 72ch;
}

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px; font-weight: 500; color: var(--ink-800);
  font-family: var(--font-body);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  line-height: 1.4;
}
.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a5b67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-field select:invalid, .form-field select option[disabled] {
  color: var(--fg-3);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--copowr-teal);
  box-shadow: 0 0 0 3px rgba(25,154,142,0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field .hint { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

.submit-row { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.submit-row .privacy { display: block; width: 100%; font-size: 13px; color: var(--fg-3); line-height: 1.5; text-align: left; }
.submit-row .btn { align-self: flex-start; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: 28px;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
  background:
    radial-gradient(ellipse at 85% 115%, rgba(115,207,135,0.30), transparent 55%),
    radial-gradient(ellipse at 15% -20%, rgba(25,154,142,0.30), transparent 50%),
    linear-gradient(135deg, #076484 0%, #0a4f6a 100%);
  color: #fff; text-align: center;
  margin: 0 24px;
}
.cta-band h2 em { font-style: italic; color: var(--copowr-mint); font-weight: 500; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.06; letter-spacing: -0.025em;
  color: #fff; margin: 0 0 16px; text-wrap: balance;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 28px; line-height: 1.55; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 36px; background: var(--ink-900); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.footer-brand img { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-lockup { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand .footer-logo-lockup .footer-emblem { height: 44px; margin: 0; filter: none; }
.footer-brand .footer-logo-lockup .footer-wordmark { height: 22px; margin: 0; filter: none; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.55; max-width: 32ch; margin: 0 0 20px; }
.footer-col h5 {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: #fff; margin: 0 0 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.65); font-size: 14px;
  transition: color .15s ease; cursor: pointer;
}
.footer-col a:hover { color: var(--copowr-mint); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ---------- Announcement bar ---------- */
.annbar {
  background: var(--ink-900); color: #fff;
  font-size: 13px; padding: 10px 20px; text-align: center;
  letter-spacing: 0.01em;
}
.annbar strong { color: var(--copowr-mint); font-weight: 600; margin-right: 6px; }
.annbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; margin-left: 6px; }

/* ---------- About founder ---------- */
.founder {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.founder-card {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 32px 28px;
  position: relative; overflow: hidden;
}
.founder-photo {
  aspect-ratio: 1 / 1.1; border-radius: 18px;
  background: linear-gradient(135deg, var(--copowr-teal), var(--copowr-blue));
  display: flex; align-items: flex-end; padding: 20px;
  position: relative; overflow: hidden;
  margin-bottom: 20px;
}
.founder-photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(115,207,135,0.55), transparent 50%),
    radial-gradient(ellipse at 80% 110%, rgba(7,100,132,0.6), transparent 55%);
}
.founder-photo .initials {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(48px, 7vw, 88px); color: rgba(255,255,255,0.92);
  letter-spacing: -0.03em; line-height: 0.9;
}
.founder-card h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--ink-900); margin: 0 0 4px;
}
.founder-card .role { font-size: 14px; color: var(--fg-3); margin: 0 0 14px; }
.founder-card .pill-list { display: flex; gap: 6px; flex-wrap: wrap; }
.founder-card .pill-list span {
  font-size: 11px; font-weight: 500; color: var(--ink-800);
  background: #fff; border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 999px;
}

.founder-story h2 { margin-bottom: 24px; }
.founder-story p { font-size: 16.5px; line-height: 1.7; color: var(--ink-800); margin: 0 0 18px; }
.founder-story p.lede { font-size: 18.5px; color: var(--ink-900); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
}
.contact-info-card h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--ink-900); margin: 0 0 8px; letter-spacing: -0.005em;
}
.contact-info-card p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0 0 4px; }
.contact-info-card .mailto { color: var(--copowr-teal); font-weight: 500; font-size: 14px; }
.contact-next { display: flex; flex-direction: column; gap: 16px; }
.contact-next-step { display: flex; gap: 14px; align-items: flex-start; }
.contact-next-step .idx {
  flex: none; width: 28px; height: 28px; border-radius: 999px;
  background: var(--teal-50); color: var(--copowr-teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  margin-top: 2px;
}
.contact-next-step h5 {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink-900); margin: 0 0 2px;
}
.contact-next-step p { font-size: 13.5px; line-height: 1.5; color: var(--fg-3); margin: 0; }

.contact-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--ink-900); margin: 0 0 6px; letter-spacing: -0.015em;
}
.contact-form-card p.hint-top { font-size: 14.5px; color: var(--fg-3); margin: 0 0 24px; }

/* Services page detail blocks */
.service-detail { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--border); }
.service-detail:first-of-type { border-top: 0; }
.service-detail .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--fg-3); margin-bottom: 18px;
}
.service-detail .badge-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--copowr-teal); }
.service-detail .service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.service-detail.mint .badge-dot { background: var(--copowr-mint); }
.service-detail.blue .badge-dot { background: var(--copowr-blue); }
.service-detail.deep .badge-dot { background: var(--ink-700); }
.service-detail h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink-900); margin: 0 0 18px; text-wrap: balance;
}
.service-detail .body-col p { font-size: 16px; line-height: 1.65; color: var(--ink-700); margin: 0 0 16px; }
.service-detail h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink-900); margin: 24px 0 12px; letter-spacing: -0.005em;
}
.service-detail ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-detail li {
  font-size: 14.5px; color: var(--ink-800); display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.service-detail li::before {
  content: ""; flex: 0 0 16px; width: 16px; height: 16px; margin-top: 3px;
  border-radius: 999px;  background-color: var(--teal-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23199a8e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
  background-size: cover;
}

/* PROCESS — stage cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.process-grid .stage-card:nth-child(5) {
  grid-column: 1 / -1;
}
.stage-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.stage-card:hover {
  border-color: rgba(25, 154, 142, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -12px rgba(20, 40, 60, 0.12);
}
.stage-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.stage-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--copowr-teal);
}
.stage-card.mint .stage-num { color: #2a7a43; }
.stage-card.blue .stage-num { color: var(--copowr-blue); }
.stage-card.deep .stage-num { color: var(--ink-900); }
.stage-rule {
  flex: 1; height: 1px; background: var(--border);
}
.stage-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stage-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink-900);
  margin: 0 0 12px;
}
.stage-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

/* PROCESS — communication layout */
.comms-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.comms-lede {
  position: sticky;
  top: 100px;
}
.comms-lede h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 14px 0 20px;
  text-wrap: balance;
}
.comms-lede p {
  font-size: 17px; line-height: 1.65; color: var(--ink-700); margin: 0;
}
.comms-notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comms-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.comms-note:last-child { border-bottom: 1px solid var(--border); }
.comms-mark {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--copowr-teal);
  padding-top: 6px;
}
.comms-note h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.comms-note p {
  font-size: 15.5px; line-height: 1.6; color: var(--ink-700); margin: 0;
}

/* tools we work in */
.tools-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip {
  background: #fff; border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-800);
  display: inline-flex; align-items: center; gap: 8px;
}
.tool-chip .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--copowr-teal); }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  width: 320px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 20px; display: none;
  font-family: var(--font-body);
}
.tweaks.visible { display: block; }
.tweaks h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  margin: 0 0 4px; color: var(--ink-900); letter-spacing: -0.005em;
}
.tweaks .sub { font-size: 12px; color: var(--fg-3); margin: 0 0 16px; }
.tweaks .group { margin-bottom: 16px; }
.tweaks .group:last-child { margin-bottom: 0; }
.tweaks label {
  font-size: 11px; font-weight: 600; color: var(--fg-3);
  letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 8px;
}
.tweaks .swatches { display: flex; gap: 8px; }
.tweaks .sw {
  width: 30px; height: 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, border-color .15s ease;
  padding: 0;
}
.tweaks .sw:hover { transform: scale(1.08); }
.tweaks .sw.active { border-color: var(--ink-900); }
.tweaks .opts { display: flex; gap: 6px; }
.tweaks .opt {
  flex: 1; padding: 8px 10px; border-radius: 8px;
  background: var(--ink-100); border: 0; cursor: pointer;
  font-size: 12px; font-weight: 500; color: var(--ink-700);
  transition: background .15s ease, color .15s ease;
}
.tweaks .opt.active { background: var(--copowr-teal); color: #fff; }

/* ---------- Responsive ---------- */

/* =========================================================
   MOBILE NAV — hamburger + slide-down drawer
   Hidden by default (display: none on .nav-burger).
   Shown at <=900px via media query below.
   ========================================================= */

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  border-radius: 10px;
  transition: background .15s ease;
  align-items: center;
  justify-content: center;
  flex: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger:hover { background: var(--ink-100); }
.nav-burger:focus-visible {
  outline: 2px solid var(--copowr-teal);
  outline-offset: 2px;
}
.nav-burger-box {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
  pointer-events: none;
}
.nav-burger-box span {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .28s var(--ease-emphasized), opacity .2s ease, top .28s var(--ease-emphasized);
}
.nav-burger-box span:nth-child(1) { top: 0; }
.nav-burger-box span:nth-child(2) { top: 7px; }
.nav-burger-box span:nth-child(3) { top: 14px; }
.nav-burger.is-open .nav-burger-box span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-burger.is-open .nav-burger-box span:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nav-burger-box span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile drawer — fixed full-width panel below nav */
.nav-mobile-menu {
  position: fixed;
  top: 68px; /* matches mobile nav-row height */
  left: 0;
  right: 0;
  max-height: calc(100vh - 68px);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px -24px rgba(20,40,60,0.22);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity .22s ease, transform .28s var(--ease-emphasized), visibility 0s linear .28s;
  z-index: 49;
}
.nav-mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .22s ease, transform .28s var(--ease-emphasized), visibility 0s linear 0s;
}
.nav.is-scrolled .nav-mobile-menu { top: 60px; max-height: calc(100vh - 60px); }

.nav-mobile-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 22px 28px;
  display: flex;
  flex-direction: column;
}

/* Mobile menu list — explicit reset to override any UA defaults */
ul.nav-mobile-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  display: flex;
  flex-direction: column;
}
ul.nav-mobile-list li {
  list-style: none !important;
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin: 0;
}
ul.nav-mobile-list li:last-child { border-bottom: 0; }
ul.nav-mobile-list li::marker { content: none; }
ul.nav-mobile-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  text-decoration: none;
  transition: color .15s ease;
  cursor: pointer;
}
ul.nav-mobile-list a.active { color: var(--copowr-teal); }
ul.nav-mobile-list a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-400);
  border-top: 1.5px solid var(--ink-400);
  transform: rotate(45deg);
  flex: none;
}
ul.nav-mobile-list a.active::after { border-color: var(--copowr-teal); }

.nav-mobile-cta {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}
.nav-mobile-contact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-3);
  text-align: center;
}
.nav-mobile-contact a {
  color: var(--copowr-teal);
  font-weight: 500;
  text-decoration: none;
}

.nav-scrim {
  position: fixed;
  inset: 68px 0 0;
  z-index: 48;
  background: rgba(10,24,35,0.35);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, visibility 0s linear .2s;
}
.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .2s ease, visibility 0s linear 0s;
}
.nav.is-scrolled ~ .nav-scrim,
.nav.is-scrolled .nav-scrim { top: 60px; }

/* Service accordion chevron (desktop: hidden) */
.service-chevron { display: none; color: var(--ink-400); margin-left: auto; transition: transform .3s var(--ease-emphasized); }
.service-detail[data-open="true"] .service-chevron { transform: rotate(180deg); color: var(--copowr-teal); }
.service-detail-head { cursor: default; }

@media (max-width: 1000px) {
  .pillars, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .outcomes { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .founder, .contact-grid, .service-detail, .home-what { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid .stage-card:nth-child(5) { grid-column: auto; }
  .comms-layout { grid-template-columns: 1fr; gap: 40px; }
  .comms-lede { position: static; }
  .contact-aside { position: static; order: 2; }
  .contact-form-card { order: 1; }
  .contact-grid { gap: 28px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row { height: 68px; }
  .nav.is-scrolled .nav-row { height: 60px; }
  .nav-scrim { top: 68px; }
  .nav.is-scrolled .nav-scrim { top: 60px; }
}

@media (max-width: 720px) {
  /* Tighter containers */
  .container, .container-narrow, .container-wide { padding: 0 20px; }

  /* Section padding */
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head.center { margin-bottom: 36px; }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: clamp(36px, 9.2vw, 44px); line-height: 1.04; max-width: 16ch; }
  .hero .lede { font-size: 16.5px; }
  .hero-cta { flex-direction: column; width: 100%; gap: 10px; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-eyebrow-pill { font-size: 11px; padding: 7px 14px; }
  .hero-visual { margin-top: 40px; }
  .hero-cards { grid-template-columns: 1fr; gap: 12px; }
  .hero-card { padding: 20px 18px; }

  /* Sub hero */
  .subhero { padding: 72px 0 48px; }
  .subhero h1 { font-size: clamp(34px, 9vw, 42px); }
  .subhero .lede { font-size: 16px; }

  /* Section headings */
  .section-head h2 { font-size: clamp(28px, 7.4vw, 36px); }
  .section-head p { font-size: 16px; }

  /* Grids → single column */
  .form-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .outcomes { grid-template-columns: 1fr; gap: 12px; }
  .values { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Pillars + cards — reduced padding */
  .pillar { padding: 22px 20px; border-radius: 16px; }
  .hero-card { border-radius: 14px; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 24px 20px; border-radius: 16px; }

  /* Values */
  .value-num { padding-top: 10px; margin-bottom: 12px; }

  /* CTA band */
  .cta-band {
    margin: 0; border-radius: 20px;
    padding: 44px 24px;
  }
  .cta-band h2 { font-size: clamp(26px, 7.2vw, 34px); }
  .cta-band p { font-size: 15.5px; }
  .cta-band .btns { flex-direction: column; gap: 10px; align-items: stretch; }
  .cta-band .btns .btn { width: 100%; justify-content: center; }

  /* Founder */
  .founder-card { padding: 24px 22px; border-radius: 20px; }
  .founder-story p { font-size: 15.5px; line-height: 1.7; }
  .founder-story p.lede { font-size: 17px; }

  /* Contact form */
  .contact-form-card { padding: 24px 20px; border-radius: 18px; }
  .contact-info-card { padding: 20px 18px; border-radius: 14px; }
  .contact-aside { gap: 16px; }
  .contact-next-step .idx { width: 26px; height: 26px; font-size: 12px; }
  .contact-next-step h5 { font-size: 13.5px; }
  .contact-next-step p { font-size: 13px; }
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px; /* prevents iOS auto-zoom */
    padding: 14px 14px;
  }
  .form-field textarea { min-height: 120px; }
  .submit-row .btn { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-q { font-size: 16px; padding: 20px 0; gap: 16px; }
  .faq-q .plus { width: 26px; height: 26px; }
  .faq-a-inner { font-size: 15px; padding-bottom: 20px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-bar {
    flex-direction: column; align-items: flex-start;
    gap: 10px; margin-top: 36px;
  }

  /* Announcement bar — tighten + stack gracefully */
  .annbar { font-size: 12px; padding: 10px 16px; line-height: 1.45; text-align: center; }
  .annbar strong { display: inline; margin-right: 4px; }
  .annbar a { display: inline-block; margin-left: 4px; white-space: nowrap; }

  /* Home what */
  .home-what-title { font-size: clamp(26px, 7.4vw, 34px); line-height: 1.08; }
  .home-what-p { font-size: 16px; line-height: 1.65; }
  .home-what-list li { font-size: 15px; }
  .home-what-list li::before { margin-top: 7px; }

  /* Page-level h2/p */
  .page-h2 { font-size: clamp(26px, 7.4vw, 34px); margin-bottom: 18px; }
  .page-h2-sm { font-size: clamp(24px, 6.8vw, 30px); margin-bottom: 16px; }
  .page-p { font-size: 16px; line-height: 1.65; }

  /* Tweaks — keep accessible but don't cover content */
  .tweaks {
    width: calc(100vw - 24px); right: 12px; bottom: 12px;
    padding: 16px; max-height: calc(100vh - 24px); overflow-y: auto;
  }

  /* Prevent horizontal scroll from gradient blobs */
  .hero, .subhero { overflow: hidden; }

  /* Process stage cards */
  .stage-card { padding: 22px 20px; }
  .stage-title { font-size: 22px; }
  .stage-num { font-size: 30px; }

  /* Comms notes */
  .comms-note { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .comms-note h4 { font-size: 18px; }

  /* Legal */
  .legal-doc { font-size: 15.5px; }
  .legal-doc > p:first-child { font-size: 16.5px; }
  .legal-doc h2 { font-size: 21px; margin: 36px 0 12px; }
  .legal-doc h3 { font-size: 17px; }
  .legal-caps { padding: 14px 16px; font-size: 12.5px; }
  .legal-meta { font-size: 13px; }

  /* Services detail — accordion behavior */
  .service-detail {
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }
  .service-detail:first-of-type { border-top: 1px solid var(--border); }
  .service-detail-head {
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
  }
  .service-detail-head:focus-visible {
    outline: 2px solid var(--copowr-teal);
    outline-offset: 4px;
    border-radius: 8px;
  }
  .service-detail h2 { font-size: 24px; margin: 12px 0 0 !important; }
  .service-detail .service-head { gap: 12px; }
  .service-chevron { display: inline-flex; }
  .service-detail .badge { font-size: 11px; }
  .service-detail-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s var(--ease-emphasized), opacity .3s ease, margin-top .3s ease, padding-top .3s ease;
    margin-top: 0;
    padding-top: 0;
  }
  .service-detail.is-open .service-detail-body,
  .service-detail[data-open="true"] .service-detail-body {
    max-height: 2400px;
    opacity: 1;
    margin-top: 18px;
    padding-top: 4px;
  }
  .service-detail .body-col p { font-size: 15.5px; }
  .service-detail h4 { margin: 20px 0 10px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(32px, 9.5vw, 40px); }
  .section-head h2 { font-size: clamp(26px, 7.6vw, 32px); }
  .nav-mobile-list a { font-size: 20px; }
}

/* ---------- Legal (Privacy / Terms) ---------- */
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 14px; color: var(--fg-3);
  font-family: var(--font-mono);
}
.legal-meta strong { color: var(--ink-800); font-weight: 500; }
.legal-sep { color: var(--border); }

.legal-doc {
  font-size: 16.5px; line-height: 1.72;
  color: var(--ink-700);
  max-width: 72ch;
}
.legal-doc > p:first-child {
  font-size: 18px; line-height: 1.7; color: var(--ink-900);
}
.legal-doc p { margin: 0 0 18px; }
.legal-doc strong { color: var(--ink-900); font-weight: 600; }
.legal-doc a {
  color: var(--copowr-teal); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(25,154,142,0.35);
  transition: border-color .15s;
}
.legal-doc a:hover { border-color: var(--copowr-teal); }

.legal-doc h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2; letter-spacing: -0.018em;
  color: var(--ink-900);
  margin: 48px 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.legal-doc h2:first-of-type { margin-top: 24px; }
.legal-doc h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.3; letter-spacing: -0.012em;
  color: var(--ink-900);
  margin: 28px 0 10px;
}

.legal-doc ul {
  margin: 8px 0 22px; padding: 0; list-style: none;
}
.legal-doc ul li {
  position: relative; padding-left: 22px;
  margin-bottom: 10px;
}
.legal-doc ul li::before {
  content: ""; position: absolute; left: 4px; top: 0.7em;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--copowr-teal);
}

.legal-caps {
  font-family: var(--font-mono);
  font-size: 13.5px; line-height: 1.7; letter-spacing: 0.01em;
  color: var(--ink-800);
  background: var(--cream-50, #f7f3ea);
  border-left: 3px solid var(--copowr-teal);
  padding: 18px 22px;
  margin: 8px 0 22px !important;
}

.legal-contact {
  margin-top: 14px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px; line-height: 1.7;
}

/* Footer legal links */
.footer-legal { display: inline-flex; gap: 14px; align-items: center; }
.footer-legal a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color .15s;
}
.footer-legal a:hover { color: #fff; }
.footer-legal .dot { color: rgba(255,255,255,0.4); }
