/* ==========================================================================
   Druff Interactive — druff.co.za
   Page-level additions layered on top of main.css.
   Kept in a separate file so the shared design system stays untouched.
   ========================================================================== */

/* ---------- off-canvas menu: stagger for the 5th and 6th items ---------- */
.ocm.is-open nav ul li:nth-child(5) a { transition-delay: .38s; }
.ocm.is-open nav ul li:nth-child(6) a { transition-delay: .45s; }

/* ---------- contact: physical address under the meta blocks ---------- */
.contact-address { margin-top: 34px; max-width: 30em; font-size: .9rem; line-height: 1.6; }

/* ==========================================================================
   PROSE — long-form service and landing page copy
   main.css styles .copy for paragraphs only; these pages also carry
   sub-headings, lists and tables.
   ========================================================================== */
.copy h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 2.2em 0 .7em;
}
.copy h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 1.9em 0 .6em;
}
.copy h4 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 1.6em 0 .4em;
}
.copy h2:first-child, .copy h3:first-child, .copy h4:first-child { margin-top: 0; }

.copy ul, .copy ol { margin: 1.1em 0; padding-left: 0; }
.copy ul li, .copy ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .7em;
  line-height: 1.6;
}
.copy ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
}
.copy ol { counter-reset: c; }
.copy ol li { counter-increment: c; }
.copy ol li::before {
  content: counter(c, decimal-leading-zero);
  position: absolute;
  left: 0; top: .12em;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-40);
}
.copy li > strong:first-child { display: block; }
.copy a { text-decoration: underline; text-underline-offset: 3px; }
.copy a:hover { color: var(--ink); opacity: .6; }
.copy p + p { margin-top: 22px; }

/* ---------- numbered feature list (Why choose us / service benefits) ---------- */
.featlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: clamp(30px, 4vw, 54px) 0;
}
.featlist .fi { background: var(--white); padding: clamp(26px, 2.6vw, 40px); }
.featlist .fi .fn {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ink-40);
  display: block;
  margin-bottom: 14px;
}
.featlist .fi h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.featlist .fi p { font-size: .95rem; line-height: 1.6; color: var(--ink-70); }
@media (max-width: 690px) { .featlist { grid-template-columns: 1fr; } }

/* ---------- process strip (Understand → Plan → Create → Refine → Deliver) ---------- */
.process { background: var(--grey); color: var(--ink); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.process .p-head { max-width: 1600px; margin: 0 auto clamp(38px, 4vw, 64px); }
.process .p-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.process .p-head h2 {
  font-size: clamp(1.8rem, 3.1vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18em;
  margin-bottom: 22px;
}
.process .p-head p { color: var(--ink-70); max-width: 44em; line-height: 1.65; }
.p-steps {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.p-step {
  padding: 28px 24px 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.p-step .pn {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: var(--ink-40);
  display: block; margin-bottom: 18px;
  transition: color .35s ease;
}
.p-step h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 550; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 12px;
}
.p-step p { font-size: .92rem; line-height: 1.65; color: var(--ink-70); }
.p-step::after {
  content: ''; position: absolute; left: 0; top: -1px;
  width: 0; height: 2px; background: var(--ink);
  transition: width .5s cubic-bezier(.215, .61, .355, 1);
}
.p-step:hover::after { width: calc(100% - 24px); }
.p-step:hover .pn { color: var(--ink); }
@media (max-width: 1100px) { .p-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 690px)  { .p-steps { grid-template-columns: 1fr; } }

/* ---------- service accordion -------------------------------------------
   Every service stays on screen. Five narrow lime slats carry their titles
   vertically; one wide panel is open in full colour with its heading, chips
   and arrow. The open panel travels along the row on a timer, each one
   widening as the last narrows, and the cursor takes control instantly.
   ------------------------------------------------------------------------ */
.services-cards { background: var(--white); padding: clamp(64px, 6vw, 110px) 0 clamp(54px, 5vw, 94px); overflow: clip; }
.services-cards .services-intro { align-items: flex-end; padding-bottom: clamp(30px, 3.5vw, 54px); }
.services-cards .services-intro h2 { max-width: 62%; }
.services-intro h2 strong span { color: var(--deep-lime); }
@media (max-width: 1000px) { .services-cards .services-intro h2 { max-width: 100%; } }

.svc-acc {
  --acc-h: clamp(460px, 44vw, 620px);
  --open: 4.6;
  display: flex; gap: 10px;
  height: var(--acc-h);
  margin: 0 var(--pad-x);
}

.svc-panel {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  background: var(--grey);
  transition: flex-grow .95s cubic-bezier(.22, .61, .36, 1);
  will-change: flex-grow;
}
.svc-panel.is-open { flex-grow: var(--open); }

/* the photograph, on its own layer so it can drift while the panel is open */
.sp-img {
  position: absolute; inset: 0; z-index: -4;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  transform-origin: 50% 50%;
}
.svc-panel.is-open .sp-img { animation: sp-drift 9s ease-out forwards; }
@keyframes sp-drift { from { transform: scale(1.03); } to { transform: scale(1.12); } }

/* the lime wash sits on EVERY slat and lifts off the open one */
.svc-panel::after {
  content: ''; position: absolute; inset: 0; z-index: -3;
  background: var(--lime);
  opacity: .92;
  mix-blend-mode: soft-light;
  transition: opacity .6s ease;
}
/* plus an ink veil, so the vertical titles always read on the slats */
.svc-panel::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(200deg, rgba(0, 0, 23, .30) 0%, rgba(0, 0, 23, .58) 100%);
  transition: opacity .6s ease;
}
.svc-panel.is-open::after,
.svc-panel.is-open::before { opacity: 0; }

/* darkening gradient under the open panel's type */
.sp-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .30) 46%, rgba(0, 0, 0, .10) 100%);
  opacity: 0;
  transition: opacity .6s ease;
}
.svc-panel.is-open .sp-shade { opacity: 1; }

/* closed slat: number pinned to the head, title running up from the foot --- */
.sp-rail {
  position: absolute; left: 0; right: 0; top: 26px; bottom: 26px;
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc-panel.is-open .sp-rail { opacity: 0; transition-duration: .2s; }
.sp-num {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  color: var(--lime);
}
.sp-rail .sp-num {
  position: absolute; top: 0; left: 0; right: 0; text-align: center;
}
.sp-vtitle {
  position: absolute; bottom: 0; left: 50%;
  writing-mode: vertical-rl; transform: translateX(-50%) rotate(180deg);
  white-space: nowrap;
  max-height: calc(100% - 34px); overflow: hidden;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400; letter-spacing: -0.01em;
  color: #fff;
}

/* open panel: number, heading, chips ------------------------------------- */
.sp-body {
  position: absolute; left: 30px; right: 30px; bottom: 30px;
  display: block;
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s ease, transform .6s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
.svc-panel.is-open .sp-body {
  opacity: 1; transform: none;
  transition-delay: .30s;
}
.sp-num.open { display: block; margin-bottom: 12px; }
.sp-body h3 {
  color: #fff;
  font-size: clamp(1.35rem, 1.9vw, 2.05rem);
  line-height: 1.12;
  font-weight: 400; letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.sp-body .badges { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-body .badge {
  display: inline-block;
  font-size: clamp(11px, 0.85vw, 15px); line-height: 1.45;
  padding: 6px 15px; border-radius: 20px;
  white-space: nowrap;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}
.svc-panel.is-open .sp-body .badge { opacity: 1; transform: none; }
.svc-panel.is-open .sp-body .badge:nth-child(1) { transition-delay: .46s; }
.svc-panel.is-open .sp-body .badge:nth-child(2) { transition-delay: .55s; }
.svc-panel.is-open .sp-body .badge:nth-child(3) { transition-delay: .64s; }
.svc-panel.is-open .sp-body .badge:nth-child(4) { transition-delay: .73s; }

/* arrow */
.sp-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.6);
  transition: opacity .4s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}
.sp-arrow svg { width: 18px; height: 18px; fill: var(--ink); }
.svc-panel.is-open .sp-arrow { opacity: 1; transform: none; transition-delay: .5s; }
.svc-panel.is-open:hover .sp-arrow { transform: scale(1.1); }

/* lime timer line along the foot of the open panel */
.sp-prog {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--lime);
  transform: scaleX(0); transform-origin: 0 50%;
  opacity: 0;
}
.svc-panel.is-open .sp-prog { opacity: 1; }
.svc-panel.is-open.is-timing .sp-prog { animation: sp-timer var(--hold, 4200ms) linear forwards; }
@keyframes sp-timer { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* stacked accordion on narrow screens ------------------------------------- */
@media (max-width: 900px) {
  .svc-acc { --acc-h: 620px; --open: 5; flex-direction: column; gap: 8px; }
  .sp-rail { left: 24px; right: 24px; top: 0; bottom: 0; }
  .sp-rail .sp-num { top: 50%; left: 0; right: auto; transform: translateY(-50%); text-align: left; }
  .sp-vtitle {
    writing-mode: horizontal-tb;
    left: 40px; bottom: 50%; transform: translateY(50%);
    max-height: none; font-size: 17px;
  }
  .sp-body { left: 24px; right: 24px; bottom: 24px; }
  .sp-body h3 { font-size: 1.5rem; }
  .sp-arrow { width: 40px; height: 40px; top: 18px; right: 18px; }
}
@media (max-width: 560px) {
  .svc-acc { --acc-h: 580px; }
  .sp-body .badge { font-size: 12px; padding: 5px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-panel { transition: none; }
  .svc-panel.is-open .sp-img { animation: none; }
  .svc-panel.is-open.is-timing .sp-prog { animation: none; }
}

/* ---------- process icons ---------- */
.p-step .p-ico {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--ink-16);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--ink-70);
  background: var(--white);
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .45s cubic-bezier(.215, .61, .355, 1);
}
.p-step .p-ico svg { width: 21px; height: 21px; }
.p-step:hover .p-ico {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}

/* ---------- thank-you / utility pages ---------- */
.thanks-wrap {
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad-x) 80px;
  max-width: 1100px; margin: 0 auto;
}
.thanks-wrap .eyebrow { color: var(--ink-55); margin-bottom: 20px; }
.thanks-wrap h1 {
  font-size: clamp(2.4rem, 6vw, 90px);
  line-height: 1.02; margin-bottom: 26px;
}
.thanks-wrap p { font-size: 1.1rem; line-height: 1.6; max-width: 34em; margin-bottom: 16px; }
.thanks-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.btn-solid {
  display: inline-block;
  font-size: .95rem; font-weight: 500;
  background: var(--ink); color: var(--cream);
  border-radius: 100px; padding: 14px 32px;
  transition: background .3s, color .3s, transform .3s;
}
.btn-solid:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-size: .95rem; font-weight: 500;
  border: 1px solid var(--ink-16);
  border-radius: 100px; padding: 14px 32px;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ---------- long forms (quote, hosting, client, debit order) ---------- */
.formpage { padding: 150px var(--pad-x) clamp(60px, 6vw, 110px); max-width: 1100px; margin: 0 auto; }
.formpage .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.formpage h1 { font-size: clamp(2.2rem, 4.6vw, 68px); line-height: 1.05; margin-bottom: 22px; }
.formpage > p.intro { font-size: 1.05rem; line-height: 1.6; max-width: 40em; margin-bottom: clamp(34px, 4vw, 54px); }
/* The intro copy block sat flush against the first fieldset legend. */
.formpage > .copy { max-width: 46em; margin-bottom: clamp(34px, 4vw, 54px); }
.formpage > .copy p + p { margin-top: 14px; }
.bform { display: flex; flex-direction: column; gap: 18px; }
.bform fieldset { border: 0; }
.bform legend {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-55); margin-bottom: 18px;
}
.bform .fgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.bform .fgrid.one { grid-template-columns: 1fr; }
@media (max-width: 690px) { .bform .fgrid { grid-template-columns: 1fr; } }
.bform .field { display: flex; flex-direction: column; gap: 7px; }
.bform label {
  font-size: .78rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-55);
}
.bform input, .bform textarea, .bform select {
  font-family: inherit; font-size: 1rem; color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  width: 100%;
}
.bform textarea { min-height: 150px; resize: vertical; }
.bform input:focus, .bform textarea:focus, .bform select:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 255, 0, .35);
}
.bform .hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.bform .consent { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; line-height: 1.5; }
.bform .consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; padding: 0; }
.bform .consent label { text-transform: none; letter-spacing: 0; font-size: .92rem; color: var(--ink-70); }
.bform button {
  align-self: flex-start;
  font-size: 1rem; font-weight: 500;
  background: var(--ink); color: var(--cream);
  border: 0; border-radius: 100px;
  padding: 16px 42px; cursor: pointer;
  transition: background .3s, color .3s, transform .3s;
}
.bform button:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }
.bform .form-note { font-size: .92rem; min-height: 1.4em; }
.bform .form-note.ok { color: #0a5c2b; }
.bform .form-note.err { color: #8a1f00; }
.bform .divider-rule { height: 1px; background: var(--line); margin: 16px 0; }

/* ---------- legal / terms pages ---------- */
.legal { padding: 150px var(--pad-x) clamp(60px, 6vw, 110px); max-width: 900px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.2rem, 4.6vw, 64px); line-height: 1.05; margin-bottom: 26px; }
.legal .copy { font-size: 1rem; line-height: 1.68; }

/* ---------- case study gallery captions on the co.za work pages ---------- */
.case-gallery .grow figure img { background: #fff; }
/* ==========================================================================
   RETAINER SECTIONS
   Copy & SEO Plan §5-§7. Text is plain and visible from first paint; nothing
   here depends on a hover or an animation to be readable.
   ========================================================================== */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Sound familiar ---------------------------------------------- */
.sound-familiar {
  background: var(--grey);
  padding: clamp(64px, 7vw, 118px) var(--pad-x);
}
.sf-head { max-width: 1600px; margin: 0 auto clamp(34px, 4vw, 58px); }
.sf-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.sf-head h2 {
  font-size: clamp(2rem, 4.2vw, 62px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--ink);
}
.sf-list { max-width: 1600px; margin: 0 auto; border-top: 1px solid var(--line); }
.sf-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding: clamp(24px, 2.6vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
.sf-n {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: var(--ink-40); padding-top: .45em;
}
.sf-pain h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  line-height: 1.2; font-weight: 550; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 8px;
}
.sf-pain p { font-size: .95rem; line-height: 1.6; color: var(--ink-70); margin: 0; }
.sf-fix { display: flex; gap: 14px; align-items: flex-start; }
.sf-arrow {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  font-size: 1rem; line-height: 1;
}
.sf-fix p {
  font-size: clamp(.98rem, 1.15vw, 1.1rem); line-height: 1.55;
  color: var(--ink); margin: 0; font-weight: 450;
}
@media (max-width: 860px) {
  .sf-item { grid-template-columns: 40px minmax(0, 1fr); gap: 14px 16px; }
  .sf-fix { grid-column: 2; }
}

/* ---------- What waiting costs ------------------------------------------ */
.waiting {
  background: var(--ink); color: var(--cream);
  padding: clamp(70px, 8vw, 130px) var(--pad-x);
}
.wait-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.waiting h2 {
  font-size: clamp(2rem, 4.4vw, 66px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--cream);
  margin-bottom: 28px;
}
.wait-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.42rem);
  line-height: 1.6; color: rgba(241, 237, 230, .82);
  max-width: 42em; margin: 0 auto 36px;
}
.wait-lead strong { color: var(--lime); font-weight: 600; }

/* ---------- Why not just hire ------------------------------------------- */
.whyhire { background: var(--white); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.wh-head { max-width: 1600px; margin: 0 auto clamp(30px, 3.4vw, 52px); }
.wh-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.wh-head h2 {
  font-size: clamp(2rem, 4.2vw, 62px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 20px;
}
.wh-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55;
  color: var(--ink-70); max-width: 40em;
}
.wh-grid {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.wh-item h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem); font-weight: 550;
  letter-spacing: -0.025em; color: var(--ink); margin: 0 0 10px;
  padding-top: 20px; border-top: 2px solid var(--ink);
}
.wh-item p { font-size: .97rem; line-height: 1.65; color: var(--ink-70); margin: 0; }
.wh-kicker-wrap { max-width: 1600px; margin: clamp(40px, 4.4vw, 66px) auto 0; }
.wh-kicker {
  max-width: 24em; margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.2;
  letter-spacing: -0.03em; color: var(--ink); font-weight: 450;
}
.wh-cta { max-width: 1600px; margin: 26px auto 0; }
@media (max-width: 860px) { .wh-grid { grid-template-columns: 1fr; } }

/* comparison table */
.cmp-wrap {
  max-width: 1600px; margin: clamp(38px, 4vw, 60px) auto 0;
  overflow-x: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.cmp { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .93rem; }
.cmp th, .cmp td {
  text-align: left; padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top; line-height: 1.45;
}
.cmp thead th {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-55); background: var(--grey);
  white-space: nowrap;
}
.cmp tbody th {
  font-weight: 550; color: var(--ink); white-space: nowrap;
  background: var(--grey); width: 150px;
}
.cmp td { color: var(--ink-70); }
.cmp .is-druff { background: var(--ink); color: var(--cream); font-weight: 500; }
.cmp thead .is-druff { background: var(--ink); color: var(--lime); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }

/* ---------- Proof: three quotes, no carousel ---------------------------- */
.proof { background: var(--white); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.proof-head { max-width: 1600px; margin: 0 auto clamp(34px, 4vw, 56px); }
.proof-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.proof-head h2 {
  font-size: clamp(2rem, 4.2vw, 62px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--ink);
}
.proof-grid {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}
.pq {
  margin: 0; padding: clamp(26px, 2.4vw, 38px);
  background: var(--grey); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 20px;
}
.pq-logo {
  width: auto; height: 30px; object-fit: contain; object-position: left center;
  align-self: flex-start;
  filter: brightness(0); opacity: .58;
}
/* a client we have a quote from but no mark for — hold the row open */
.pq-logo.is-empty { display: block; width: 1px; }
.pq blockquote { margin: 0; flex: 1 1 auto; }
.pq blockquote p {
  font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.55;
  color: var(--ink); margin: 0; letter-spacing: -0.012em;
}
.pq figcaption { display: flex; flex-direction: column; gap: 3px; padding-top: 18px; border-top: 1px solid var(--line); }
.pq-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.pq-org { color: var(--ink-70); font-size: .9rem; }
.pq-since { font-size: .78rem; letter-spacing: .06em; color: var(--deep-lime); font-weight: 600; }
@media (max-width: 940px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- Home pricing block ------------------------------------------ */
.priceblock {
  background: var(--ink); color: var(--cream);
  padding: clamp(64px, 7vw, 118px) var(--pad-x);
}
.pb-head { max-width: 1600px; margin: 0 auto clamp(32px, 3.6vw, 54px); }
.pb-head .eyebrow { color: rgba(241, 237, 230, .6); margin-bottom: 18px; }
.pb-head h2 {
  font-size: clamp(2rem, 4.2vw, 62px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--cream); margin-bottom: 18px;
}
.pb-anchor { font-size: clamp(1rem, 1.35vw, 1.24rem); color: rgba(241, 237, 230, .78); max-width: 40em; }
.pb-anchor strong { color: var(--cream); font-weight: 600; }
.pb-cards {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(14px, 1.6vw, 24px);
}
.pb-card {
  border: 1px solid rgba(241, 237, 230, .18);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 38px);
  background: rgba(255, 255, 255, .03);
}
.pb-card.is-lead {
  background: #1B2214;
  border-color: rgba(200, 255, 0, .30);
  box-shadow: inset 3px 0 0 var(--lime);
}
.pb-card h3 {
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(241, 237, 230, .62); margin: 0 0 14px;
}
.pb-card.is-lead h3 { color: var(--lime); }
.pb-price {
  font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1;
  letter-spacing: -0.04em; color: var(--cream); margin-bottom: 22px;
}
.pb-price span { font-size: .9rem; letter-spacing: 0; color: rgba(241, 237, 230, .55); margin-left: 6px; }
.pb-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pb-card li {
  position: relative; padding-left: 20px;
  font-size: .93rem; line-height: 1.5; color: rgba(241, 237, 230, .82);
}
.pb-card li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}
.pb-guarantee {
  max-width: 1600px; margin: clamp(30px, 3.2vw, 46px) auto 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.55;
  color: rgba(241, 237, 230, .86);
  padding: 20px 24px; border-left: 3px solid var(--lime);
  background: rgba(255, 255, 255, .03);
  padding-right: max(24px, calc(100% - 48em));
}
.pb-guarantee strong { color: var(--lime); font-weight: 600; }
.pb-cta { max-width: 1600px; margin: 30px auto 0; }
@media (max-width: 940px) { .pb-cards { grid-template-columns: 1fr; } }

/* ---------- What you get (design retainer) ------------------------------ */
.whatyouget { background: var(--white); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.wyg-head, .wyg-list, .ex-row, .wyg-price, .wyg-eyebrow { max-width: 1600px; margin-left: auto; margin-right: auto; }
.wyg-head { margin-bottom: clamp(30px, 3.4vw, 50px); }
.wyg-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.wyg-head h2 {
  font-size: clamp(2rem, 4.2vw, 62px); line-height: 1.04;
  letter-spacing: -0.04em; color: var(--ink);
}
.wyg-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 1200px) { .wyg-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .wyg-list { grid-template-columns: 1fr; } }
.wyg-list li {
  background: var(--white); padding: 20px 22px;
  font-size: .96rem; line-height: 1.45; color: var(--ink);
  position: relative; padding-left: 44px;
}
.wyg-list li::before {
  content: ''; position: absolute; left: 22px; top: 1.42em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
}
.wyg-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-55); margin-top: clamp(38px, 4vw, 58px); margin-bottom: 18px;
}
.ex-row { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ex-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--grey);
  font-size: .93rem; color: var(--ink);
}
.ex-sla {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--ink); background: var(--lime);
  padding: 3px 9px; border-radius: 20px;
}
.wyg-price {
  margin-top: clamp(34px, 3.6vw, 52px);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--ink-70);
}
.wyg-price strong { color: var(--ink); font-weight: 600; }
.wyg-price .cta-underline { margin-left: 14px; }

/* ---------- Pricing plans ------------------------------------------------ */
.plans { background: var(--white); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.plans-head, .plans-grid, .plans-note { max-width: 1600px; margin-left: auto; margin-right: auto; }
.plans-head { margin-bottom: clamp(32px, 3.6vw, 54px); }
.plans-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.plans-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 52px); line-height: 1.08;
  letter-spacing: -0.035em; color: var(--ink-70); max-width: 22em;
}
.plans-head h2 strong { color: var(--ink); font-weight: 500; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 24px); }
.pl-card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 2.4vw, 38px);
  display: flex; flex-direction: column;
  background: var(--white);
}
.pl-card.is-lead {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  box-shadow: 0 34px 70px -40px rgba(0, 0, 23, .6);
}
.pl-tag {
  position: absolute; top: -12px; left: clamp(26px, 2.4vw, 38px);
  background: var(--lime); color: var(--ink);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px;
}
.pl-card h3 {
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-55); margin: 0 0 14px;
}
.pl-card.is-lead h3 { color: var(--lime); }
.pl-price {
  font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1;
  letter-spacing: -0.04em; color: var(--ink); margin-bottom: 24px;
}
.pl-card.is-lead .pl-price { color: var(--cream); }
.pl-price span { font-size: .88rem; letter-spacing: 0; color: var(--ink-55); margin-left: 5px; }
.pl-card.is-lead .pl-price span { color: rgba(241, 237, 230, .6); }
.pl-rows { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 0; flex: 1 1 auto; }
.pl-rows li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-top: 1px solid var(--line);
  font-size: .92rem; line-height: 1.4;
}
.pl-card.is-lead .pl-rows li { border-top-color: rgba(241, 237, 230, .16); }
.pl-k { color: var(--ink-55); flex: 0 0 auto; }
.pl-card.is-lead .pl-k { color: rgba(241, 237, 230, .6); }
.pl-v { color: var(--ink); text-align: right; font-weight: 500; }
.pl-card.is-lead .pl-v { color: var(--cream); }
.pl-cta {
  display: block; text-align: center;
  font-size: .92rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 14px 20px; border-radius: 100px;
  border: 1px solid var(--ink); color: var(--ink);
  transition: background .3s ease, color .3s ease;
}
.pl-cta:hover { background: var(--ink); color: var(--lime); }
.pl-card.is-lead .pl-cta { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.pl-card.is-lead .pl-cta:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.plans-note {
  margin-top: clamp(26px, 2.8vw, 40px);
  font-size: 1rem; line-height: 1.6; color: var(--ink-70);
  padding-right: max(0px, calc(100% - 52em));
}
.plans-note strong { color: var(--ink); font-weight: 600; }
@media (max-width: 940px) { .plans-grid { grid-template-columns: 1fr; } .pl-tag { top: -12px; } }

/* ---------- Slot calculator --------------------------------------------- */
.calc { background: var(--ink); color: var(--cream); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.calc-inner {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 70px); align-items: center;
}
.calc-copy .eyebrow { color: rgba(241, 237, 230, .6); margin-bottom: 18px; }
.calc-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 50px); line-height: 1.06;
  letter-spacing: -0.038em; color: var(--cream); margin-bottom: 18px;
}
.calc-lead { font-size: 1.05rem; line-height: 1.6; color: rgba(241, 237, 230, .78); max-width: 32em; }
.calc-panel {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(241, 237, 230, .18);
  border-radius: 16px;
  padding: clamp(26px, 2.6vw, 40px);
}
.calc-label {
  display: block;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(241, 237, 230, .6); margin-bottom: 6px;
}
.calc-out {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1;
  letter-spacing: -0.045em; color: var(--lime); margin-bottom: 20px;
}
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 4px;
  background: rgba(241, 237, 230, .2);
  outline-offset: 6px;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lime); cursor: grab; border: 0;
  box-shadow: 0 0 0 6px rgba(200, 255, 0, .16);
}
.calc-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lime); cursor: grab; border: 0;
  box-shadow: 0 0 0 6px rgba(200, 255, 0, .16);
}
.calc-scale {
  display: flex; justify-content: space-between;
  font-size: .74rem; color: rgba(241, 237, 230, .45); margin-top: 10px;
}
.calc-results {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: rgba(241, 237, 230, .16);
  border: 1px solid rgba(241, 237, 230, .16);
  border-radius: 12px; overflow: hidden;
  margin-top: 26px;
}
.calc-res {
  background: #232231; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.calc-res.is-lead { background: #1B2214; box-shadow: inset 3px 0 0 var(--lime); }
.cr-k {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(241, 237, 230, .58);
}
.cr-v { font-size: 1.02rem; font-weight: 550; letter-spacing: -0.02em; color: var(--cream); line-height: 1.3; }
.calc-res.is-lead .cr-v { color: var(--lime); }
.cr-v i { font-style: normal; font-size: .78rem; font-weight: 400; opacity: .65; }
.calc-foot { font-size: .8rem; line-height: 1.5; color: rgba(241, 237, 230, .5); margin-top: 16px; }
@media (max-width: 940px) {
  .calc-inner { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ---------- Included / quoted ------------------------------------------- */
.included {
  background: var(--white); padding: clamp(64px, 7vw, 110px) var(--pad-x);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 70px);
  max-width: calc(1600px + var(--pad-x) * 2); margin: 0 auto;
}
.inc-col .eyebrow { color: var(--ink-55); margin-bottom: 20px; }
.inc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.inc-list li {
  position: relative; padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line);
  font-size: .97rem; line-height: 1.5; color: var(--ink);
}
.inc-list li::before {
  content: ''; position: absolute; left: 0; top: 1.28em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
}
.inc-list.is-muted li { color: var(--ink-70); }
.inc-list.is-muted li::before { background: var(--ink-40); }
.inc-note { margin-top: 18px; font-size: .95rem; color: var(--ink-70); }
@media (max-width: 860px) { .included { grid-template-columns: 1fr; } }

/* ---------- What counts as one brief ------------------------------------ */
.briefdefs { background: var(--grey); padding: clamp(64px, 7vw, 110px) var(--pad-x); }
.bd-head, .bd-list { max-width: 1600px; margin-left: auto; margin-right: auto; }
.bd-head { margin-bottom: clamp(28px, 3vw, 44px); }
.bd-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.bd-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 52px); line-height: 1.06;
  letter-spacing: -0.038em; color: var(--ink);
}
.bd-list { border-top: 1px solid var(--line); }
.bd-row {
  display: grid; grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 44px);
  padding: 22px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.bd-k {
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
}
.bd-row p { font-size: 1rem; line-height: 1.6; color: var(--ink-70); margin: 0; }
@media (max-width: 690px) { .bd-row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Guarantee ---------------------------------------------------- */
.guarantee { background: var(--ink); color: var(--cream); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.gt-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.gt-inner .eyebrow { color: var(--lime); margin-bottom: 18px; }
.guarantee h2 {
  font-size: clamp(2rem, 4vw, 58px); line-height: 1.05;
  letter-spacing: -0.04em; color: var(--cream); margin-bottom: 22px;
}
.guarantee p {
  font-size: clamp(1.02rem, 1.35vw, 1.24rem); line-height: 1.6;
  color: rgba(241, 237, 230, .82); margin: 0 auto 32px; max-width: 40em;
}

/* ---------- FAQ ---------------------------------------------------------- */
.faq { background: var(--white); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.faq-head, .faq-list { max-width: 1100px; margin-left: auto; margin-right: auto; }
.faq-head { margin-bottom: clamp(28px, 3vw, 44px); }
.faq-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.faq-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 52px); line-height: 1.06;
  letter-spacing: -0.038em; color: var(--ink);
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-size: clamp(1.02rem, 1.4vw, 1.24rem); font-weight: 500;
  letter-spacing: -0.022em; color: var(--ink);
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--deep-lime); }
.faq-mark {
  position: relative; flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.faq-mark::before, .faq-mark::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--ink); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}
.faq-mark::before { width: 11px; height: 1.5px; }
.faq-mark::after { width: 1.5px; height: 11px; }
.faq-item[open] .faq-mark { background: var(--lime); border-color: var(--lime); }
.faq-item[open] .faq-mark::after { opacity: 0; }
.faq-body { padding: 0 0 24px; max-width: 46em; }
.faq-body p { font-size: 1rem; line-height: 1.65; color: var(--ink-70); margin: 0; }

/* ---------- Book a call -------------------------------------------------- */
.book {
  background: var(--white);
  padding: clamp(46px, 6vw, 96px) var(--pad-x) clamp(64px, 7vw, 110px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(32px, 4vw, 76px);
  align-items: start;
}
.book-copy .eyebrow { color: var(--ink-55); margin-bottom: 20px; }
.book-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 76px); line-height: .98;
  letter-spacing: -0.045em; color: var(--ink); text-transform: uppercase;
  font-weight: 400; margin: 0 0 24px;
}
.book-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55;
  color: var(--ink-70); max-width: 32em;
}
.book-meta { display: flex; flex-wrap: wrap; gap: 34px; margin-top: clamp(32px, 3.4vw, 48px); }
.bm-block .eyebrow { color: var(--ink-55); margin-bottom: 10px; }
.book-form {
  background: var(--grey); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 2.6vw, 40px);
}
.book-form h2 {
  font-size: 1.15rem; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 24px;
}
.book-small { font-size: .82rem; line-height: 1.5; color: var(--ink-55); margin-top: 14px; }
.book-meta .cta-reveal, .book-meta .cta-reveal .t { color: var(--ink); }
.book-meta .cta-reveal { font-size: clamp(17px, 1.4vw, 26px); }
@media (max-width: 940px) { .book { grid-template-columns: 1fr; } }

/* ---------- How-we-work footnote ---------------------------------------- */
.p-note {
  max-width: 1600px; margin: clamp(30px, 3vw, 46px) auto 0;
  font-size: 1rem; line-height: 1.65; color: var(--ink-70);
  padding-left: 20px; border-left: 3px solid var(--lime);
  padding-right: max(0px, calc(100% - 54em));
}

/* ---------- Contact lead ------------------------------------------------- */
.contact-lead {
  font-size: clamp(1rem, 1.25vw, 1.14rem); line-height: 1.6;
  color: rgba(241, 237, 230, .78); max-width: 34em;
  margin: 0 0 30px;
}


/* ==========================================================================
   MOTION
   The audit asked for short reveals and a real reduced-motion path: text must
   never be waiting on an animation to become readable.
   ========================================================================== */
.reveal {
  transform: translateY(14px);
  transition: opacity .18s ease, transform .2s cubic-bezier(.22, .61, .36, 1);
}
.calc-foot { color: rgba(241, 237, 230, .62); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- v2 copy: the line under the services heading, the scope line
   under the pricing cards, and the FAQ block set like the process steps ---- */
.stack-sub {
  margin: 18px 0 0; max-width: 44em;
  font-size: clamp(1rem, 1.15vw, 1.16rem); line-height: 1.6; color: var(--ink-70);
}
.pb-scope {
  max-width: 1600px; margin: clamp(26px, 3vw, 40px) auto 0;
  font-size: clamp(.95rem, 1.15vw, 1.08rem); line-height: 1.6;
  color: rgba(241, 237, 230, .72); padding-right: max(24px, calc(100% - 52em));
}
.faq { background: var(--grey); color: var(--ink); padding: clamp(64px, 7vw, 118px) var(--pad-x); }
.faq-wrap {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 96px); align-items: start;
}
.faq .p-head { margin: 0; position: sticky; top: calc(var(--nav-h, 80px) + 32px); }
.faq .p-head .eyebrow { color: var(--ink-55); margin-bottom: 18px; }
.faq .p-head h2 {
  font-size: clamp(1.8rem, 3.1vw, 48px); line-height: 1.1;
  letter-spacing: -0.035em; color: var(--ink); max-width: 12em; margin: 0;
}
.faq-acc { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; gap: 22px; width: 100%;
  padding: 22px 0; margin: 0; border: 0; background: none; text-align: left;
  font: inherit; color: var(--ink); cursor: pointer;
}
.faq-q .pn {
  flex: none; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: var(--ink-40); transition: color .3s ease;
}
.faq-q .faq-t {
  flex: 1; font-size: clamp(1.05rem, 1.4vw, 1.35rem); font-weight: 550;
  letter-spacing: -0.02em; line-height: 1.25;
}
/* a plus that turns into a minus */
.faq-q .faq-ic {
  flex: none; position: relative; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line); transition: background .3s ease, border-color .3s ease, transform .4s var(--ease-out, ease);
}
.faq-q .faq-ic::before, .faq-q .faq-ic::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: var(--ink);
  width: 10px; height: 1.5px; transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out, ease), background .3s ease;
}
.faq-q .faq-ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q:hover .faq-ic, .faq-q:focus-visible .faq-ic { border-color: var(--ink); }
.faq-q:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 4px; }
.faq-item.is-open .faq-q .pn { color: var(--ink); }
.faq-item.is-open .faq-ic { background: var(--lime); border-color: var(--lime); }
.faq-item.is-open .faq-ic::after { transform: translate(-50%, -50%) rotate(0deg); }
/* the answer opens on a grid track, so it needs no fixed height */
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out, ease);
}
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0; padding: 0 48px 24px 0; max-width: 40em;
  color: var(--ink-70); line-height: 1.65; margin-left: calc(22px + 1.4em);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
@media (max-width: 1000px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .faq .p-head { position: static; }
  .faq-a p { margin-left: 0; padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-ic, .faq-ic::before, .faq-ic::after { transition: none !important; }
}

/* --- pricing: what runs through your slot, and what we quote (§5.4) ----- */
.quotedsplit { padding: clamp(70px, 8vw, 130px) var(--pad-x); }
.qc-head { max-width: 1600px; margin: 0 auto clamp(34px, 4vw, 58px); }
.qc-head h2 { font-size: clamp(1.9rem, 3.4vw, 46px); line-height: 1.08; margin: 10px 0 0; }
.qc-grid {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  align-items: start;
}
.qc-col {
  border-top: 2px solid var(--ink);
  padding-top: clamp(16px, 1.8vw, 24px);
}
.qc-col:last-child { border-top-color: rgba(0, 0, 23, .22); }
.qc-note {
  margin: 6px 0 clamp(14px, 1.6vw, 20px);
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
}
.qc-col:last-child .qc-note { color: var(--ink-70); }
.qc-foot {
  max-width: 1600px; margin: clamp(30px, 3.4vw, 52px) auto 0;
  font-size: .95rem; color: #333;
}
@media (max-width: 900px) {
  .qc-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- pricing: the guarantee under the plans ---------------------------- */
.plans-guarantee {
  max-width: 1600px; margin: clamp(22px, 2.4vw, 34px) auto 0;
  font-size: .98rem; color: #333;
}
.plans-guarantee strong { color: var(--ink); }

/* --- book a call: send us one brief (§7) -------------------------------- */
.freebrief {
  background: var(--ink); color: var(--cream);
  padding: clamp(64px, 7vw, 118px) var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
}
.freebrief .eyebrow { color: var(--lime); margin-bottom: 18px; }
.freebrief h2 {
  font-size: clamp(1.9rem, 3.4vw, 50px); line-height: 1.06;
  letter-spacing: -0.035em; margin: 0 0 22px;
}
.fb-lead { font-size: 1.05rem; line-height: 1.65; color: #D0D0D0; max-width: 34em; }
.fb-small { margin-top: 22px; font-size: .88rem; line-height: 1.6; color: rgba(241, 237, 230, .55); }
.freebrief .bform { display: flex; flex-direction: column; gap: 16px; }
.freebrief .fld { display: flex; flex-direction: column; gap: 8px; }
.freebrief label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(241, 237, 230, .6);
}
.freebrief label .opt { text-transform: none; letter-spacing: 0; opacity: .7; }
.freebrief input, .freebrief textarea {
  width: 100%; padding: 15px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(241, 237, 230, .18);
  border-radius: 12px;
  color: var(--cream); font: inherit; font-size: .98rem;
}
.freebrief textarea { resize: vertical; min-height: 120px; }
.freebrief input::placeholder, .freebrief textarea::placeholder { color: rgba(241, 237, 230, .38); }
.freebrief input:focus, .freebrief textarea:focus {
  outline: none; border-color: var(--lime); background: rgba(255, 255, 255, .08);
}
.freebrief button[type="submit"] {
  align-self: flex-start; margin-top: 6px;
  padding: 16px 34px; border: 0; border-radius: 40px;
  background: var(--lime); color: var(--ink);
  font: inherit; font-weight: 700; font-size: .98rem; cursor: pointer;
  transition: transform .3s ease;
}
.freebrief button[type="submit"]:hover { transform: translateY(-2px); }
.freebrief .form-note { font-size: .9rem; }
.freebrief .form-note.ok { color: var(--lime); }
.freebrief .form-note.err { color: #FF9B8A; }
.freebrief .hp { position: absolute; left: -9999px; }
@media (max-width: 900px) { .freebrief { grid-template-columns: minmax(0, 1fr); } }
@media (prefers-reduced-motion: reduce) {
  .freebrief button[type="submit"]:hover { transform: none; }
}

/* --- utilities that used to be inline styles ---------------------------- */
.u-link { text-decoration: underline; text-underline-offset: 4px; }
.eyebrow--lead { color: var(--accent); margin-bottom: 18px; }
.cta-reveal--small {
  font-size: .85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
}
