:root {
  --navy-950: #071a2d;
  --navy-900: #0b2845;
  --navy-800: #10365b;
  --gold-500: #d5a62f;
  --gold-300: #efd37f;
  --cream: #fbf8f1;
  --ink: #17202a;
  --muted: #5d6773;
  --line: #dce2e7;
  --white: #ffffff;
  --success: #176b52;
  --shadow: 0 18px 50px rgba(7, 26, 45, .13);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-800); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; background: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: 8px; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .6rem; color: var(--gold-500); font-weight: 850; letter-spacing: .11em; text-transform: uppercase; font-size: .79rem; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.12; letter-spacing: -.028em; }
h1 { margin: 0; font-size: clamp(2.55rem, 7vw, 5.35rem); max-width: 850px; }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { margin: 0 0 .55rem; font-size: 1.34rem; }
p { margin: 0 0 1rem; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 740px; }
.fine { color: var(--muted); font-size: .92rem; }
.topbar { background: var(--navy-950); color: #fff; font-size: .86rem; }
.topbar .container { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar strong { color: var(--gold-300); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(11,40,69,.09); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .78rem; color: var(--navy-950); text-decoration: none; font-weight: 900; line-height: 1.05; }
.brand img { width: 58px; height: 58px; border-radius: 50%; }
.brand small { display: block; color: var(--muted); font-size: .72rem; margin-top: .2rem; font-weight: 700; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { color: var(--navy-950); text-decoration: none; font-weight: 750; font-size: .93rem; }
.nav-links a:hover { color: var(--gold-500); }
.menu-button { display: none; border: 1px solid var(--line); border-radius: 10px; padding: .65rem .8rem; background: #fff; color: var(--navy-950); font: inherit; font-weight: 800; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .78rem 1.18rem; border-radius: 999px; text-decoration: none; font-weight: 850; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 10px 24px rgba(213,166,47,.25); }
.button-primary:hover { background: #e0b642; }
.button-secondary { color: var(--navy-950); border-color: var(--navy-950); background: #fff; }
.button-dark { color: #fff; background: var(--navy-950); }
.hero { overflow: hidden; background: linear-gradient(125deg, var(--cream) 0 63%, #eef3f6 63%); padding: clamp(3.8rem, 8vw, 7.4rem) 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy .lede { margin: 1.25rem 0 1.55rem; }
.microproof { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; padding: 0; margin: 1.35rem 0 0; list-style: none; color: var(--navy-800); font-size: .94rem; font-weight: 750; }
.microproof li::before { content: "✓"; color: var(--success); margin-right: .4rem; font-weight: 900; }
.hero-visual { position: relative; min-height: 480px; }
.hero-visual .main-photo { width: 92%; margin-left: auto; border-radius: 24px; box-shadow: var(--shadow); border: 8px solid #fff; }
.hero-visual .logo-medallion { position: absolute; width: 142px; height: 142px; left: 0; bottom: 16px; border-radius: 50%; border: 7px solid #fff; box-shadow: var(--shadow); }
.hero-note { position: absolute; right: 0; bottom: 0; width: min(315px, 82%); padding: 1.05rem 1.2rem; background: var(--navy-950); color: #fff; border-radius: 14px; box-shadow: var(--shadow); }
.hero-note strong { color: var(--gold-300); display: block; }
.proofbar { background: var(--navy-950); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.proof-item { padding: 1.25rem .85rem; border-right: 1px solid rgba(255,255,255,.13); font-size: .91rem; text-align: center; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--gold-300); font-size: 1rem; }
.section { padding: clamp(4.5rem, 8vw, 7.2rem) 0; }
.section-soft { background: var(--cream); }
.section-navy { color: #fff; background: var(--navy-950); }
.section-navy h2, .section-navy h3, .section-navy a { color: #fff; }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.section-head > * { flex: 1; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.card { height: 100%; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 28px rgba(7,26,45,.06); }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-block; margin-top: .5rem; font-weight: 850; }
.number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-weight: 950; }
.checklist { padding: 0; margin: 1rem 0; list-style: none; }
.checklist li { margin: .55rem 0; padding-left: 1.5rem; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 28px rgba(7,26,45,.07); }
.project-card img { width: 100%; height: clamp(220px, 28vw, 360px); object-fit: cover; background: #e9edf0; }
.project-copy { padding: 1.25rem 1.4rem 1.4rem; }
.project-copy p { color: var(--muted); }
.quote { position: relative; padding: 2rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); border-left: 6px solid var(--gold-500); }
.quote p { font-size: 1.18rem; color: var(--navy-950); }
.quote cite { color: var(--muted); font-style: normal; font-weight: 750; }
.pricing { border: 1px solid var(--gold-500); }
.price { color: var(--navy-950); font-size: 2.1rem; font-weight: 950; line-height: 1; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; color: var(--navy-950); font-weight: 850; }
.faq details p { margin: .7rem 0 0; color: var(--muted); }
.cta-band { padding: clamp(3.5rem, 7vw, 6rem) 0; background: linear-gradient(135deg, var(--gold-500), #efd37f); }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-band h2 { max-width: 720px; margin-bottom: .55rem; }
.page-hero { padding: clamp(3.8rem, 7vw, 6.5rem) 0; background: linear-gradient(135deg, var(--cream), #eef3f6); }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.page-hero .lede { margin-top: 1rem; }
.breadcrumb { margin-bottom: 1rem; color: var(--muted); font-size: .9rem; }
.breadcrumb a { color: var(--muted); }
.notice { padding: 1rem 1.15rem; border-radius: 12px; border-left: 5px solid var(--gold-500); background: #fff9e6; }
.service-list { columns: 2; column-gap: 2.5rem; }
.service-list li { break-inside: avoid; margin-bottom: .45rem; }
.area-list { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; list-style: none; }
.area-list li { padding: .55rem .8rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy-900); font-weight: 700; }
.site-footer { padding: 4rem 0 6rem; background: #061524; color: #d7e0e7; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 2.5rem; }
.site-footer h3 { color: #fff; }
.site-footer a { color: #fff; }
.footer-logo { width: 86px; border-radius: 50%; margin-bottom: 1rem; }
.compliance { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .86rem; color: #b9c6d0; }
.mobile-bar { display: none; }

@media (max-width: 900px) {
  .menu-button { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .25rem); padding: 1rem; background: #fff; border-radius: 14px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links[data-open] { display: flex; }
  .nav-links .button { width: 100%; }
  .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding-bottom: 3rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-bottom: 1px solid rgba(255,255,255,.13); }
  .section-head, .cta-band .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 70px; }
  .topbar .container { justify-content: center; text-align: center; padding: .4rem 0; }
  .topbar span:last-child { display: none; }
  .brand span { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 52px; height: 52px; }
  .hero { padding-top: 3rem; }
  .hero-grid, .grid-2, .project-grid { grid-template-columns: 1fr; }
  .hero-visual .main-photo { width: 100%; }
  .hero-visual .logo-medallion { width: 105px; height: 105px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; }
  .service-list { columns: 1; }
  .mobile-bar { position: fixed; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; box-shadow: 0 -8px 24px rgba(7,26,45,.18); }
  .mobile-bar a { min-height: 64px; display: grid; place-items: center; text-decoration: none; font-weight: 900; }
  .mobile-bar .text { background: var(--gold-500); color: var(--navy-950); }
  .mobile-bar .call { background: var(--navy-950); color: #fff; }
}

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