@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-700.woff2') format('woff2');
}

:root {
  --white: #FFFFFF;
  --paper: #F1F1F1;
  --paper-2: #ECECEC;
  --ink: #181818;
  --ink-soft: #2A2A2A;
  --gray-50: #F7F7F7;
  --gray-100: #E6E6E6;
  --gray-200: #D1D1D1;
  --gray-300: #B0B0B0;
  --gray-400: #6E6E6E;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --gray-700: #2F2F2F;
  --gray-800: #1F1F1F;
  --gray-900: #121212;
  --accent: #181818;
  --accent-dark: #000000;
  --accent-light: #E6E6E6;
  --accent-subtle: #F1F1F1;
  --rule: rgba(24, 24, 24, 0.14);
  --rule-strong: rgba(24, 24, 24, 0.28);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 18px -6px rgba(0,0,0,0.10), 0 2px 6px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 22px 48px -12px rgba(0,0,0,0.16), 0 8px 16px -8px rgba(0,0,0,0.08);
  --max-width: 1200px;
  --content-width: 760px;
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', 'Hoefler Text', serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
}

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

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--rule-strong); transition: color .2s, text-decoration-color .2s; }
a:hover { color: var(--ink); text-decoration-color: var(--ink); }

h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; }

ul, ol { padding-left: 1.25em; }

::selection { background: var(--ink); color: var(--white); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 10px 18px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.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; }

.section { padding: 96px 0; }
.section-paper { background-color: var(--paper); }
.section-ink { background-color: var(--ink); color: var(--white); position: relative; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.section-ink::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.12); z-index: 1; }
.section-ink::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle at 18% 30%, rgba(255,255,255,0.06) 0.5px, transparent 0.5px),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.05) 0.5px, transparent 0.5px),
    radial-gradient(circle at 34% 70%, rgba(255,255,255,0.05) 0.5px, transparent 0.5px),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,0.06) 0.5px, transparent 0.5px);
  background-size: 180px 180px, 200px 200px, 160px 160px, 190px 190px;
}
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink a { color: var(--white); }
.section-ink .btn-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.section-ink .btn-primary:hover { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-md); }
.section-ink .btn-primary:active { background: var(--gray-100); color: var(--ink); }

.eyebrow {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-500);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rule-strong); }
.section-ink .eyebrow { color: rgba(255,255,255,0.7); }
.section-ink .eyebrow::before { background: rgba(255,255,255,0.4); }

.section-title { font-size: clamp(28px, 3.8vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.section-ink .section-title { color: var(--white); }
.section-desc { font-size: 18px; color: var(--gray-500); line-height: 1.7; max-width: 620px; }
.section-ink .section-desc { color: rgba(255,255,255,0.78); }

.lead { font-size: 19px; line-height: 1.75; color: var(--gray-600); font-family: var(--font-serif); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; border-radius: var(--radius-sm); cursor: pointer; border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s; line-height: 1; text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { background: #000; color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-outline:active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-ghost-light:active { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; }
.nav-badge {
  display: none; align-items: center; gap: 8px; margin-left: 6px; padding: 4px 10px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--gray-600);
}
.nav-badge svg { width: 12px; height: 12px; }
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > .has-drop {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; transition: color .2s; letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links .has-drop { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-family: var(--font-sans); font-size: 13.5px; font-weight: 500; color: var(--gray-700); background: none; border: none; padding: 0; letter-spacing: 0.01em; transition: color .2s; }
.nav-links .has-drop:hover, .nav-links .has-drop.active { color: var(--ink); }
.nav-links .has-drop svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-links .has-drop[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 460px; max-height: calc(100vh - 100px); overflow-y: auto;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 12px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  columns: 2; column-gap: 8px;
}
.nav-links li:hover .nav-drop, .nav-links li:focus-within .nav-drop, .nav-links .has-drop[aria-expanded="true"] + .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 13.5px; color: var(--gray-600); break-inside: avoid; }
.nav-drop a:hover { background: var(--paper); color: var(--ink); }
.nav-drop .nd-group { padding: 10px 12px 4px; font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-400); break-inside: avoid; }
.nav-drop .nd-group + a { margin-top: 2px; }
.nav-drop .nd-sep { height: 1px; background: var(--rule); margin: 8px 4px; break-inside: avoid; }
.nav-cta { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; background: var(--ink); color: var(--white) !important; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; letter-spacing: 0.01em; }
.nav-cta:hover { background: var(--accent-dark); color: var(--white) !important; }
.nav-cta:active { background: #000; color: var(--white) !important; }
.nav-phone { display: none; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav-phone svg { width: 13px; height: 13px; }
@media (min-width: 1180px) { .nav-phone { display: inline-flex; } }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Hero (homepage, dark image) */
.hero {
  position: relative; padding: 168px 0 104px; background: var(--ink); color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; filter: grayscale(0.2); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,24,24,0.88) 0%, rgba(24,24,24,0.6) 35%, rgba(24,24,24,0.25) 65%, transparent 100%); }
.hero-rule-top { position: absolute; top: 72px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.16); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 820px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(40px, 6.4vw, 68px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); margin-bottom: 22px; }
.hero-tagline { font-family: var(--font-serif); font-style: italic; font-size: clamp(16px, 2vw, 24px); color: rgba(255,255,255,0.86); margin-bottom: 24px; }
.hero-line { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 620px; margin-bottom: 36px; }
.hero .btn-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero .btn-primary:hover { background: var(--paper); color: var(--ink); }
.hero .btn-primary:active { background: var(--paper); color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 13.5px; color: rgba(255,255,255,0.82); letter-spacing: 0.01em;
}
.hero-trust .stars { color: #E6B34A; letter-spacing: 2px; font-size: 14px; }

/* Trust strip */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--rule); }
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 28px; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); letter-spacing: 0.01em; }
.trust-strip .stars { color: #A8791B; letter-spacing: 2px; }
.trust-strip strong { color: var(--ink); font-weight: 600; }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rule-strong); }

/* Services grid (home) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.service-tile {
  display: flex; flex-direction: column; gap: 14px; padding: 36px 32px; text-decoration: none; color: var(--ink);
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white);
  transition: background .25s, color .25s; min-height: 220px;
}
.service-tile:hover { background: var(--ink); color: var(--white); }
.service-tile:hover .service-tile-arrow { transform: translate(4px, -4px); }
.service-tile:hover .service-tile-sub { color: rgba(255,255,255,0.72); }
.service-tile-num { font-family: var(--font-serif); font-size: 13px; color: var(--gray-400); letter-spacing: 0.08em; }
.service-tile:hover .service-tile-num { color: rgba(255,255,255,0.5); }
.service-tile-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; line-height: 1.2; }
.service-tile-sub { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }
.service-tile-arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: transform .25s; }
.service-tile-arrow svg { width: 14px; height: 14px; }

/* Feature cards (why choose / approach) */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 32px 28px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: var(--rule-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--ink); margin-bottom: 18px; border: 1px solid var(--rule); border-radius: var(--radius-sm); }
.card-icon svg { width: 22px; height: 22px; }
.card-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card-desc { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; }

/* Value list (about) */
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.value-card {
  padding: 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white);
  transition: background .25s;
}
.value-card:hover { background: var(--paper); }
.value-card h3 { font-size: 19px; margin-bottom: 10px; display: flex; align-items: baseline; gap: 12px; }
.value-card h3 .num { font-family: var(--font-serif); font-size: 13px; font-weight: 400; color: var(--gray-400); }
.value-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat { padding: 36px 24px; border-right: 1px solid var(--rule); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: clamp(34px, 4vw, 46px); font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-500); }

/* CTA band */
.cta { text-align: center; padding: 104px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; top: 0; left: calc(50% - 56px); width: 112px; height: 1px;
  background: rgba(255,255,255,0.18); z-index: 1;
}
.cta-pattern { position: absolute; inset: 0; opacity: 0.10; pointer-events: none; display: flex; justify-content: center; align-items: center; z-index: 0; }
.cta-pattern svg { width: 90%; max-width: 1100px; }
.cta .container { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; color: var(--white); }
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-bubble {
  background: var(--ink); color: var(--white); border: none; border-radius: var(--radius-md);
  padding: 36px 30px; margin: 36px 0; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.cta-bubble::before {
  content: ''; position: absolute; top: 0; left: calc(50% - 32px); width: 64px; height: 2px;
  background: rgba(255,255,255,0.25);
}
.cta-bubble::after {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.3) 59px, rgba(255,255,255,0.3) 60px);
}
.cta-bubble .btn { color: #FFFFFF; }
.cta-bubble .btn:hover, .cta-bubble .btn:active { background: #FFFFFF; color: #181818; border-color: #FFFFFF; }
.cta-bubble p { color: #FFFFFF; font-size: 16px; margin: 0; }
.cta-bubble .cta-phone {
  color: #FFFFFF; text-decoration-color: rgba(255,255,255,0.5);
  padding: 2px 6px; border-radius: 2px; transition: color .2s, background .2s;
}
.cta-bubble .cta-phone:hover { background: #FFFFFF; color: #181818; text-decoration-color: #181818; }

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: #A8791B; letter-spacing: 2px; font-size: 15px; }
.review-text { font-family: var(--font-serif); font-size: 16px; line-height: 1.7; color: var(--gray-700); font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--paper); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; color: var(--ink); font-size: 15px; }
.review-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--gray-400); }
.review-source { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gray-500); letter-spacing: 0.04em; }
.review-source svg { width: 14px; height: 14px; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.7); max-width: 320px; line-height: 1.6; margin-bottom: 22px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 14px; }
.footer-contact a:hover { color: var(--white); }
.footer-contact .phone { font-weight: 600; font-size: 16px; color: var(--white); }
.footer-heading { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.78); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 12px; }
.footer-bottom .disclaimer { max-width: 620px; font-family: var(--font-serif); font-style: italic; font-size: 12.5px; }

/* Page header (service / inner pages) */
.page-header {
  padding: 152px 0 64px; background: var(--paper); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-header-pattern { position: absolute; right: -40px; top: 40px; opacity: 0.06; pointer-events: none; }
.page-header-pattern svg { width: 320px; height: auto; }
.page-header .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--gray-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumbs .sep { color: var(--gray-300); }
.breadcrumbs [aria-current="page"] { color: var(--gray-500); }
.page-title { font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; max-width: 820px; }
.page-intro { font-family: var(--font-serif); font-size: clamp(18px, 2vw, 22px); line-height: 1.7; color: var(--gray-600); max-width: 740px; }
.page-meta-row { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.page-meta-row .phone-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; background: var(--ink); color: var(--white);
  border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none;
}
.page-meta-row .phone-pill:hover { background: var(--accent-dark); color: var(--white); }
.page-meta-row .phone-pill svg { width: 15px; height: 15px; }
.page-meta-row .reply { font-size: 13.5px; color: var(--gray-500); }

/* Service / article body */
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 56px; align-items: start; }
.content-main { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
.content-main h2 {
  font-size: 28px; font-weight: 700; color: var(--ink); margin: 52px 0 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--rule); line-height: 1.2;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 34px 0 12px; line-height: 1.25; }
.content-main h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.content-main p { margin-bottom: 22px; }
.content-main ul + p, .content-main ol + p, .content-main div + p, .content-main .hub-cards + p { margin-top: 24px; }
.content-main ul, .content-main ol { margin: 0 0 22px; padding-left: 1.3em; }
.content-main li { margin-bottom: 10px; }
.content-main li::marker { color: var(--gray-400); }
.content-main strong { color: var(--ink); font-weight: 600; }
.content-main em { font-style: italic; }
.content-main a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule-strong); }
.content-main a:hover { text-decoration-color: var(--ink); }
.content-main blockquote {
  border-left: 2px solid var(--ink); padding: 8px 0 8px 26px; margin: 34px 0;
  font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.7; color: var(--gray-700);
}

/* FAQ — question is an h3 (per brief) wrapping the toggle button */
.faq { margin: 8px 0 0; list-style: none; padding-left: 0; }
.faq h3 { margin: 0; }
.faq-item { padding: 2px 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; text-align: left;
  padding: 24px 4px; background: none; border: none; cursor: pointer; font-family: var(--font-serif);
  font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.35; transition: color .2s;
}
.faq-q:hover { color: var(--gray-700); }
.faq-q .faq-icon { flex-shrink: 0; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; position: relative; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ''; position: absolute; background: var(--ink); transition: transform .25s; }
.faq-q .faq-icon::before { width: 14px; height: 1.5px; }
.faq-q .faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-icon::before { transform: rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.75; color: var(--gray-600); max-width: 760px; }
.faq-a-inner p { margin-bottom: 14px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* Related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.related-tile {
  display: block; padding: 28px 26px; text-decoration: none; color: var(--ink);
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white);
  transition: background .2s;
}
.related-tile:hover { background: var(--paper); }
.related-tile-name { display: block; font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.related-tile-sub { display: block; font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Legislation & disclaimer blocks */
.leg-block, .disclaimer-block {
  font-size: 14px; color: var(--gray-500); line-height: 1.7; padding: 22px 24px; background: var(--paper);
  border: 1px solid var(--rule); border-radius: var(--radius-md); margin: 0 0 16px;
}
.leg-block:last-child, .disclaimer-block:last-child { margin-bottom: 0; }
.leg-block h3, .disclaimer-block h3 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gray-600); margin-bottom: 10px; }
.disclaimer-block { font-style: italic; font-family: var(--font-serif); font-size: 14.5px; }

/* Sticky in-page sidebar (TOC / contact) */
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 26px 24px; margin-bottom: 20px; }
.sidebar-card h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gray-600); margin-bottom: 16px; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 8px; }
.toc-list a { font-size: 13.5px; color: var(--gray-600); text-decoration: none; line-height: 1.5; display: block; padding: 4px 0; border-left: 1.5px solid transparent; padding-left: 12px; transition: border-color .2s, color .2s; }
.toc-list a:hover, .toc-list a.active { color: var(--ink); border-left-color: var(--ink); }
.toc-list .toc-h3 { padding-left: 26px; font-size: 13px; }
.sidebar-cta { display: flex; flex-direction: column; gap: 12px; }
.sidebar-cta .btn { width: 100%; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; border: 1px solid var(--rule); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--ink); flex-shrink: 0; background: var(--paper); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-500); margin-bottom: 5px; }
.contact-value { font-size: 15.5px; color: var(--ink); }
.contact-value a { color: var(--ink); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-form { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 36px 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.01em; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 15px; font-family: var(--font-sans); font-size: 15px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(24,24,24,0.08); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--gray-400); margin-top: 6px; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Spark / divider decoration */
.divider-decor { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 56px 0; }
.divider-decor::before, .divider-decor::after { content: ''; height: 1px; background: var(--rule); flex: 1; max-width: 120px; }
.divider-decor svg { width: 40px; height: auto; opacity: 0.6; }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .section-title { margin-bottom: 14px; }
.section-head .section-desc { margin-left: 0; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* Pill / tag */
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; background: var(--paper); border: 1px solid var(--rule); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--gray-600); text-decoration: none; }
.tag:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* BLOG LISTING (preserve selectors, recolor to neutral) */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.sidebar-section { margin-bottom: 32px; }
.sidebar-title { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gray-500); margin-bottom: 16px; }
.category-list { list-style: none; }
.category-list li { margin-bottom: 6px; }
.category-list a { font-size: 14px; color: var(--gray-600); display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-radius: var(--radius-sm); transition: all .2s; text-decoration: none; }
.category-list a:hover, .category-list a.active { background: var(--paper); color: var(--ink); }
.category-count { font-size: 12px; color: var(--gray-400); background: var(--white); border: 1px solid var(--rule); padding: 1px 8px; border-radius: 999px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination a { padding: 9px 14px; border: 1px solid var(--rule); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--gray-600); transition: all .2s; text-decoration: none; }
.pagination a:hover, .pagination a.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid .blog-card[style*="grid-template-columns"] { display: grid; grid-template-columns:280px 1fr; }
@media (max-width: 768px) { .blog-grid .blog-card[style*="grid-template-columns"] { display: block !important; overflow: visible; } .blog-grid .blog-card[style*="grid-template-columns"] .blog-image { min-height: auto !important; } }
.blog-card { border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: border-color .25s, box-shadow .25s, transform .25s; }
.blog-card:hover { border-color: var(--rule-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-image { width: 100%; aspect-ratio: 16/9; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--gray-300); overflow: hidden; min-height: 0; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px 24px 26px; }
.blog-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.blog-meta a { color: var(--ink); font-weight: 600; text-decoration: none; }
.blog-meta a:hover { text-decoration: underline; }
.blog-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.blog-title a { color: var(--ink); text-decoration: none; }
.blog-title a:hover { text-decoration: underline; }
.blog-excerpt { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; }

/* BLOG ARTICLE (preserve selectors) */
.article-header { padding: 140px 0 48px; background: var(--paper); border-bottom: 1px solid var(--rule); }
.article-header .container-narrow { text-align: left; }
.article-meta { display: flex; justify-content: flex-start; align-items: center; gap: 16px; font-size: 14px; color: var(--gray-500); margin-bottom: 24px; flex-wrap: wrap; }
.article-meta a { color: var(--ink); font-weight: 600; text-decoration: none; }
.article-featured-image { width: 100%; aspect-ratio: 16/9; background: var(--paper); border-radius: var(--radius-md); margin-bottom: 48px; display: flex; align-items: center; justify-content: center; color: var(--gray-300); overflow: hidden; border: 1px solid var(--rule); }
.article-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
.article-body h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--ink); margin: 44px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); line-height: 1.25; }
.article-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--ink); margin: 30px 0 12px; line-height: 1.3; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin-bottom: 20px; padding-left: 1.3em; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 2px solid var(--ink); padding: 12px 0 12px 24px; margin: 32px 0; font-family: var(--font-serif); font-style: italic; color: var(--gray-600); background: transparent; border-radius: 0; font-size: 18px; }
.article-body img { border-radius: var(--radius-md); margin: 32px 0; }
.article-body pre { background: var(--ink); color: var(--gray-100); padding: 24px; border-radius: var(--radius-md); overflow-x: auto; font-size: 14px; line-height: 1.6; margin: 32px 0; }
.article-body code { font-family: var(--font-mono); font-size: 14px; }
.article-body p code { background: var(--paper); padding: 2px 7px; border-radius: 3px; font-size: 14px; }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; margin-bottom: 64px; padding: 32px 0 0; border-top: 1px solid var(--rule); }
.article-nav-link { padding: 22px 24px; border: 1px solid var(--rule); border-radius: var(--radius-md); transition: all .25s; text-decoration: none; }
.article-nav-link:hover { border-color: var(--rule-strong); box-shadow: var(--shadow-sm); }
.article-nav-label { font-size: 12px; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.article-nav-title { font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--ink); }
.article-nav-link.text-right { text-align: right; }

/* TOC (article) */
.toc { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 24px; margin-bottom: 48px; }
.toc-title { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gray-600); margin-bottom: 14px; }
.toc-list-article { list-style: none; }
.toc-list-article li { margin-bottom: 8px; }
.toc-list-article a { font-size: 14px; color: var(--gray-600); text-decoration: none; }
.toc-list-article a:hover { color: var(--ink); }
.toc-list-article .toc-h2 { padding-left: 0; }
.toc-list-article .toc-h3 { padding-left: 20px; font-size: 13.5px; }
.text-right { text-align: right; }

/* Timeline (about) */
.timeline { position: relative; padding-left: 28px; border-left: 1.5px solid var(--rule); }
.timeline-item { margin-bottom: 36px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--white); border: 2px solid var(--ink); }
.timeline-year { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.timeline-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* Map */
.map-frame { border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(1) contrast(1.05); }

/* Specialty grid (Criminal hub cards) */
.hub-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); margin-bottom: 28px; }
.hub-card {
  display: flex; flex-direction: column; gap: 8px; padding: 28px 26px; text-decoration: none; color: var(--ink);
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); transition: background .25s, color .25s; min-height: 180px;
}
.hub-card:hover { background: var(--ink); color: var(--white); }
.hub-card:hover .hub-card-sub { color: rgba(255,255,255,0.7); }
.hub-card-name { font-family: var(--font-serif); font-size: 19px; font-weight: 700; line-height: 1.2; }
.hub-card-sub { font-size: 13px; color: var(--gray-500); line-height: 1.55; }
.hub-card .arrow { margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; }
.hub-card .arrow svg { width: 13px; height: 13px; transition: transform .25s; }
.hub-card:hover .arrow svg { transform: translate(4px, -4px); }

/* 404 */
.error-wrap { text-align: center; padding: 180px 0 120px; }
.error-code { font-family: var(--font-serif); font-size: clamp(80px, 14vw, 160px); font-weight: 700; line-height: 1; color: var(--ink); letter-spacing: -0.04em; }
.error-msg { font-family: var(--font-serif); font-size: 22px; color: var(--gray-600); margin: 12px 0 32px; }

/* Utilities */
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.list-check { list-style: none; padding-left: 0; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.list-check li::before { content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border: 1.5px solid var(--ink); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23181818' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-layout, .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .content-layout .sidebar { order: 2; }
  .services-grid, .hub-cards, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .values-list { grid-template-columns: 1fr 1fr; }
  .grid-4, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--rule); flex-direction: column; align-items: stretch;
    padding: 20px 28px 28px; gap: 6px; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-drop { display: none; position: static; box-shadow: none; border: none; min-width: 0; padding: 4px 0 4px 14px; }
  .nav-links .has-drop[aria-expanded="true"] + .nav-drop { display: block; }
  .nav-drop .nd-sep { display: none; }
  .nav-toggle { display: block; }
  .nav-badge { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 132px 0 72px; }
  .grid-2, .grid-3, .grid-4, .cards-grid, .values-list, .reviews-grid, .blog-grid, .services-grid, .hub-cards, .related-grid, .contact-grid, .form-row, .stats-row, .footer-grid { grid-template-columns: 1fr; }
  .stats-row { border: 1px solid var(--rule); }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .disclaimer { order: 2; }
  .page-header { padding: 120px 0 48px; }
  .article-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-strip .container { gap: 14px; }
  .cta { padding: 72px 0; }
  .content-main h2 { font-size: 24px; }
  .content-main h3 { font-size: 19px; }
  .page-header-pattern { display: none; }
}

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* PRINT */
@media print {
  .nav, .nav-toggle, .cta, .footer-bottom .btn, .sidebar, .faq-icon { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}