/* Accron Services · base styles
   Tokens derived from real logo extraction (see brand-spec.md). */

/* Self-hosted fonts — latin subset, served from this domain only.
   No request leaves the site, so no third-party IP transfer (GDPR). */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600-normal.woff2') format('woff2');
}

:root {
  --navy: #002050;
  --navy-deep: #001840;
  --navy-soft: #002858;
  --charcoal: #404040;
  --ink: #1a1a1a;
  --muted: #6b6f76;
  --rule: #e6e8ec;
  --rule-strong: #c9ccd2;
  --surface: #ffffff;
  --bg: #f7f6f1;
  --bg-warm: #efece4;
  --accent: #9a7a3c;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-deep); }

::selection { background: var(--navy); color: #fff; }

/* Typography ----------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1em; max-width: 62ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rule-strong);
}

.eyebrow.left::after { display: none; }
.eyebrow.left::before { display: inline-block; }
.eyebrow.right::before { display: none; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  color: var(--charcoal);
  font-weight: 400;
  font-style: italic;
  max-width: 56ch;
}

/* Layout shells ----------------------------------------------------- */

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(64px, 9vw, 120px) 0; }
section.band { background: var(--bg-warm); }
section.dark { background: var(--navy); color: #e9eaef; }
section.dark h2, section.dark h3 { color: #ffffff; }
section.dark p { color: #c4c8d3; }

.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Skip link ----------------------------------------------------- */

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* Header ----------------------------------------------------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 50px; width: auto; }

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-wordmark .name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.brand-wordmark .sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--charcoal);
  margin-top: 3px;
}

@media (max-width: 640px) {
  .brand-wordmark { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}

.nav a:hover { color: var(--navy); }

.nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy);
}

.nav .btn {
  margin-left: 12px;
  color: #fff;
  padding: 15px 26px;
  font-size: 0.95rem;
}
.nav .btn:hover { color: #fff; }

/* Mobile menu toggle ----------------------------------------------------- */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.nav-toggle .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.nav-toggle .bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    box-shadow: 0 10px 24px -18px rgba(0, 32, 80, 0.25);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a:not(.btn) {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { color: var(--navy); }
  .nav .btn {
    margin: 16px 0 0;
    justify-content: center;
  }
}

/* Buttons ----------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--navy);
  border-radius: 2px;
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}
.btn:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); }
.btn .arrow { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn.ghost {
  background: transparent;
  color: var(--navy);
}
.btn.ghost:hover { background: var(--navy); color: #fff; }

.btn.light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn.light:hover { background: var(--bg-warm); color: var(--navy); }

/* Hero ----------------------------------------------------- */

.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; }
}

.hero h1 { margin-bottom: 28px; }
.hero h1 em {
  font-style: italic;
  color: var(--charcoal);
  font-weight: 400;
}

.hero .lede { margin-bottom: 36px; }

.hero-meta {
  border-top: 1px solid var(--rule-strong);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-meta .row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-meta .row .k {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  min-width: 100px;
}
.hero-meta .row .v {
  color: var(--ink);
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Section heading block ----------------------------------------------------- */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

@media (min-width: 820px) {
  .section-head { grid-template-columns: 1fr 1.1fr; align-items: end; gap: 64px; }
}

.section-head .left .eyebrow { margin-bottom: 22px; }
.section-head .left h2 { max-width: 14ch; }
.section-head .right p { color: var(--charcoal); font-size: 1.05rem; }
.section-head .right p:last-child { margin-bottom: 0; }

/* Services grid ----------------------------------------------------- */

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}

@media (min-width: 720px) {
  .services-list { grid-template-columns: 1fr 1fr; }
}

.service {
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 720px) {
  .service { padding-right: 32px; }
  .service:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 40px; }
  .service:nth-child(even) { padding-left: 40px; }
}

.service .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  padding-top: 6px;
  min-width: 30px;
}

.service h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.service p {
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

/* "Why choose" block — quiet 3-up ----------------------------------------------------- */

.points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (min-width: 720px) {
  .points { grid-template-columns: repeat(3, 1fr); }
}

/* Two-box variant — centred, narrower block */
.points.points-2 {
  max-width: 760px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .points.points-2 { grid-template-columns: repeat(2, 1fr); }
}

.point {
  background: var(--bg);
  padding: 36px 32px;
}
.point .marker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.point h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.point p {
  color: var(--charcoal);
  font-size: 0.94rem;
  margin: 0;
}

/* Process — numbered steps ----------------------------------------------------- */

.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}

@media (min-width: 720px) {
  .process { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.step {
  padding: 32px 0;
  border-top: 1px solid var(--rule-strong);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--charcoal);
  font-size: 0.96rem;
  margin: 0;
}

/* CTA band ----------------------------------------------------- */

.cta-band {
  text-align: center;
}
.cta-band .eyebrow {
  color: var(--accent);
  justify-content: center;
}
.cta-band .eyebrow::before,
.cta-band .eyebrow::after {
  background: var(--accent);
  width: 36px;
}
.cta-band h2 {
  color: #fff;
  max-width: 18ch;
  margin: 24px auto 22px;
}
.cta-band .lede {
  color: #c4c8d3;
  font-style: normal;
  margin: 0 auto 36px;
  text-align: center;
}
.cta-band .email-large {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  display: inline-block;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  margin-bottom: 28px;
}
.cta-band .email-large:hover { border-bottom-color: #fff; color: #fff; }

/* Footer ----------------------------------------------------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 56px 0 36px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
}

.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--charcoal); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--navy); }

.footer-brand p {
  color: var(--charcoal);
  font-size: 0.9rem;
  max-width: 38ch;
  margin-top: 4px;
}

.footer-compliance {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: grid;
  gap: 18px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.footer-compliance .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-compliance .legal span { white-space: nowrap; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-legal-links a {
  color: var(--charcoal);
  font-size: 0.8rem;
}
.footer-legal-links a:hover { color: var(--navy); }
.footer-legal-links .sep { color: var(--rule-strong); }

.footer-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
  max-width: 90ch;
  line-height: 1.55;
  font-style: italic;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* Page header (non-home pages) ----------------------------------------------------- */

.page-header {
  padding: clamp(72px, 11vw, 140px) 0 clamp(48px, 8vw, 88px);
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 24px;
  max-width: 22ch;
}
.page-header .lede { max-width: 56ch; margin: 0; }
.page-header .eyebrow { margin-bottom: 28px; }

/* Contact-specific ----------------------------------------------------- */

.contact-card {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  padding: clamp(40px, 6vw, 64px);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-card .eyebrow { margin-bottom: 24px; }

.contact-card .email-huge {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4.4vw, 2.6rem);
  color: var(--navy);
  display: inline-block;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 6px;
  margin: 12px 0 28px;
  word-break: break-all;
}
.contact-card .email-huge:hover {
  border-bottom-color: var(--navy);
}

.contact-note {
  font-size: 0.92rem;
  color: var(--charcoal);
  max-width: 48ch;
  margin: 0 auto;
}

.contact-meta {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

@media (min-width: 720px) {
  .contact-meta { grid-template-columns: repeat(3, 1fr); }
}

.contact-meta .label {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-meta .value {
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* Cookie consent banner ----------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  transform: translateX(-50%);
  z-index: 1000;
  width: min(680px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 24, 64, 0.16);
  padding: clamp(20px, 3vw, 28px);
}
.cookie-banner p {
  margin: 0 0 18px;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.cookie-banner a { border-bottom: 1px solid var(--rule-strong); }
.cookie-banner a:hover { border-bottom-color: var(--navy); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-actions .btn { font-size: 0.85rem; padding: 11px 20px; }
@media (max-width: 480px) {
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

/* Enquiry form ----------------------------------------------------- */

.contact-form-card { text-align: left; }

.form-intro {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0 0 32px;
  max-width: 52ch;
}

.botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 32px;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 24px 28px; }
  .field-full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 9px; }

.field label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.field label .opt {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input:hover,
.field textarea:hover { border-color: var(--muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(0, 32, 80, 0.08);
}

.enquiry-form .btn { width: 100%; justify-content: center; }
@media (min-width: 600px) { .enquiry-form .btn { width: auto; } }

.form-privacy {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 58ch;
}
.form-privacy a { border-bottom: 1px solid var(--rule-strong); }
.form-privacy a:hover { border-bottom-color: var(--navy); }

.contact-alt {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-alt a { border-bottom: 1px solid var(--rule-strong); padding-bottom: 1px; }
.contact-alt a:hover { border-bottom-color: var(--navy); }

/* Prose for about / services pages ----------------------------------------------------- */

.prose {
  max-width: 64ch;
}
.prose p {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
}
.prose p:first-of-type::first-line {
  font-weight: 500;
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
}
@media (min-width: 820px) {
  .two-col { grid-template-columns: 1fr 1.6fr; }
}
.two-col aside .eyebrow { margin-bottom: 14px; }
.two-col aside h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

/* Trust strip (used on home + about) ----------------------------------------------------- */

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

@media (min-width: 720px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: 0; }
@media (max-width: 719px) {
  .trust-item { border-right: 0; border-bottom: 1px solid var(--rule); }
  .trust-item:last-child { border-bottom: 0; }
}

.trust-item .k {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.trust-item .v {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  font-feature-settings: 'tnum';
}

/* Legal pages ----------------------------------------------------- */

.legal-prose {
  max-width: 68ch;
}
.legal-prose h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 1.4em;
  margin-bottom: 0.4em;
  color: var(--navy);
}
.legal-prose p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.65;
}
.legal-prose ul {
  color: var(--charcoal);
  padding-left: 0;
  list-style: none;
  margin: 0 0 1em;
}
.legal-prose ul li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.legal-prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.legal-prose .meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Focus states ----------------------------------------------------- */

a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
