/* ==========================================================================
   Revolve Marketing — Website Design System
   Fonts: Montserrat (headings/display), Inter (body/UI)
   Palette: Void / Carbon / Slate / Ash / Mist / White / Moss / Sage / Fern
   ========================================================================== */

:root {
  --void: #000000;
  --carbon: #0e0e0e;
  --slate: #1c1c1c;
  --ash: #6e6e6e;
  --mist: #b4b4b4;
  --white: #ffffff;
  --moss: #2e3b27;
  --sage: #5b7552;
  --fern: #a6c77e;
  --paper: #f6f5f2;

  --moss-hover: #3a4b30;
  --fern-tint: #eef3e6;

  --font-display: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --max-width: 1200px;
  --section-pad: clamp(64px, 9vw, 128px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: clamp(19px, 2vw, 22px); }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 14px;
  display: block;
}

.section-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ash); font-size: 18px; }

.lede {
  font-size: 20px;
  color: var(--ash);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--moss); color: var(--white); }
.btn-primary:hover { background: var(--moss-hover); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark { background: transparent; color: var(--slate); border-color: var(--slate); }
.btn-outline-dark:hover { background: var(--slate); color: var(--white); }

.btn-text {
  color: var(--moss);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text::after { content: "\2192"; transition: transform 0.15s ease; }
.btn-text:hover::after { transform: translateX(3px); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.microcopy { font-size: 14px; color: var(--mist); margin-top: 16px; }
.band-white .microcopy, .band-paper .microcopy { color: var(--ash); }

/* ---------- Bands ---------- */
.band-void, .band-white, .band-paper, .band-carbon {
  padding: var(--section-pad) 0;
}
.band-void { background: var(--void); color: var(--white); }
.band-void .eyebrow { color: var(--fern); }
.band-void h1, .band-void h2, .band-void h3 { color: var(--white); }
.band-void p { color: var(--mist); }

.band-white { background: var(--white); }
.band-paper { background: var(--paper); }
.band-carbon { background: var(--carbon); color: var(--white); }
.band-carbon .eyebrow { color: var(--fern); }
.band-carbon h1, .band-carbon h2, .band-carbon h3 { color: var(--white); }
.band-carbon p { color: var(--mist); }

.band-tight { padding: 56px 0; }

/* Section-to-section rhythm: prevent two full-padding bands of the same
   background from doubling their gap when stacked back to back */
.band-void + .band-void,
.band-white + .band-white,
.band-paper + .band-paper,
.band-carbon + .band-carbon {
  padding-top: 0;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.site-nav .logo img { height: 46px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--mist);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links .free-audit-link { color: var(--fern); font-weight: 600; }
.nav-links .free-audit-link:hover { color: var(--white); }
.nav-menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-menu-toggle { display: block; }
}

/* ---------- Hero ----------
   The ring motif echoes the logo mark — a quiet brand signature no
   competitor's generic dark-hero-bold-headline template has. Subtle by
   design: two concentric outlined circles bleeding off the right edge. */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 var(--section-pad);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -140px;
  border-radius: 50%;
  border: 2px solid rgba(166,199,126,0.14);
  transform: translateY(-50%);
  pointer-events: none;
}
.hero::before { width: 460px; height: 460px; }
.hero::after { width: 300px; height: 300px; right: -40px; border-color: rgba(166,199,126,0.22); }
.hero .eyebrow { color: var(--fern); }
.hero h1 { max-width: 820px; position: relative; }
.hero .subhead { font-size: 20px; color: var(--mist); max-width: 620px; margin-bottom: 32px; position: relative; }
.hero-short { padding: clamp(64px, 8vw, 100px) 0 72px; }

.hero .container { position: relative; }
.hero-stat-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-stat-badge .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--fern);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-badge .label { color: var(--mist); font-size: 13.5px; max-width: 140px; line-height: 1.4; }
@media (max-width: 1100px) { .hero-stat-badge { display: none; } }

/* ---------- Answer block ---------- */
.answer-block {
  background: var(--paper);
  border-left: 3px solid var(--moss);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 820px;
}
.answer-block h2 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); margin-bottom: 10px; }
.answer-block p { font-size: 18px; color: var(--slate); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e7e5df;
  border: 1px solid #e7e5df;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.15s ease;
}
.service-card:hover { background: var(--paper); }
.service-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--moss);
  display: block;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ash); font-size: 15.5px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Track list (Services page) ---------- */
.track-list { display: flex; flex-direction: column; }
.track-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid #e7e5df;
}
.track-row:last-child { border-bottom: 1px solid #e7e5df; }
.track-row .num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--moss); }
.track-row h3 { margin: 0 0 6px; }
.track-row p { color: var(--ash); font-size: 15px; margin: 0; }
.track-row .qualifier { color: var(--sage); font-size: 14.5px; font-style: italic; }

@media (max-width: 800px) {
  .track-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 1.5px;
  background: var(--moss);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 15px;
}
.process-step h3 { margin-bottom: 8px; font-size: 18px; }
.process-step p { color: var(--ash); font-size: 14.5px; }
.band-void .process-step p, .band-carbon .process-step p { color: var(--mist); }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}

/* ---------- Six-step grid (website design process) ---------- */
.process-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
@media (max-width: 800px) {
  .process-grid-6 { grid-template-columns: 1fr; }
}

/* ---------- Credibility band ---------- */
.credibility-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.credibility-item { display: flex; gap: 14px; align-items: flex-start; }
.credibility-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fern);
  margin-top: 8px;
  flex-shrink: 0;
}
.credibility-item p { font-size: 15px; margin: 0; font-weight: 500; }

@media (max-width: 900px) {
  .credibility-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .credibility-row { grid-template-columns: 1fr; }
}

/* ---------- Cards / testimonials ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) {
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e7e5df;
  padding: 36px;
  border-radius: var(--radius);
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 40px; color: var(--fern); line-height: 1; margin-bottom: 12px; }
.testimonial-card p.quote { font-size: 16.5px; color: var(--slate); margin-bottom: 20px; }
.testimonial-card .attribution { font-size: 13.5px; color: var(--ash); font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Audit choice cards ---------- */
.choice-card {
  background: var(--white);
  border: 1px solid #e7e5df;
  padding: 32px;
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.choice-card:hover { border-color: var(--moss); }
.choice-card h3 { margin-bottom: 10px; }
.choice-card p { color: var(--ash); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid #e7e5df; }
.faq-list .faq-item:last-child { border-bottom: 1px solid #e7e5df; }
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--moss);
  font-weight: 400;
  margin-left: 20px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 0 24px; color: var(--ash); font-size: 15.5px; max-width: 680px; }

/* ---------- Signs / included lists ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  padding-left: 34px;
  position: relative;
  font-size: 16px;
  color: var(--slate);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.band-void .check-list li, .band-carbon .check-list li { color: var(--white); }
.band-void .check-list li::before, .band-carbon .check-list li::before { background: var(--fern); color: var(--void); }

/* Negative-statement variant: add x-list alongside check-list, e.g. class="check-list x-list" */
.check-list.x-list li::before { content: "\2715"; background: var(--mist); color: var(--slate); }
.band-void .check-list.x-list li::before, .band-carbon .check-list.x-list li::before { background: rgba(255,255,255,0.18); color: var(--white); }

/* ---------- Icon badge for credibility/feature items ---------- */
.credibility-item { align-items: center; }
.credibility-item .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fern);
  flex-shrink: 0;
  margin-top: 0;
  position: relative;
}
.credibility-item .dot::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--void);
  font-size: 11px;
  font-weight: 700;
}
.credibility-item .dot.moss { background: var(--moss); }
.credibility-item .dot.moss::after { color: var(--white); }

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--slate);
  max-width: 720px;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--fern);
  margin: 8px 0;
}
.band-void .pull-quote, .band-carbon .pull-quote { color: var(--white); }
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--sage);
  font-style: normal;
}

/* ---------- Sticky in-page subnav ---------- */
.subnav {
  position: sticky;
  top: 84px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid #e7e5df;
}
.subnav .container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  height: 54px;
  align-items: center;
  scrollbar-width: none;
}
.subnav .container::-webkit-scrollbar { display: none; }
.subnav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ash);
  white-space: nowrap;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--moss); }
[id] { scroll-margin-top: 150px; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: var(--void);
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 10px;
  }
  .mobile-cta-bar .btn { flex: 1; padding: 13px 10px; font-size: 14px; }
  body { padding-bottom: 74px; }
}

/* ---------- Functional mobile nav menu ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--void);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 32px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
}

.two-col-list { columns: 2; column-gap: 48px; }
@media (max-width: 700px) { .two-col-list { columns: 1; } }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Fit / values grid ---------- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.value-item h3 { color: var(--moss); }
.value-item p { color: var(--ash); font-size: 15.5px; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
@media (max-width: 800px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col h4 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sage); margin-bottom: 20px; }

/* ---------- Clarity Framework path (distinct from the card-grid pattern
   used everywhere else — this is the one piece of proprietary IP on the
   site, so it gets its own visual language: a connected sequence rather
   than another grid of boxes). Horizontal with a through-line on desktop,
   vertical stack with a side line on mobile. ---------- */
.clarity-path {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  margin: 44px 0 8px;
}
.clarity-path::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 29px;
  right: 29px;
  height: 2px;
  background: #e2dfd6;
  z-index: 0;
}
.band-void .clarity-path::before, .band-carbon .clarity-path::before { background: rgba(255,255,255,0.16); }
.clarity-node {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 190px;
}
.clarity-node .num {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
  border: 5px solid var(--white);
}
.band-paper .clarity-node .num { border-color: var(--paper); }
.band-void .clarity-node .num, .band-carbon .clarity-node .num { border-color: var(--void); background: var(--fern); color: var(--void); }
.clarity-node h3 { font-size: 16px; margin-bottom: 6px; }
.clarity-node p { font-size: 13.5px; color: var(--ash); line-height: 1.5; }
.band-void .clarity-node p, .band-carbon .clarity-node p { color: var(--mist); }
@media (max-width: 800px) {
  .clarity-path { flex-direction: column; align-items: flex-start; gap: 28px; }
  .clarity-path::before { top: 0; bottom: 0; left: 29px; right: auto; width: 2px; height: auto; }
  .clarity-node { flex-direction: row; text-align: left; max-width: none; gap: 18px; }
  .clarity-node .num { margin-bottom: 0; }
}

/* ---------- Founder ---------- */
.founder-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: stretch; }
@media (max-width: 800px) {
  .founder-wrap { grid-template-columns: 1fr; }
}

/* ---------- Table (where to start) ---------- */
.start-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.start-table th, .start-table td { text-align: left; padding: 18px 16px; border-top: 1px solid #e7e5df; font-size: 15px; vertical-align: top; }
.start-table th { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage); border-top: none; padding-bottom: 12px; }
.start-table td:nth-child(2) { font-weight: 600; color: var(--moss); white-space: nowrap; }
.start-table td:last-child, .start-table th:last-child { color: var(--ash); }
@media (max-width: 800px) {
  .start-table, .start-table thead, .start-table tbody, .start-table th, .start-table td, .start-table tr { display: block; }
  .start-table thead { display: none; }
  .start-table tr { border-top: 1px solid #e7e5df; padding: 16px 0; }
  .start-table td { border-top: none; padding: 4px 0; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--slate); }
.form-field .helper { font-size: 12.5px; color: var(--ash); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid #d8d5cd;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 1px;
}
.form-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ash); }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--slate);
  cursor: pointer;
}
.checkbox-option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--moss); flex-shrink: 0; }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid #e7e5df;
  padding: 40px;
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--void); color: var(--mist); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col img { height: 42px; margin-bottom: 18px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: 20px; }
.footer-col p { font-size: 14.5px; color: var(--mist); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--mist); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--fern); }
.footer-cta { padding: 48px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-cta h3 { color: var(--white); margin-bottom: 22px; }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; font-size: 13px; color: var(--ash);
}
.footer-legal a { color: var(--ash); }
.footer-legal a:hover { color: var(--mist); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.category-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.chip {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 14px; border-radius: 100px;
  background: var(--fern-tint); color: var(--moss);
  display: inline-block;
  transition: background 0.15s ease;
}
a.chip:hover { background: var(--moss); color: var(--white); }
.band-void .chip { background: rgba(166,199,126,0.15); color: var(--fern); }
.band-void a.chip:hover { background: var(--fern); color: var(--void); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

.post-card { border: 1px solid #e7e5df; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card .post-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--carbon), var(--moss)); }
.post-card .post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 18px; margin: 0; }
.post-card p { font-size: 14.5px; color: var(--ash); margin: 0; }
.post-card .read-link { margin-top: auto; font-size: 14px; }

.newsletter-block {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-block p { margin: 0; color: var(--ash); max-width: 420px; }

/* ---------- Blog post page ---------- */
.post-meta { display: flex; gap: 18px; align-items: center; font-size: 13.5px; color: var(--mist); flex-wrap: wrap; }
.post-content { max-width: 720px; margin: 0 auto; }
.post-content h2 { margin-top: 48px; }
.post-content p { font-size: 17px; color: var(--slate); }
.post-content .lede-answer {
  font-size: 19px;
  border-left: 3px solid var(--moss);
  padding-left: 20px;
  color: var(--slate);
  margin: 28px 0 36px;
}
.byline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.byline .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--slate); }
.byline .who { font-size: 14px; }
.byline .who strong { display: block; color: var(--slate); }
.byline .who span { color: var(--ash); font-size: 12.5px; }
.internal-link-card {
  background: var(--paper); border-left: 3px solid var(--fern);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0;
}
.internal-link-card a { font-weight: 600; color: var(--moss); }
.action-list { counter-reset: action; list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 18px; }
.action-list li { counter-increment: action; position: relative; padding-left: 44px; }
.action-list li::before {
  content: counter(action);
  position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--moss); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: var(--ash); margin-bottom: 18px; }
.breadcrumb a { color: var(--ash); }
.breadcrumb a:hover { color: var(--moss); }
.band-void .breadcrumb, .band-void .breadcrumb a { color: var(--mist); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.divider { height: 1px; background: #e7e5df; border: none; margin: 0; }
.band-void .divider, .band-carbon .divider { background: rgba(255,255,255,0.12); }

.dev-frame-note {
  background: #fffbe6; border: 1px dashed #d8c273; color: #6b5a1e;
  font-size: 12.5px; padding: 10px 16px; border-radius: 4px; margin-bottom: 24px;
}

/* ---------- Live site preview (Portfolio) ----------
   A real photo taken from the client's own live site, framed like a browser
   window, with a subtle zoom on hover/focus. An earlier version embedded
   the actual site live via <iframe> — dropped because it loaded two full
   external Wix sites (each with their own JS, fonts, and in DJ LB3's case
   an autoplaying video hero) directly into the page, which was slow and
   made the "video" effectively never render correctly inside the scaled
   frame. A static image is fast, always renders the same way, and the
   "Visit the live site" link is still the real way through to the site. */
.site-preview {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e7e5df;
  background: var(--carbon);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.35);
}
.site-preview-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--slate);
}
.site-preview-chrome .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.site-preview-chrome .dot.red { background: #ff5f57; }
.site-preview-chrome .dot.yellow { background: #febc2e; }
.site-preview-chrome .dot.green { background: #28c840; }
.site-preview-chrome .url-pill {
  margin-left: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--mist);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-preview-viewport {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
}
.site-preview-viewport img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform 2.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-preview:hover .site-preview-viewport img,
.site-preview:focus-within .site-preview-viewport img {
  transform: scale(1.06);
}
.site-preview-visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--slate);
}
.site-preview-visit a {
  color: var(--fern);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-preview-visit a::after { content: "\2197"; }
.site-preview-visit span { color: var(--mist); font-size: 12.5px; }

/* ---------- TCCB collage (print/social work, no site to embed) ----------
   Three large, legible pieces instead of five crammed into a mosaic —
   small thumbnails made this real work look like noise. */
.tccb-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.tccb-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e7e5df;
  transition: transform 0.3s ease;
  display: block;
}
.tccb-collage img:hover { transform: scale(1.02); }
.tccb-collage-side { display: flex; flex-direction: column; gap: 12px; }
.tccb-collage-main { grid-row: 1 / 3; height: 100%; min-height: 420px; }
.tccb-collage-side img { height: 204px; }
@media (max-width: 700px) {
  .tccb-collage { grid-template-columns: 1fr; margin-bottom: 28px; }
  .tccb-collage-main { min-height: 260px; }
  .tccb-collage-side { flex-direction: row; }
  .tccb-collage-side img { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-preview-viewport img { transition: none; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal="2"] { transition-delay: 0.05s; }
[data-reveal="3"] { transition-delay: 0.1s; }
[data-reveal="4"] { transition-delay: 0.15s; }
[data-reveal="5"] { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Card hover polish ---------- */
.service-card, .choice-card, .testimonial-card, .track-row {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.choice-card:hover, .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.25);
}
.track-row { position: relative; }
.track-row:hover { padding-left: 8px; }
.track-row a.btn-text { transition: transform 0.2s ease; }

/* ---------- Sr-only (accessible but visually hidden) ---------- */
.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;
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--fern);
  outline-offset: 2px;
}

/* ---------- Numeral display (credibility / stats) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--fern);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-item p { color: var(--mist); font-size: 15px; margin: 0; }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 1px solid #e7e5df;
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}
.price-card:hover { border-color: var(--moss); }
.price-card h3 { font-size: 18px; margin-bottom: 6px; }
.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--moss);
  margin: 0 0 10px;
  display: block;
}
.price-card .price-tag { font-size: 22px; }
.price-card p.desc { color: var(--ash); font-size: 14.5px; margin: 0; }
.choice-card .price-tag { margin: 4px 0 10px; }
.price-note {
  font-size: 13px; color: var(--ash); margin-top: 6px; font-style: italic;
}

/* ---------- Price list (rate-card rows, not another set of cards) ---------- */
.price-list-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .price-list-columns { grid-template-columns: 1fr; gap: 8px; } }
.price-list-group h3 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage);
  margin-bottom: 4px;
}
.price-list-group > p.group-note { color: var(--ash); font-size: 14px; margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e7e5df;
}
.price-row:last-child { border-bottom: none; }
.price-row-name { font-weight: 700; font-size: 16px; color: var(--slate); }
.price-row-desc { color: var(--ash); font-size: 13.5px; margin-top: 4px; line-height: 1.5; }
.price-row-amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--moss);
  white-space: nowrap;
  font-size: 15px;
  flex-shrink: 0;
}
.price-extras { margin-top: 40px; padding-top: 28px; border-top: 1px solid #e7e5df; }
.price-extras-list { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.price-extras-list > div { min-width: 220px; flex: 1; }
.price-extras-list .price-row-name { font-size: 14.5px; }
.price-extras-list .price-row-desc { font-size: 13px; }
