:root {
  --ink: #102435;
  --ink-soft: #30404d;
  --paper: #f7f3ec;
  --paper-2: #efe8de;
  --white: #fffdfa;
  --red: #a93325;
  --red-dark: #87271c;
  --line: #d9d0c4;
  --muted: #69737a;
  --shadow: 0 16px 40px rgba(16, 36, 53, .10);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d95a49; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 4vw, 4.35rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { margin: 0 0 1.15rem; }
.lead { color: var(--ink-soft); font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.55; }

.topbar { color: #fff; background: var(--ink); font-size: .84rem; }
.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__links { display: flex; gap: 24px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar i { margin-right: .45rem; color: #e4b4a9; }
.topbar__motto { color: #c9d0d5; }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255, 253, 250, .96); border-bottom: 1px solid rgba(16, 36, 53, .09); backdrop-filter: blur(12px); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 235px; height: auto; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); color: var(--ink); background: var(--white); font-size: 1.25rem; cursor: pointer; }
.site-nav ul { display: flex; align-items: center; gap: 34px; margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; padding: 28px 0 25px; color: var(--ink); font-size: .96rem; font-weight: 700; text-decoration: none; }
.site-nav a::after { content: ''; position: absolute; right: 0; bottom: 15px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { transform: scaleX(1); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.25rem; border: 1px solid var(--red); color: #fff; background: var(--red); font-weight: 700; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.button--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--outline:hover { color: #fff; background: var(--ink); }
.text-link { color: var(--red); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero { display: grid; min-height: 610px; grid-template-columns: 1.05fr .95fr; background: var(--white); }
.hero__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 120px) max(40px, calc((100vw - var(--content)) / 2)); padding-right: clamp(36px, 5vw, 76px); }
.hero__content h1 { max-width: 760px; margin-bottom: 1.5rem; }
.hero__content h1 span { display: block; color: var(--red); }
.hero__content .lead { max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1rem; }
.hero__image { min-height: 540px; background: url('../images/hero-documents.webp') center / cover no-repeat; }

.audiences { position: relative; z-index: 2; margin-top: -50px; }
.audiences__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 32px; background: var(--white); border: 1px solid rgba(16,36,53,.08); box-shadow: var(--shadow); }
.audience-card:nth-child(2) { background: #edf1f2; }
.icon-circle { width: 72px; height: 72px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 1.65rem; }
.audience-card:nth-child(2) .icon-circle { background: var(--ink); }
.audience-card h2 { margin-bottom: .5rem; font-size: 2rem; }
.audience-card p { color: var(--ink-soft); }

.proofs { padding: 54px 0; }
.proofs__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 10px 28px; border-right: 1px solid var(--line); }
.proof:last-child { border-right: 0; }
.proof i { color: var(--red); font-size: 2.2rem; }
.proof strong { display: block; margin-bottom: .25rem; }
.proof span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.45; }

.process { display: grid; min-height: 600px; grid-template-columns: 1fr 1fr; background: var(--paper-2); }
.process__content { padding: clamp(68px, 8vw, 110px) max(40px, calc((100vw - var(--content)) / 2)); padding-right: clamp(40px, 5vw, 90px); }
.process__visual { position: relative; min-height: 520px; background: url('../images/steps.webp') center / cover no-repeat; }
.process__quote { position: absolute; top: 25%; left: 8%; width: min(330px, 80%); padding: 28px; background: rgba(255,253,250,.86); border-left: 3px solid var(--red); font: italic 1.55rem/1.4 Georgia, serif; }
.steps-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.steps-list li { position: relative; min-height: 92px; padding: 0 0 26px 72px; }
.step-number { position: absolute; top: 0; left: 0; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-weight: 800; }
.steps-list li:not(:last-child)::after { content: ''; position: absolute; top: 44px; bottom: 2px; left: 20px; width: 1px; background: #c7b7a7; }
.steps-list strong { display: block; font-size: 1.05rem; }
.steps-list span { color: var(--muted); font-size: .93rem; }

.services { padding: clamp(76px, 8vw, 112px) 0; color: #f7f3ec; background: var(--ink); }
.services__heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.services__heading p { color: #bdc8cf; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.service-card { min-height: 260px; padding: 32px; border: 1px solid rgba(255,255,255,.16); background: #172f42; }
.service-card i { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 1.25rem; }
.service-card p { color: #c4ced5; }
.service-card a { color: #fff; }

.about-band { padding: clamp(70px, 8vw, 105px) 0; background: var(--white); }
.about-band__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.about-band__copy { padding-top: 10px; }

.contact-strip { padding: 58px 0; color: #fff; background: var(--ink); }
.contact-strip__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; }
.contact-strip h2 { margin-bottom: .35rem; font-size: 2.25rem; }
.contact-strip p { margin: 0; color: #c8d0d5; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-actions .button--outline { color: #fff; border-color: #8da0ae; }

.site-footer { padding: 42px 0 28px; color: #c1cbd2; background: #091927; }
.site-footer__top { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.site-footer .brand img { width: 190px; opacity: .95; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a { color: #eef2f4; text-decoration: none; }
.site-footer__bottom { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.page-hero { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 145px) 0; color: var(--ink); background: var(--white); }
.page-hero::after { content: ''; position: absolute; z-index: 0; top: 0; right: 0; width: 45%; height: 100%; background: url('../images/hero-documents.webp') center / cover no-repeat; opacity: .78; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 750px; margin-bottom: 1.2rem; }
.page-hero .lead { max-width: 650px; }

.content-section { padding: clamp(68px, 8vw, 105px) 0; }
.content-section--white { background: var(--white); }
.content-section--soft { background: var(--paper-2); }
.content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.content-grid--equal { grid-template-columns: 1fr 1fr; }
.content-copy p, .article p { color: var(--ink-soft); }
.callout { padding: 28px 32px; border-left: 4px solid var(--red); background: var(--white); box-shadow: 0 10px 30px rgba(16,36,53,.07); }
.callout strong { display: block; margin-bottom: .45rem; font-family: Georgia, serif; font-size: 1.35rem; }
.check-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .55rem 0 .55rem 2rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.faq { display: grid; gap: 12px; margin-top: 2rem; }
.faq details { border: 1px solid var(--line); background: var(--white); }
.faq summary { padding: 20px 54px 20px 22px; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; margin-right: -30px; color: var(--red); font-size: 1.4rem; }
.faq details[open] summary::after { content: '−'; }
.faq__content { padding: 0 22px 22px; color: var(--ink-soft); }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.info-card { padding: 28px; background: var(--white); border-top: 3px solid var(--red); }
.info-card h3 { margin-bottom: .7rem; }

.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.contact-card a { display: flex; align-items: center; gap: 14px; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line); font-weight: 800; text-decoration: none; }
.contact-card i { color: var(--red); font-size: 1.3rem; }
.contact-card a:hover { border-color: var(--red); }

.legal-note { color: var(--muted); font-size: .9rem; }

@media (max-width: 920px) {
  .topbar__motto { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 10px 20px 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; gap: 0; }
  .site-nav a { display: block; padding: 15px 0; }
  .site-nav a::after { bottom: 8px; transform-origin: left; }
  .hero { grid-template-columns: 1fr; }
  .hero__content { min-height: 560px; padding: 72px 32px; }
  .hero__image { min-height: 340px; background-position: 64% center; }
  .audiences { margin-top: 24px; }
  .audiences__grid, .process, .services__heading, .about-band__grid, .content-grid, .content-grid--equal { grid-template-columns: 1fr; }
  .process__visual { min-height: 480px; }
  .service-grid, .info-cards { grid-template-columns: 1fr; }
  .about-band__grid, .content-grid { gap: 36px; }
  .contact-strip__grid { grid-template-columns: 1fr; }
  .page-hero::after { width: 38%; opacity: .35; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--content)); }
  .topbar__inner { min-height: 48px; justify-content: center; }
  .topbar__links { gap: 14px; }
  .topbar__links a:first-child { display: none; }
  .site-header__inner { min-height: 70px; }
  .brand img { width: 185px; }
  .hero__content { min-height: 520px; padding: 60px 20px; }
  .hero__image { min-height: 260px; }
  .audiences__grid { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 54px 1fr; gap: 16px; padding: 24px 20px; }
  .icon-circle { width: 54px; height: 54px; font-size: 1.2rem; }
  .proofs__grid { grid-template-columns: 1fr; }
  .proof { border-right: 0; border-bottom: 1px solid var(--line); }
  .process__content { padding: 64px 20px; }
  .process__visual { min-height: 390px; }
  .process__quote { top: 12%; font-size: 1.25rem; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-actions, .contact-card { display: grid; grid-template-columns: 1fr; }
  .contact-actions .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-nav { gap: 14px; }
  .page-hero::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
