:root {
  --ink: #142232;
  --ink-soft: #506173;
  --navy: #10253e;
  --navy-deep: #0a192b;
  --blue: #1769aa;
  --blue-bright: #2d8fd2;
  --sky: #eaf5fb;
  --line: #d9e3ea;
  --paper: #ffffff;
  --mist: #f5f8fa;
  --accent: #f0b34d;
  --accent-soft: #fff5e3;
  --success: #227a68;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(16, 37, 62, .10);
  --content: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

a { color: var(--blue); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--navy); }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: .65rem 1rem;
  border-radius: 0 0 10px 10px;
  background: var(--accent);
  color: var(--navy-deep);
  font-weight: 800;
}

.skip-link:focus { top: 0; }

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 227, 234, .85);
  background: rgba(255, 255, 255, .95);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 84px;
  align-items: center;
  gap: 1.5rem;
}

.header-inner > .brand { justify-self: start; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .075em;
  line-height: 1.15;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
}
.brand > span:last-child { white-space: nowrap; }

.primary-nav { grid-column: 2; display: flex; align-items: center; gap: .25rem; }
.nav-links { display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.nav-link, .nav-services-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: .55rem .75rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover, .nav-link[aria-current="page"], .nav-services-toggle:hover,
.nav-services-toggle[aria-expanded="true"] {
  background: var(--sky);
  color: var(--navy);
}

.nav-services-toggle { cursor: pointer; }
.nav-services-chevron { margin-left: .42rem; font-size: .85rem; transition: transform .18s ease; }
.nav-services-toggle[aria-expanded="true"] .nav-services-chevron { transform: rotate(180deg); }

.desktop-services-panel {
  position: static;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.desktop-services-panel-inner {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 2.3vw, 2rem);
}
.desktop-services-panel a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-services-panel a:hover { color: var(--blue); }

.header-call {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.header-call:hover { background: var(--blue); color: #fff; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 9vw, 7.6rem) 0 clamp(4.5rem, 9vw, 8rem);
  background: var(--navy-deep);
  color: #fff;
}
.hero::before, .hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(115, 190, 229, .18);
  border-radius: 50%;
}
.hero::before { width: 35rem; height: 35rem; right: -13rem; top: -17rem; }
.hero::after { width: 22rem; height: 22rem; right: 7rem; bottom: -17rem; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  color: #a9d7ed;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--accent); content: ""; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.13; letter-spacing: -.03em; }
.hero h1 { max-width: 700px; color: #fff; font-size: clamp(2.45rem, 6vw, 5rem); font-weight: 790; }
.hero-lead { max-width: 650px; margin: 1.45rem 0 0; color: #cad8e5; font-size: clamp(1.04rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--navy-deep); }
.button-primary:hover { background: #ffc96e; color: var(--navy-deep); }
.button-ghost { border-color: rgba(255,255,255,.38); color: #fff; }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.button-dark { background: var(--navy); color: #fff; }
.button-dark:hover { background: var(--blue); color: #fff; }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: var(--sky); color: var(--navy); }

.hero-art { position: relative; min-height: 350px; }
.hero-art::before { position: absolute; inset: 10% 4% 0 12%; border: 1px solid rgba(127, 195, 227, .23); border-radius: 50%; content: ""; transform: rotate(-18deg); }
.art-card {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: min(100%, 380px);
  padding: 1.8rem;
  border: 1px solid rgba(188, 227, 244, .28);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(37, 82, 117, .8), rgba(12, 31, 52, .82));
  box-shadow: 0 25px 70px rgba(0,0,0,.3);
  transform: rotate(3deg);
}
.art-card svg { display: block; width: 100%; height: auto; margin-bottom: 1.2rem; }
.art-card h2 { color: #fff; font-size: 1.35rem; }
.art-card p { margin: .4rem 0 0; color: #b6d0df; font-size: .9rem; }
.art-label { display: inline-block; margin-bottom: .8rem; padding: .25rem .55rem; border-radius: 99px; background: rgba(240,179,77,.15); color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.4rem 0; }
.trust-item { display: flex; align-items: center; gap: .75rem; color: var(--ink-soft); font-size: .9rem; font-weight: 680; }
.trust-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 9px; background: var(--sky); color: var(--blue); font-weight: 850; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tint { background: var(--mist); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; }
.section-heading h2 { max-width: 580px; font-size: clamp(2rem, 4vw, 3.3rem); }
.section-heading p { max-width: 420px; margin: 0; color: var(--ink-soft); }
.section-kicker { margin: 0 0 .65rem; color: var(--blue); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { display: flex; min-height: 245px; flex-direction: column; align-items: flex-start; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { margin-bottom: 2.5rem; color: var(--blue); font-size: .8rem; font-weight: 850; }
.service-card h3 { margin-bottom: .65rem; font-size: 1.25rem; }
.service-card p { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: .92rem; }
.text-link { margin-top: auto; font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: process; }
.process-item { position: relative; padding: 1.7rem 1.7rem 1.7rem 4.9rem; border-top: 2px solid var(--blue); background: var(--paper); }
.process-item::before { position: absolute; top: 1.6rem; left: 1.7rem; color: var(--accent); content: counter(process, decimal-leading-zero); counter-increment: process; font-size: 1.8rem; font-weight: 900; letter-spacing: -.06em; }
.process-item h3 { font-size: 1.25rem; }
.process-item p { margin: .6rem 0 0; color: var(--ink-soft); font-size: .94rem; }

.area-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.area-panel h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.area-panel p { margin: 1rem 0 0; color: var(--ink-soft); }
.area-note { padding: 1.6rem; border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; background: var(--paper); box-shadow: 0 10px 35px rgba(16,37,62,.06); }
.area-note strong { display: block; margin-bottom: .35rem; color: var(--navy); font-size: 1.15rem; }
.area-note p { margin: 0; }

.cta-band { padding: 3.6rem 0; background: var(--blue); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.cta-band p { max-width: 520px; margin: .6rem 0 0; color: #d9edf8; }
.cta-band .hero-actions { margin-top: 0; }

.page-hero { padding: clamp(3.3rem, 7vw, 5.8rem) 0; background: var(--navy-deep); color: #fff; }
.page-hero h1 { max-width: 800px; color: #fff; font-size: clamp(2.25rem, 5vw, 4rem); }
.page-hero p { max-width: 680px; margin: 1rem 0 0; color: #c6d9e7; font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 1.5rem; color: #a9d7ed; font-size: .87rem; }
.breadcrumbs a { color: #cbeaf8; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(2.5rem, 8vw, 7rem); align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin: 2.4rem 0 .8rem; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.7rem 0 .55rem; font-size: 1.25rem; }
.prose p { margin: 0 0 1rem; color: var(--ink-soft); }
.prose ul { margin: .75rem 0 1.4rem; padding-left: 1.2rem; color: var(--ink-soft); }
.prose li { margin: .35rem 0; padding-left: .2rem; }
.prose li::marker { color: var(--accent); }
.side-card { position: sticky; top: 1.5rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); }
.side-card h2 { margin-bottom: 1rem; font-size: 1.15rem; }
.side-card ul { margin: 0; padding: 0; list-style: none; }
.side-card li + li { border-top: 1px solid var(--line); }
.side-card a { display: block; padding: .65rem 0; font-weight: 700; text-decoration: none; }

.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; margin: 1.4rem 0 1.4rem; }
.symptom { padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--mist); }
.symptom strong { display: block; margin-bottom: .2rem; color: var(--navy); }
.symptom span { color: var(--ink-soft); font-size: .9rem; }
.info-callout { margin: 1.5rem 0; padding: 1.15rem 1.3rem; border-left: 3px solid var(--blue-bright); border-radius: 0 12px 12px 0; background: var(--sky); color: var(--ink-soft); }
.info-callout strong { color: var(--navy); }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; }
.contact-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 10px 35px rgba(16,37,62,.05); }
.contact-card h2 { margin-bottom: 1.4rem; font-size: 1.6rem; }
.contact-details { display: grid; gap: 1.2rem; margin: 0; }
.contact-detail dt { margin-bottom: .1rem; color: var(--ink-soft); font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-detail dd { margin: 0; color: var(--navy); font-size: 1.08rem; font-weight: 700; }
.contact-detail dd a { color: inherit; }
.contact-detail dd, .footer-address a { overflow-wrap: anywhere; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }
.no-map { display: grid; min-height: 100%; align-content: center; padding: 2rem; border: 1px dashed #a8c6d6; border-radius: var(--radius); background: linear-gradient(145deg, var(--sky), #f9fcfd); }
.no-map-mark { display: grid; width: 52px; height: 52px; margin-bottom: 1rem; place-items: center; border-radius: 15px; background: var(--navy); color: var(--accent); font-size: 1.45rem; font-weight: 900; }
.no-map h2 { font-size: 1.5rem; }
.no-map p { max-width: 430px; margin: .7rem 0 0; color: var(--ink-soft); }

.site-footer { padding: 3.5rem 0 2rem; background: var(--navy-deep); color: #b7c9d8; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .9fr; gap: 2rem; padding-bottom: 2.6rem; }
.site-footer .brand { color: #fff; }
.footer-intro { max-width: 320px; margin: 1rem 0 0; font-size: .9rem; }
.footer-title { margin: 0 0 .75rem; color: #fff; font-size: .9rem; font-weight: 800; }
.footer-links, .footer-address { margin: 0; padding: 0; list-style: none; font-size: .9rem; }
.footer-links li + li { margin-top: .42rem; }
.site-footer a { color: #c9e8f5; }
.footer-address li + li { margin-top: .5rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid rgba(201,232,245,.15); font-size: .82rem; }
.footer-bottom p { margin: 0; }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .hero-grid { gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { gap: 2.5rem; }
}

@media (min-width: 900px) {
  .services-menu { display: none !important; }
}

@media (max-width: 899px) {
  .header-call, .desktop-services-panel { display: none !important; }
  .header-inner { min-height: 70px; grid-template-columns: minmax(0, 1fr) auto; }
  .brand { font-size: .77rem; letter-spacing: .055em; }
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; border-radius: 10px; }
  .menu-toggle { grid-column: 2; display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; justify-self: end; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--navy); font-size: 1.2rem; cursor: pointer; }
  .primary-nav { position: absolute; z-index: 35; top: 100%; right: calc(50% - 50vw); left: calc(50% - 50vw); grid-column: 1 / -1; display: none; padding: .75rem; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 15px 25px rgba(16,37,62,.12); }
  .primary-nav.is-open { display: block; }
  .nav-links { display: block; }
  .nav-link, .nav-services-toggle { display: flex; width: 100%; justify-content: space-between; padding: .78rem .7rem; }
  .services-menu { position: static; width: auto; min-width: 0; margin: .2rem 0 .35rem; border: 0; border-left: 2px solid var(--line); border-radius: 0; box-shadow: none; }
  .services-menu a { display: flex; min-height: 42px; align-items: center; padding: .35rem .7rem; border-radius: 8px; color: var(--ink); font-size: .88rem; line-height: 1.3; text-align: left; text-decoration: none; }
  .services-menu a:hover { background: var(--mist); }
}

@media (max-width: 760px) {
  html { scroll-behavior: auto; }
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 1.5rem), var(--content)); }
  .hero { padding: 3.8rem 0 4rem; }
  .hero-grid { display: block; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-art { min-height: 270px; margin-top: 2rem; }
  .art-card { right: 2%; width: min(92%, 340px); padding: 1.2rem; }
  .trust-grid { grid-template-columns: 1fr; gap: .7rem; padding: 1.1rem 0; }
  .section { padding: 3.8rem 0; }
  .section-heading { display: block; margin-bottom: 1.6rem; }
  .section-heading p { margin-top: .8rem; }
  .services-grid, .process-grid, .contact-layout, .content-grid, .area-panel { grid-template-columns: 1fr; }
  .service-card { min-height: 215px; }
  .process-item { padding: 1.4rem 1.4rem 1.4rem 4.3rem; }
  .process-item::before { top: 1.35rem; left: 1.4rem; }
  .area-panel { gap: 1.5rem; }
  .cta-band-inner { display: block; }
  .cta-band .hero-actions { margin-top: 1.5rem; }
  .page-hero { padding: 3.2rem 0 3.7rem; }
  .breadcrumbs { margin-bottom: 1.1rem; }
  .side-card { position: static; order: -1; }
  .symptom-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.7rem; padding-bottom: 2rem; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: .4rem; }
  .mobile-actions { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem; border-top: 1px solid rgba(16,37,62,.12); background: rgba(255,255,255,.97); box-shadow: 0 -8px 25px rgba(16,37,62,.12); }
  .mobile-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 9px; font-size: .92rem; font-weight: 850; text-decoration: none; }
  .mobile-call { background: var(--navy); color: #fff; }
  .mobile-wa { background: #dff5ec; color: #14654d; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
