@font-face {
  font-family: "Fraunces";
  src: url("fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Fraunces";
  src: url("fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Fraunces";
  src: url("fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: block;
}

@font-face {
  font-family: "Work Sans";
  src: url("work-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Work Sans";
  src: url("work-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Work Sans";
  src: url("work-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: block;
}

:root {
  --ink: #16233B;
  --paper: #EDEAE1;
  --paper-raised: #F5F3EC;
  --charcoal: #2A2823;
  --accent: #E6B450;
  --accent-deep: #855F13;
  --rule: #C9C3B4;
  --max: 720px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

/* Header */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.header-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  font-size: 15px;
  text-decoration: none;
  color: var(--charcoal);
  margin-right: 22px;
}
.nav-link:hover { color: var(--accent-deep); }
.nav-cta {
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.nav-cta:hover { color: var(--accent-deep); border-color: var(--accent); }

/* Hero */
.hero { padding: 72px 24px 48px; }
.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-photo {
  flex: 0 0 auto;
  width: 168px;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.hero h1 {
  font-size: 40px;
  max-width: 15ch;
}
.hero-sub {
  margin-top: 22px;
  max-width: 56ch;
  font-size: 18px;
  color: var(--charcoal);
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }

/* Proof strip */
.proof {
  padding: 40px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}
.stat-num.small { font-size: 24px; }
.stat-label {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0;
}

/* How I work */
.work { padding: 64px 24px; }
.work h2 { font-size: 26px; margin-bottom: 32px; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.work-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}
.work-item p {
  font-size: 15px;
  color: var(--charcoal);
}

/* Engagements */
.engagements { padding: 64px 24px; border-top: 1px solid var(--rule); }
.engagements h2 { font-size: 26px; margin-bottom: 36px; }

.case {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.case:first-of-type { border-top: none; padding-top: 0; }

.case-head { margin-bottom: 14px; }
.case h3 { font-size: 22px; margin-bottom: 4px; }
.case-meta {
  font-size: 14px;
  color: var(--accent-deep);
  margin: 0;
}
.case-body {
  font-size: 16px;
  max-width: 62ch;
}
.case-stat {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dotted var(--rule);
  display: inline-block;
}

/* About */
.about { padding: 56px 24px; border-top: 1px solid var(--rule); }
.about h2 { font-size: 26px; margin-bottom: 20px; }
.about p { max-width: 62ch; font-size: 16px; }

/* Contact */
.contact {
  padding: 64px 24px 72px;
  border-top: 1px solid var(--rule);
}
.contact h2 { font-size: 28px; margin-bottom: 14px; }
.contact-terms { font-size: 16px; }

/* Footer */
.site-footer {
  padding: 28px 24px 48px;
  font-size: 14px;
  color: var(--charcoal);
}
.site-footer a { color: var(--charcoal); }

/* Responsive */
@media (max-width: 600px) {
  .site-header { padding: 16px 0; }
  .wordmark { font-size: 16px; }
  .header-links { gap: 12px; }
  .nav-link { font-size: 13px; margin-right: 12px; }
  .nav-cta { font-size: 13px; padding: 8px 12px; }
  .hero { padding: 48px 20px 36px; }
  .hero-inner { flex-direction: column-reverse; gap: 28px; }
  .hero-photo { width: 120px; }
  .hero h1 { font-size: 30px; max-width: none; }
  .proof { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .case h3 { font-size: 20px; }
}

/* Case studies page */
.back-link { margin-bottom: 18px; }
.back-link a { font-size: 14px; text-decoration: none; border-bottom: 1px solid var(--rule); }
.back-link a:hover { color: var(--accent-deep); border-color: var(--accent); }
.cs-hero { padding-bottom: 32px; }

.cs-list { padding-bottom: 24px; }
.cs-case {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}
.cs-case:first-of-type { border-top: 1px solid var(--rule); }
.cs-case h2 { font-size: 26px; margin-bottom: 4px; }
.cs-case .case-meta { margin-bottom: 20px; }

.cs-block { margin-bottom: 18px; max-width: 62ch; }
.cs-block h3 {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.cs-block p { font-size: 16px; }
.cs-result { margin-bottom: 0; }
.cs-result h3 { color: var(--accent-deep); }

.see-all { margin-top: 40px; }
.see-all a {
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.see-all a:hover { color: var(--accent-deep); border-color: var(--accent); }

/* Bold stat-break panel (alternative to the small inline chart) */
.stat-break {
  margin: 28px calc(-1 * (50vw - 50%)) 0;
  background: var(--ink);
  padding: 44px 24px;
  text-align: center;
}
.stat-break-num {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 500;
  color: #EDEAE1;
  margin: 0 0 10px;
  line-height: 1;
}
.stat-break-label {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #C9C3B4;
  max-width: 40ch;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .stat-break-num { font-size: 48px; }
}

/* Testimonials — paired with matching case studies */
.testimonial {
  margin: 24px 0 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--accent);
}
.testimonial p {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 10px;
  max-width: 58ch;
}
.testimonial cite {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--charcoal);
}

/* Ideal Engagements */
.ideal { padding: 56px 24px; border-top: 1px solid var(--rule); }
.ideal h2 { font-size: 26px; margin-bottom: 32px; }
.ideal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.ideal-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.ideal-item p {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.ideal-cta {
  font-size: 14px;
  text-decoration: none;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.ideal-cta:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 600px) {
  .ideal-list { grid-template-columns: 1fr; }
}

/* Resources page */
.resource-list { padding-bottom: 24px; }
.resource-card {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.resource-card:first-of-type { border-top: 1px solid var(--rule); }
.resource-card h3 { font-size: 22px; margin-bottom: 10px; }
.resource-group-title {
  font-size: 26px;
  margin: 44px 0 6px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.resource-list > .resource-group-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.resource-group-sub {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 60ch;
}
.resource-desc { font-size: 16px; max-width: 58ch; margin-bottom: 20px; }
.resource-form { display: flex; flex-direction: column; gap: 14px; }
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.resource-form input[type="text"],
.resource-form input[type="email"] {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  color: var(--charcoal);
  min-width: 200px;
}
.resource-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.resource-form button {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: 1px solid var(--ink);
}
.form-consent { font-size: 13px; color: var(--charcoal); }
.form-consent label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.form-consent input[type="checkbox"] { margin-top: 2px; }
.form-privacy-note { margin-top: 8px; font-size: 12px; color: var(--charcoal); }
.form-privacy-note a { color: var(--accent-deep); }

@media (max-width: 600px) {
  .form-row { flex-direction: column; align-items: stretch; }
  .form-row input, .form-row button { width: 100%; }
}

/* Case study closing CTAs */
.case-cta {
  margin-top: 18px;
  font-size: 14px;
  color: var(--charcoal);
}
.case-cta a {
  color: var(--accent-deep);
  text-decoration: underline;
}
.case-cta a:hover { color: var(--ink); }

/* Privacy policy page */
.policy { padding-bottom: 24px; }
.policy-section {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  max-width: 68ch;
}
.policy-section:first-of-type { border-top: 1px solid var(--rule); }
.policy-section h2 { font-size: 19px; margin-bottom: 10px; }
.policy-section p { font-size: 15px; margin-bottom: 10px; }
.policy-list { margin: 8px 0 10px 20px; font-size: 15px; }
.policy-list li { margin-bottom: 6px; }
.policy-list strong { color: var(--ink); }

/* Campaign landing pages */
.tracking-pixel { display: none; }
.landing-page .wrap { max-width: 1080px; }

.lp-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.lp-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  gap: 64px;
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
  padding: 76px 24px 60px;
  text-align: left;
}
.lp-kicker,
.lp-diagnostic-label {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.lp-hero h1 {
  max-width: 19ch;
  margin-bottom: 22px;
  font-size: 52px;
  font-size: clamp(38px, 4.25vw, 58px);
  letter-spacing: -.025em;
}
.lp-hero h1 span { color: var(--accent-deep); }
.lp-hero .lp-sub {
  max-width: 61ch;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-size: 18px;
}

.lp-diagnostic {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  box-shadow: 14px 14px 0 rgba(22, 35, 59, .06);
}
.lp-diagnostic::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: translateX(-110%);
  animation: diagnostic-scan 6s ease-in-out infinite;
}
.lp-diagnostic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-diagnostic-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  opacity: .58;
  animation: diagnostic-step 6s ease-in-out infinite;
}
.lp-diagnostic-step:nth-child(2) { animation-delay: 2s; }
.lp-diagnostic-step:nth-child(3) { animation-delay: 4s; }
.lp-diagnostic-no {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.lp-diagnostic-step strong {
  display: block;
  margin: -4px 0 3px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}
.lp-diagnostic-step span:last-child {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.lp-checklist { padding: 58px 24px 22px; }
.lp-checklist h2 {
  max-width: 22ch;
  margin-bottom: 26px;
  font-size: 30px;
}
.lp-checklist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 78px;
  width: calc(50% - 22px);
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  font-size: 16px;
}
.lp-check-item:last-child:nth-child(odd) { width: 100%; }
.lp-check-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid var(--accent);
}
.lp-check-icon::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
}
.lp-bridge {
  max-width: 72ch;
  padding: 24px 24px 54px;
  font-size: 18px;
}

.lp-proof {
  margin: 0;
  padding: 48px 24px;
  background: var(--ink);
  color: var(--paper);
}
.lp-proof-inner {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 44px;
  align-items: center;
  padding: 0;
}
.lp-proof .stat-break-num {
  margin: 0;
  color: var(--paper);
  font-size: 64px;
  font-size: clamp(48px, 6vw, 72px);
  text-align: left;
}
.lp-proof .stat-break-label {
  max-width: 58ch;
  margin: 0;
  color: #D9D4C8;
  font-size: 16px;
  text-align: left;
}

.lp-cta-block {
  max-width: 760px !important;
  padding: 68px 24px 72px;
  text-align: center;
}
.lp-cta-block .lp-kicker { margin-bottom: 12px; }
.lp-cta-block h2 {
  margin-bottom: 16px;
  font-size: 34px;
  font-size: clamp(28px, 3vw, 36px);
}
.lp-cta-copy {
  max-width: 54ch;
  margin: 0 auto 26px;
  font-size: 16px;
}
.lp-cta-block .hero-actions {
  justify-content: center;
  margin-top: 0;
}
.lp-cta-block .btn {
  padding: 14px 28px;
  font-size: 16px;
}
.lp-cta-note {
  margin-top: 13px;
  color: var(--charcoal);
  font-size: 13px;
}

@keyframes diagnostic-scan {
  0%, 8% { transform: translateX(-110%); }
  38%, 70% { transform: translateX(300%); }
  100% { transform: translateX(300%); }
}

@keyframes diagnostic-step {
  0%, 30%, 100% { opacity: .58; transform: translateX(0); }
  8%, 22% { opacity: 1; transform: translateX(4px); }
}

@media (max-width: 820px) {
  .lp-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 58px;
  }
  .lp-hero h1 { max-width: 20ch; }
  .lp-diagnostic { max-width: 580px; }
}

@media (max-width: 600px) {
  .lp-header { padding: 16px 20px; }
  .lp-header .wrap { padding: 0; }
  .lp-hero { gap: 34px; padding: 48px 20px 38px; }
  .lp-hero h1 { font-size: 36px; }
  .lp-hero .lp-sub { font-size: 17px; }
  .lp-diagnostic { padding: 24px; box-shadow: 8px 8px 0 rgba(22, 35, 59, .06); }
  .lp-checklist { padding: 46px 20px 18px; }
  .lp-check-item { min-height: 0; width: 100%; }
  .lp-bridge { padding: 20px 20px 44px; }
  .lp-proof { padding: 42px 20px; }
  .lp-proof-inner { grid-template-columns: 1fr; gap: 16px; }
  .lp-proof .stat-break-num,
  .lp-proof .stat-break-label { text-align: center; }
  .lp-cta-block { padding: 54px 20px 60px; }
  .lp-cta-block .hero-actions { flex-direction: column; align-items: stretch; }
  .lp-cta-block .btn { width: 100%; }
}

/* ─── Sticky header ─────────────────────────────── */
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--rule);
}

/* ─── Brand logos strip ─────────────────────────── */
.logos {
  padding: 28px 24px;
  border-bottom: 1px solid var(--rule);
}
.logos-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rule);
  margin-bottom: 16px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.brand-logo {
  height: 36px;
  width: auto;
  opacity: 0.72;
  transition: opacity 0.15s ease;
  border-radius: 4px;
}
.brand-logo:hover { opacity: 1; }

@media (max-width: 600px) {
  .logos-row { gap: 10px; }
  .brand-logo { height: 30px; }
}

/* ─── Engagement models (contact section) ──────────── */
.engagement-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 40px;
}
.engagement-item {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.engagement-label {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.engagement-desc { font-size: 14px; color: var(--charcoal); margin-bottom: 8px; }
.engagement-rate { font-size: 13px; font-weight: 600; color: var(--accent-deep); }

/* ─── Call explainer (contact section) ─────────────── */
.call-explainer {
  background: var(--paper-raised);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.call-explainer h3 { font-size: 18px; margin-bottom: 16px; }
.call-steps { list-style: none; padding: 0; }
.call-steps li { padding: 10px 0 10px 0; border-top: 1px solid var(--rule); font-size: 15px; }
.call-steps li:first-child { border-top: none; }
.call-note { font-size: 13px; color: var(--charcoal); margin-top: 12px; font-style: italic; }

/* ─── Services page ─────────────────────────────────── */
.services-list { padding-bottom: 24px; }
.service-card {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.service-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.service-card h2 { font-size: 26px; }
.service-rate { font-size: 14px; color: var(--accent-deep); font-weight: 600; }
.service-desc { font-size: 16px; max-width: 62ch; margin-bottom: 10px; }
.service-includes { margin: 14px 0 0 20px; font-size: 15px; }
.service-includes li { margin-bottom: 6px; color: var(--charcoal); }

/* ─── Call explainer full (services page) ───────────── */
.call-explainer-full {
  padding: 48px 24px;
  border-top: 1px solid var(--rule);
}
.call-explainer-full h2 { font-size: 26px; margin-bottom: 32px; }
.call-steps-full { display: flex; flex-direction: column; gap: 0; }
.call-step-item {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: flex-start;
}
.call-step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
  margin: 0;
}
.call-step-item h3 { font-size: 18px; margin-bottom: 8px; }
.call-step-item p { font-size: 15px; color: var(--charcoal); margin: 0; }

@media (max-width: 600px) {
  .engagement-models { grid-template-columns: 1fr; }
  .service-header { flex-direction: column; gap: 4px; }
  .call-step-item { flex-direction: column; gap: 10px; }
}

/* ─── Cookie consent banner ─────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: #C9C3B4;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 13px;
  line-height: 1.5;
}
#cookie-banner a { color: #E6B450; }
#cookie-banner p { margin: 0; flex: 1; min-width: 260px; }
.cookie-btn {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 13px;
  padding: 8px 18px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.cookie-btn--accept { background: #E6B450; color: var(--ink); font-weight: 600; }
.cookie-btn--decline { background: transparent; color: #C9C3B4; border: 1px solid #C9C3B4; }
.cookie-btn--accept:hover { background: #d4a43e; }
.cookie-btn--decline:hover { color: #EDEAE1; border-color: #EDEAE1; }

/* ─── Mobile hamburger nav ───────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 600px) {
  .nav-toggle { display: flex; }
  .header-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 2px solid var(--rule);
    padding: 16px 24px 20px;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    z-index: 99;
  }
  .header-links.nav-open { display: flex; }
  .nav-link { font-size: 16px; margin-right: 0; }
  .nav-cta { margin-top: 4px; }
  /* header needs position relative for the dropdown */
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}

/* ─── Real brand logos — homepage strip ─────────── */
.brand-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.brand-logo--square {
  height: 40px;
  width: 40px;
  border-radius: 6px;
}
.brand-logo[src="logo-royalmail.png"] { height: 72px; }
.brand-logo:hover { opacity: 1; }

/* ─── Case study logos ───────────────────────────── */
.cs-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}
.cs-logo--square {
  height: 36px;
  width: 36px;
  border-radius: 4px;
}
.cs-logo--wide {
  height: 28px;
  max-width: 200px;
}
.cs-logo[src="logo-royalmail.png"] { height: 60px; }
