:root {
  --bg: #ffffff;
  --card: #ffffff;
  --ink: #000000;
  --muted: #484848;
  --accent: #000000;
  --accent-text: #222222;
  --chip: #d8d8d8;
  --line: #a8a8a8;
  --btn: #000000;
  --btn-ink: #ffffff;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

body.card .page { padding-bottom: 150px; }

/* ---- Card header ---- */

.avatar {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 2px;
  background: linear-gradient(135deg, #7a7a7a, #1f1f1f);
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 22px;
  overflow: hidden;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(100%) contrast(1.04);
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
}

.title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  margin-top: 6px;
}

.tagline {
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  margin-top: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  background: var(--chip);
  border: 1px solid #d0d0ce;
  border-radius: 2px;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--ink);
}

/* ---- Contact rows ---- */

.rows { margin-top: 30px; }

.row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.row:last-child { border-bottom: none; }

.row .icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: var(--btn);
  color: var(--btn-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.row .icon svg { width: 22px; height: 22px; }

.row > span:last-child { min-width: 0; }
.row .label { font-size: 17px; font-weight: 500; overflow-wrap: anywhere; }
.row .sub { font-size: 14px; color: var(--muted); }

/* ---- Save contact bar ---- */

.savebar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 22px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 65%, rgba(255, 255, 255, 0));
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.savebtn {
  pointer-events: auto;
  display: block;
  width: 100%;
  max-width: 360px;
  background: var(--btn);
  color: var(--btn-ink);
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 2px;
}

/* ---- Offers page ---- */

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  padding: 12px;
  margin: -12px -12px 10px;
}

.offers-intro {
  color: var(--muted);
  font-size: 17px;
  margin-top: 10px;
}

.offer {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: 0;
  padding: 22px;
  margin-top: 22px;
}

.offer .pub {
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.offer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

.offer .price {
  color: var(--accent-text);
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

.offer .fit {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

.offer ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.offer li { margin-top: 6px; font-size: 16px; }

.offer .deliverable {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.offer .cta {
  display: block;
  background: var(--btn);
  color: var(--btn-ink);
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 2px;
  margin-top: 18px;
}

.offers-footer {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-top: 34px;
}

.offers-footer a { color: var(--ink); }

footer.credit {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 40px;
}
footer.credit a { color: var(--muted); }
footer.credit a:hover { color: var(--ink); }

.page-wide { max-width: 760px; }

.resource-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: 0;
  padding: 22px;
  margin-top: 22px;
}

.resource-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

.resource-section .pub {
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.resource-section .fit {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

.resource-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.resource-empty {
  color: var(--muted);
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.resource-item > span { min-width: 0; }

.resource-item strong,
.resource-item small {
  display: block;
}

.resource-item small {
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.resource-item em {
  flex: none;
  color: var(--accent-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.resource-section .cta {
  display: block;
  background: var(--btn);
  color: var(--btn-ink);
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 2px;
  margin-top: 18px;
}

/* ===================== Full site ===================== */

html { scroll-behavior: smooth; }

body.site { background: var(--bg); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--btn-ink);
  padding: 10px 14px;
  border-radius: 2px;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.section { scroll-margin-top: 80px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #000;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}

.brand-monogram {
  width: 36px;
  height: 36px;
  display: block;
  flex: 0 0 36px;
}

.brand-name { display: grid; line-height: 1; }
.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.brand-name small {
  margin-top: 5px;
  color: #bdbdbd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.nav-links { display: none; gap: 22px; }
.nav-links a { color: #c8c8c8; text-decoration: none; font-size: 15px; }
.nav-links a:hover { color: #fff; }

.nav .btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.nav .btn:hover { background: #d3d3d3; }

.btn {
  display: inline-block;
  background: var(--btn);
  color: var(--btn-ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease;
}

.btn:hover { background: #333; }

.btn-small {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  padding: 9px 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Hero */
.hero {
  max-width: 1060px;
  margin: 0 auto;
  padding: 50px 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

.hero-text { text-align: center; }

.eyebrow {
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.18;
  text-align: inherit;
}

.hero-sub {
  color: #d6d6d6;
  font-size: 18px;
  margin-top: 14px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.hero-note { color: #bdbdbd; font-size: 14px; margin-top: 12px; }
.hero-note a { color: #fff; }

.hero .btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hero .btn:hover { background: #d8d8d8; }
.hero .btn-ghost {
  background: #000;
  color: #fff;
  border-color: #fff;
}
.hero .btn-ghost:hover { background: #fff; color: #000; }

.hero-photo img {
  width: 230px;
  height: 230px;
  border: 1px solid #fff;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  box-shadow: 14px 14px 0 #696969;
}

/* Press strip */
.press-strip {
  text-align: center;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #d0d0d0;
}
.press-strip p { color: var(--muted); font-size: 15px; }
.press-strip a { color: var(--muted); text-decoration: none; font-size: 15px; }
.press-strip strong { color: var(--ink); }

/* Sections */
.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 54px 22px 10px;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-intro { color: var(--muted); font-size: 17px; margin-bottom: 10px; max-width: 640px; }
.section-close { color: var(--muted); font-size: 16px; margin: 22px 0 6px; }
.section-close a,
.text-link { color: var(--ink); font-weight: 700; }
.eyebrow-dark { color: #3f3f3f; }

#problems {
  margin-top: 58px;
  padding-bottom: 54px;
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
#problems h2 { color: #000; }
#problems .problems li { border-color: #b0b0b0; }
#problems .problems li::before { color: #000; }

#services {
  margin-top: 64px;
  padding-bottom: 64px;
  background: #d0d0d0;
  box-shadow: 0 0 0 100vmax #d0d0d0;
  clip-path: inset(0 -100vmax);
}

#process {
  margin-top: 64px;
  padding-bottom: 64px;
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}
#process h2 { color: #fff; }
#process .steps li { border-color: #444; }
#process .steps li::before { background: #fff; color: #000; }
#process .section-close { color: #cfcfcf; }
#process .section-close a { color: #fff; font-weight: 700; }

#who {
  padding-bottom: 54px;
  border-bottom: 2px solid #000;
}

/* Conversion-focused scorecard feature */
.scorecard-teaser {
  max-width: none;
  margin-top: 64px;
  padding: 64px max(22px, calc((100vw - 1060px) / 2)) 68px;
  display: grid;
  gap: 34px;
  background: #000;
  color: #fff;
}
.scorecard-teaser h2 { color: #fff; }
.scorecard-teaser .eyebrow,
.scorecard-teaser .section-intro { color: #d6d6d6; }
.scorecard-teaser .btn { margin-top: 24px; background: #fff; color: #000; border-color: #fff; }
.scorecard-teaser .btn:hover { background: #d8d8d8; }
.check-list { list-style: none; margin-top: 22px; }
.check-list li { position: relative; padding: 8px 0 8px 28px; color: #efefef; }
.check-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.scorecard-visual {
  align-self: stretch;
  display: grid;
  grid-template-columns: 64px 1fr;
  border: 1px solid #6a6a6a;
}
.scorecard-visual span,
.scorecard-visual strong {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 12px 16px;
  border-bottom: 1px solid #474747;
}
.scorecard-visual span { color: #a8a8a8; font-family: Georgia, serif; font-size: 22px; }
.scorecard-visual strong { border-left: 1px solid #474747; font-size: 19px; letter-spacing: 0.4px; }
.scorecard-visual span:nth-last-child(-n+2),
.scorecard-visual strong:last-child { border-bottom: 0; }

/* Deliverables and insight previews */
.deliverable-grid,
.insight-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
.deliverable-card,
.insight-card {
  position: relative;
  border: 1px solid #000;
  border-top: 4px solid #000;
  padding: 24px;
  background: #fff;
}
.deliverable-card .card-number { color: #666; font-family: Georgia, serif; font-size: 16px; }
.deliverable-card h3,
.insight-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.25; margin-top: 18px; }
.deliverable-card p:last-child,
.insight-card > p:last-child { color: var(--muted); margin-top: 12px; }
.trust-note { color: var(--muted); font-size: 14px; max-width: 760px; margin: 20px 0 14px; }
.text-link { display: inline-block; margin-top: 10px; text-underline-offset: 4px; }

#insights { padding-bottom: 64px; }
.insight-card .pub { color: #505050; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.insight-card h3 a { color: #000; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* Long-form pages */
.content-page { max-width: 900px; }
.content-page > h1 { text-align: left; font-size: 36px; line-height: 1.12; }
.content-page .page-intro { max-width: 720px; color: var(--muted); font-size: 19px; margin-top: 14px; }
.content-page .page-kicker { color: #4b4b4b; font-size: 13px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 10px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.content-section { margin-top: 48px; }
.content-section h2 { font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.2; }
.content-section h3 { font-family: Georgia, "Times New Roman", serif; font-size: 21px; margin-top: 26px; }
.content-section p,
.content-section li { font-size: 17px; }
.content-section p { margin-top: 12px; }
.content-section ul,
.content-section ol { margin: 14px 0 0 22px; }
.content-section li { margin-top: 8px; }
.content-section a { color: #000; }
.sample-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
.sample-panel { border: 1px solid #000; border-top: 4px solid #000; padding: 24px; background: #fff; }
.sample-panel .pub { color: #505050; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.sample-panel h2 { margin-top: 8px; }
.sample-panel h3 { font-size: 18px; margin-top: 20px; }
.sample-panel p,
.sample-panel li { font-size: 16px; }
.sample-panel ul,
.sample-panel ol { margin: 12px 0 0 20px; }
.sample-panel li { margin-top: 7px; }
.sample-box { margin-top: 18px; padding: 18px; background: #e2e2e2; border-left: 4px solid #000; }
.sample-box strong { display: block; }
.sample-box p { margin-top: 6px; }
.metric-list { display: grid; gap: 8px; list-style: none; margin-left: 0 !important; }
.metric-list li { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid #aaa; }
.metric-list span:last-child { color: #555; text-align: right; }
.disclaimer { margin-top: 34px; padding: 18px; border: 1px solid #777; color: #444; font-size: 14px; }

/* Insights library and article typography */
.library-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
.library-card { border-top: 4px solid #000; padding: 22px 0; }
.library-card .pub,
.article-meta { color: #555; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.library-card h2 { font-size: 25px; margin-top: 9px; }
.library-card h2 a { color: #000; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.library-card p { color: var(--muted); margin-top: 10px; font-size: 16px; }
.article { max-width: 760px; }
.article > h1 { text-align: left; font-size: 38px; line-height: 1.1; }
.article-deck { color: var(--muted); font-size: 20px; margin-top: 16px; }
.article-meta { margin-top: 18px; }
.article-body { margin-top: 40px; }
.article-body h2 { font-family: Georgia, "Times New Roman", serif; font-size: 27px; line-height: 1.2; margin-top: 40px; }
.article-body h3 { font-family: Georgia, "Times New Roman", serif; font-size: 21px; margin-top: 30px; }
.article-body p,
.article-body li { font-size: 18px; line-height: 1.68; }
.article-body p { margin-top: 16px; }
.article-body ul,
.article-body ol { margin: 14px 0 0 24px; }
.article-body li { margin-top: 9px; }
.article-body a { color: #000; }
.article-callout { margin: 34px 0; padding: 24px; background: #000; color: #fff; }
.article-callout h2 { color: #fff; margin-top: 0; }
.article-callout p { color: #dedede; }
.article-callout a { color: #fff; font-weight: 800; }

/* Interactive scorecard */
.tool-page { max-width: 920px; }
.tool-page > h1 { text-align: left; font-size: 38px; line-height: 1.1; }
.tool-intro { color: var(--muted); font-size: 19px; max-width: 720px; margin-top: 14px; }
.privacy-note { display: inline-block; margin-top: 18px; padding: 10px 14px; background: #e0e0e0; font-size: 14px; font-weight: 700; }
.scorecard-form { margin-top: 40px; }
.score-group { border: 0; margin-top: 42px; }
.score-group > legend { width: 100%; padding-bottom: 10px; border-bottom: 4px solid #000; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 700; }
.question { padding: 24px 0; border-bottom: 1px solid #aaa; }
.question > p { font-size: 18px; font-weight: 700; }
.answer-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.answer-row label { position: relative; display: block; }
.answer-row input { position: absolute; opacity: 0; pointer-events: none; }
.answer-row span { display: grid; place-items: center; min-height: 48px; padding: 8px 10px; border: 1px solid #000; background: #fff; color: #000; font-size: 14px; font-weight: 700; text-align: center; cursor: pointer; }
.answer-row input:checked + span { background: #000; color: #fff; }
.answer-row input:focus-visible + span { outline: 3px solid #777; outline-offset: 3px; }
.score-submit { margin-top: 36px; }
.score-error { color: #8a0000; font-weight: 700; margin-top: 14px; }
.score-result { margin-top: 48px; padding: 30px; background: #000; color: #fff; }
.score-result[hidden] { display: none; }
.score-result h2 { color: #fff; font-size: 31px; }
.score-result .result-score { font-family: Georgia, serif; font-size: 58px; line-height: 1; margin-top: 16px; }
.score-result .result-band { color: #fff; font-size: 21px; font-weight: 800; margin-top: 8px; }
.score-result .result-summary { color: #dedede; font-size: 17px; margin-top: 12px; max-width: 680px; }
.dimension-results { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
.dimension { padding: 14px; border: 1px solid #5f5f5f; }
.dimension strong,
.dimension span { display: block; }
.dimension span { color: #cfcfcf; margin-top: 3px; font-size: 14px; }
.score-result .btn { margin-top: 28px; background: #fff; color: #000; border-color: #fff; }
.score-result .btn:hover { background: #d8d8d8; }

.problems { list-style: none; max-width: 640px; }
.problems li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  position: relative;
}
.problems li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Service cards grid */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; }
.offer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

/* Steps */
.steps { max-width: 640px; counter-reset: step; list-style: none; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 56px;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
}

.chips-left { justify-content: flex-start; margin-top: 6px; }

/* About */
.about { display: flex; flex-direction: column; gap: 24px; }
#about {
  margin-top: 64px;
  padding-bottom: 64px;
  background: #d0d0d0;
  color: #000;
  box-shadow: 0 0 0 100vmax #d0d0d0;
  clip-path: inset(0 -100vmax);
}
#about h2,
#about .quote { color: #000; }
#about .about-text p { color: #252525; }
#about .quote { border-left-color: #000; }
#about .quote cite { color: #555; }
.about-photo img {
  width: 190px;
  height: 190px;
  border: 1px solid var(--ink);
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(100%) contrast(1.05);
}
.about-text p { font-size: 17px; margin-bottom: 14px; max-width: 640px; }

.quote {
  border-left: 3px solid var(--ink);
  padding: 6px 0 6px 18px;
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  max-width: 560px;
}
.quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { max-width: 640px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-size: 17px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
}
.faq summary:hover { color: var(--accent); }
.faq p { font-size: 16px; color: var(--muted); padding: 0 0 16px; }

/* Final CTA */
.final-cta {
  max-width: none;
  margin-top: 58px;
  padding: 64px 22px 70px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.final-cta .section-intro { margin-left: auto; margin-right: auto; }
.final-cta .section-intro,
.final-cta .hero-note { color: #d6d6d6; }
.final-cta .hero-note a { color: #fff; }
.final-cta .btn { margin-top: 8px; }
.final-cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.final-cta .btn:hover { background: #d9d9d9; }

/* Footer */
.footer {
  border-top: 1px solid #000;
  text-align: center;
  padding: 28px 22px 40px;
  background: #000;
  color: #bdbdbd;
  font-size: 15px;
}
.footer strong { color: #fff; }
.footer a { color: #cfcfcf; }
.footer a:hover { color: #fff; }
.footer p { margin-bottom: 8px; }
.footer-fine { font-size: 13px; max-width: 560px; margin: 4px auto 0; }

/* Legal pages (privacy, terms) */
.legal h1 { text-align: left; font-size: 32px; }
.legal h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
  margin-top: 28px;
}
.legal p { font-size: 16px; margin-top: 12px; color: var(--ink); }
.legal p a { color: var(--accent-text); }
.legal-updated { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Card legal line */
.card-legal { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }
.card-legal a { color: var(--muted); text-decoration: none; }
.card-legal a:hover { color: var(--ink); }

/* Desktop */
@media (min-width: 760px) {
  .nav { padding: 14px 36px; }
  .nav-links { display: flex; }
  .hero {
    flex-direction: row;
    text-align: left;
    padding-top: 64px;
    gap: 48px;
  }
  .hero-text { text-align: left; flex: 1; }
  .hero h1 { font-size: 42px; }
  .hero-ctas { justify-content: flex-start; }
  .hero-photo img { width: 300px; height: 300px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .scorecard-teaser { grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); align-items: center; }
  .deliverable-grid,
  .insight-grid,
  .sample-grid,
  .library-grid { grid-template-columns: repeat(2, 1fr); }
  .dimension-results { grid-template-columns: repeat(5, 1fr); }
  .about { flex-direction: row; align-items: flex-start; gap: 44px; }
  .about-photo { flex: none; }
  .section { padding-top: 64px; }
}

@media (max-width: 939px) {
  .nav-links { display: none; }
}

@media (min-width: 940px) {
  .nav-links { display: flex; }
}

@media (max-width: 520px) {
  .nav .btn-small { font-size: 12px; padding: 8px 11px; }
  .brand-name { display: none; }
  .answer-row { grid-template-columns: 1fr; }
}

/* Keyboard focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #6b6b6b;
  outline-offset: 3px;
  border-radius: 6px;
}

/* Respect a reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Cookie consent and persistent settings */
body.cookie-consent-open { overflow: hidden; }

.cookie-settings-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #fff;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.cookie-settings-button:hover { background: #333; }
body.card .cookie-settings-button { bottom: 92px; }

.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.cookie-consent-backdrop[hidden] { display: none; }

.cookie-consent-dialog {
  width: min(100%, 680px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 24px;
  border: 2px solid #000;
  border-radius: 2px;
  background: #fff;
  color: #000;
  box-shadow: 12px 12px 0 #777;
}

.cookie-consent__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent__title {
  color: #000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
}

.cookie-consent__close {
  flex: none;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #000;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__close:hover { background: #e2e2e2; }

.cookie-consent__description,
.cookie-consent__details,
.cookie-consent__status {
  margin-top: 14px;
  color: #333;
  font-size: 15px;
}

.cookie-consent__details a {
  color: #000;
  font-weight: 700;
}

.cookie-consent__status {
  min-height: 23px;
  font-weight: 700;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.cookie-consent__button {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #000;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button:hover { background: #333; }
.legal code { font-size: 0.94em; overflow-wrap: anywhere; }

@media (min-width: 760px) {
  .cookie-consent-backdrop { align-items: center; }
}

@media (max-width: 520px) {
  .cookie-consent-dialog { padding: 20px; box-shadow: 8px 8px 0 #777; }
  .cookie-consent__actions { grid-template-columns: 1fr; }
}
