:root {
  --ink: #122028;
  --navy: #0b2431;
  --navy-2: #12394a;
  --copper: #b86d3e;
  --copper-dark: #7c3e1f;
  --sand: #e8d4bf;
  --paper: #f5f2ed;
  --white: #ffffff;
  --muted: #5e6a70;
  --line: #d8ddde;
  --shadow: 0 18px 44px rgba(11, 36, 49, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: 10px; z-index: 100; padding: 11px 16px; background: var(--copper); color: #fff; font-weight: 800; text-decoration: none; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(11,36,49,.98); color: #fff; }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--copper); color: var(--sand); font-family: Georgia, serif; font-size: 1.45rem; }
.brand-copy { display: grid; line-height: 1.13; }
.brand-copy strong { font-family: Georgia, serif; font-size: 1rem; font-weight: 600; }
.brand-copy span { margin-top: 4px; color: #bdcbd1; font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { border-bottom: 2px solid transparent; color: #dce6ea; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover, .nav-links a[aria-current="page"] { border-color: var(--copper); color: #fff; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--copper-dark); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.hero { overflow: hidden; background: var(--navy); color: #fff; }
.hero-grid { min-height: 610px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 64px; padding: 76px 0; }
.hero .eyebrow, .dark-band .eyebrow, .contact-card .eyebrow { color: var(--sand); }
.hero h1 { max-width: 780px; margin: 20px 0 22px; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .97; letter-spacing: -.045em; }
.hero h1 em, .page-hero h1 em { color: var(--sand); font-weight: 400; }
.hero-copy { max-width: 710px; color: #cfdae0; font-size: 1.08rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 19px; border: 1px solid var(--copper); background: var(--copper); color: #fff; font-size: .78rem; font-weight: 900; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.button:hover { background: #a95d30; }
.button--outline { border-color: #75909d; background: transparent; color: #fff; }
.button--outline:hover { background: rgba(255,255,255,.08); }
.button--outline-dark { border-color: var(--navy); background: transparent; color: var(--navy); }
.button--small { min-height: 40px; padding: 9px 14px; font-size: .7rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 27px; color: #adc0c9; font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.hero-meta span::before { color: var(--copper); content: "•"; margin-right: 8px; }
.hero-panel { position: relative; padding: 38px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.hero-panel::before { position: absolute; right: 22px; top: 22px; width: 44px; height: 44px; border-top: 1px solid var(--copper); border-right: 1px solid var(--copper); content: ""; }
.hero-panel h2 { margin: 17px 0 16px; font-size: 2rem; line-height: 1.12; }
.hero-panel p, .hero-panel li { color: #cedce2; }
.hero-panel ul, .check-list { margin: 20px 0 0; padding: 0; list-style: none; }
.hero-panel li, .check-list li { position: relative; margin: 12px 0; padding-left: 22px; }
.hero-panel li::before, .check-list li::before { position: absolute; left: 0; color: var(--copper); content: "◆"; font-size: .58rem; top: .42rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 18px 24px; border-right: 1px solid var(--line); color: var(--navy); font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.trust-item:last-child { border-right: 0; }
.trust-item span { margin-right: 7px; color: var(--copper-dark); }
section { padding: 94px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { margin: 17px 0 15px; color: var(--navy); font-size: clamp(2.35rem, 4vw, 3.7rem); line-height: 1.03; letter-spacing: -.025em; }
.section-heading p { color: var(--muted); font-size: 1.03rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 245px; padding: 28px; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 24px rgba(18,32,40,.05); }
.service-link { display: block; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.service-link:hover { border-color: var(--copper); transform: translateY(-3px); }
.service-symbol { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 40px; background: var(--navy); color: var(--sand); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.service-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.45rem; }
.service-card p { color: var(--muted); font-size: .9rem; }
.read-more { color: var(--copper-dark); font-size: .73rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }

.deliverables { background: #e8ecec; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.deliverable-item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px; background: #fff; }
.deliverable-item > span { color: var(--copper-dark); font-family: Georgia, serif; font-size: 1.25rem; }
.deliverable-item h3 { margin-bottom: 7px; color: var(--navy); font-size: 1.36rem; }
.deliverable-item p { margin-bottom: 0; color: var(--muted); }
.dark-band { background: var(--navy); color: #fff; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.split-grid h2 { margin: 17px 0; font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.03; }
.split-grid > div > p { color: #cbd9df; }
.band-links { display: grid; gap: 12px; }
.band-link { display: flex; justify-content: space-between; gap: 20px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.18); color: #fff; text-decoration: none; }
.band-link span { color: var(--sand); font-weight: 800; }

.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.step > span { color: var(--copper-dark); font-family: Georgia, serif; font-size: 1.2rem; }
.step h3 { margin-bottom: 7px; color: var(--navy); font-size: 1.35rem; }
.step p { margin-bottom: 0; color: var(--muted); }
.notice { padding: 22px 24px; border-left: 4px solid var(--copper); background: #fff; color: #4f5d63; }
.notice strong { color: var(--navy); }

.page-hero { padding: 82px 0; background: var(--navy); color: #fff; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 58px; align-items: end; }
.page-hero h1 { max-width: 800px; margin: 18px 0; font-size: clamp(3rem, 5.6vw, 5.1rem); line-height: .98; letter-spacing: -.04em; }
.page-hero p { max-width: 720px; color: #cfdae0; font-size: 1.06rem; }
.page-hero aside { padding: 27px; border-left: 3px solid var(--copper); background: rgba(255,255,255,.07); color: #d5e0e4; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.detail-card { padding: 32px; border: 1px solid var(--line); background: #fff; }
.detail-card h2, .detail-card h3 { color: var(--navy); }
.detail-card h2 { font-size: 2rem; }
.detail-card p, .detail-card li { color: var(--muted); }
.detail-card ul { padding-left: 20px; }
.scope-table { width: 100%; border-collapse: collapse; background: #fff; }
.scope-table th, .scope-table td { padding: 18px 20px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.scope-table th { width: 31%; color: var(--navy); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.scope-table td { color: var(--muted); }

.contact-section { background: #e8ecec; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-card { padding: 42px; background: var(--navy); color: #fff; }
.contact-card h2 { margin: 16px 0; font-size: 2.75rem; line-height: 1.06; }
.contact-card > p { color: #d1dce1; }
.contact-list { display: grid; gap: 18px; margin-top: 32px; }
.contact-list small { display: block; margin-bottom: 3px; color: var(--sand); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-list a { color: #fff; font-size: 1.08rem; font-weight: 800; text-decoration: none; }
.contact-note { margin-top: 28px; color: #c7d5db; font-size: .82rem; }
.contact-details { padding-top: 16px; }
.contact-details h2 { margin: 16px 0; color: var(--navy); font-size: 2.8rem; line-height: 1.07; }
.contact-details > p { color: var(--muted); }
.contact-guidance { padding: 22px 24px; border-left: 3px solid var(--copper); background: #fff; color: #4f5d63; }

footer { background: #061b25; color: #c8d4da; }
.footer { display: flex; justify-content: space-between; gap: 28px; padding: 30px 0; font-size: .78rem; }
.footer strong { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px 18px; }
.footer a { color: var(--sand); text-decoration: none; }
.mobile-contact { display: none; }

@media (max-width: 900px) {
  .hero-grid, .page-hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .67rem; }
}
@media (max-width: 650px) {
  .wrap { width: min(100% - 32px, 1160px); }
  .site-header { position: static; }
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { width: 100%; justify-content: space-between; overflow-x: auto; }
  .hero-grid { min-height: auto; padding: 58px 0; }
  .hero h1, .page-hero h1 { font-size: 3rem; }
  .hero-panel, .contact-card { padding: 28px; }
  .trust-items, .service-grid, .deliverable-grid, .detail-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  section { padding: 70px 0; }
  .scope-table, .scope-table tbody, .scope-table tr, .scope-table th, .scope-table td { display: block; width: 100%; }
  .scope-table tr { margin-bottom: 14px; }
  .scope-table td { border-top: 0; }
  .footer { flex-direction: column; padding-bottom: 88px; }
  .footer-links { justify-content: flex-start; }
  .mobile-contact { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: grid; grid-template-columns: .8fr 1.2fr; background: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,.14); }
  .mobile-contact a { display: grid; min-height: 58px; place-items: center; padding: 10px; color: var(--navy); font-size: .73rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
  .mobile-contact a:last-child { background: var(--copper); color: #fff; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .service-link { transition: none; } }
