:root {
  --navy: #102f57;
  --navy-deep: #061426;
  --ink: #05080d;
  --steel: #aeb8c5;
  --paper: #f2f1ec;
  --white: #fff;
  --blue: #4d8fca;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--paper); background: var(--ink); font-family: Arial, Helvetica, sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0; height: 104px;
  display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 42px;
  max-width: var(--max); margin: auto; padding: 0 38px; border-bottom: 1px solid var(--line);
}
.brand { width: 176px; height: 68px; display: flex; align-items: center; }
.brand img, .footer-brand img { width: 100%; }
.site-nav { justify-self: center; display: flex; gap: 42px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { transition: color .2s; }
.site-nav a:hover { color: var(--blue); }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .06em; }
.header-cta { border: 1px solid rgba(255,255,255,.6); padding: 15px 18px; }
.cta-label { display: grid; gap: 4px; }
.cta-label small { color: var(--steel); font-size: .58rem; font-weight: 600; letter-spacing: .1em; }
.menu-toggle { display: none; }

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  padding: 180px max(38px, calc((100vw - var(--max)) / 2 + 38px)) 190px;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 13, .94) 0%, rgba(5, 8, 13, .78) 42%, rgba(6, 20, 38, .34) 100%),
    radial-gradient(circle at 73% 43%, rgba(23, 57, 95, .42) 0, rgba(13, 34, 61, .48) 28%, rgba(5, 8, 13, .22) 64%),
    url("Assets/Hero.jpg");
  background-position: center, center, center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 100% 150px, 220px 100%; }
.hero-copy { position: relative; z-index: 2; max-width: 960px; }
.eyebrow { margin: 0 0 26px; color: var(--blue); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow span { color: var(--blue); margin-right: 18px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; letter-spacing: -.015em; line-height: .92; }
h1 { max-width: 900px; margin-bottom: 34px; font-size: clamp(5rem, 8.7vw, 9rem); font-weight: 900; }
h1 em { color: var(--steel); font-style: normal; }
.hero-intro { max-width: 560px; color: #cad1da; font-size: 1.1rem; line-height: 1.65; }
.hero-actions { position: relative; z-index: 4; display: flex; align-items: center; gap: 35px; margin-top: 42px; }
.button { min-width: 235px; padding: 19px 20px; }
.button-primary { background: var(--blue); color: white; }
.button-light { background: var(--paper); color: var(--navy-deep); }
.text-link { padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-proof { position: absolute; z-index: 3; left: max(38px, calc((100vw - var(--max)) / 2 + 38px)); right: max(38px, calc((100vw - var(--max)) / 2 + 38px)); bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-proof > div { display: flex; align-items: center; gap: 18px; min-height: 126px; padding: 24px 36px; border-right: 1px solid var(--line); }
.hero-proof strong { color: var(--white); font-family: Impact, sans-serif; font-size: 2.8rem; letter-spacing: .02em; }
.hero-proof span { color: var(--steel); font-size: .68rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .1em; }

.section { max-width: var(--max); margin: auto; padding: 130px 38px; }
.services { --service-stage-height: min(760px, calc(100vh - 160px)); min-height: var(--service-stage-height); display: grid; grid-template-columns: .85fr 1.4fr; align-items: start; gap: 8vw; position: relative; background: var(--paper); color: var(--navy-deep); max-width: none; padding-top: 80px; padding-bottom: 80px; padding-left: max(38px, calc((100vw - var(--max)) / 2 + 38px)); padding-right: max(38px, calc((100vw - var(--max)) / 2 + 38px)); }
.services::before { display: none; }
.services-left { min-width: 0; height: var(--service-stage-height); position: relative; z-index: 1; grid-column: 1; grid-row: 1; align-self: start; display: flex; flex-direction: column; }
.section-heading { align-self: start; }
.section-heading .eyebrow { color: var(--blue); }
.section-heading h2, .about-copy h2, .area-copy h2, .contact h2 { font-size: clamp(3.6rem, 6vw, 6.5rem); }
.services .section-heading h2 { font-size: clamp(3rem, 4.3vw, 4.8rem); }
.section-heading > p:last-child { max-width: 430px; margin-top: 20px; color: #5a6570; line-height: 1.6; }
.service-visual { min-height: 0; flex: 1; position: relative; width: 100%; margin: 28px 0 0; }
.service-images { height: calc(100% - 44px); position: relative; overflow: hidden; background: var(--navy-deep); }
.service-images::after { content: ""; position: absolute; inset: 0; z-index: 5; background: linear-gradient(180deg, transparent 55%, rgba(6,20,38,.58)); pointer-events: none; }
.service-image { width: 100%; height: 112%; position: absolute; inset: -6% 0 0; object-fit: cover; opacity: 0; transform: translateY(3%) scale(1.04); transition: opacity .65s ease, transform 1.1s ease; }
.service-image.active { opacity: 1; transform: translateY(var(--parallax-y, 0%)) scale(1.02); }
.service-visual figcaption { min-height: 44px; display: flex; align-items: center; gap: 18px; margin: 0; padding: 11px 14px; color: white; background: var(--navy-deep); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.service-caption-number { color: var(--blue); }
.service-list { height: var(--service-stage-height); position: relative; z-index: 1; grid-column: 2; grid-row: 1; align-self: start; display: grid; grid-template-rows: repeat(5, 1fr); border-top: 1px solid #aab0b6; }
.service-card { min-height: 0; position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 24px; align-items: center; padding: 16px 0; opacity: .34; visibility: visible; cursor: pointer; outline: none; border-bottom: 1px solid #aab0b6; transition: opacity .35s ease, transform .35s ease; }
.service-card.active { opacity: 1; transform: translateX(10px); }
.service-card:focus-visible { box-shadow: inset 3px 0 0 var(--blue); }
.service-number { align-self: start; padding-top: 34px; color: #77818b; font-size: .72rem; }
.service-card.active .service-number { color: var(--blue); }
.service-card h3 { margin-bottom: 10px; font-family: Impact, sans-serif; font-size: clamp(1.45rem, 2vw, 2.2rem); text-transform: uppercase; letter-spacing: .01em; }
.service-card.active h3 { color: var(--navy); }
.service-card p { max-width: 480px; margin-bottom: 0; color: #616b76; line-height: 1.55; }

.about { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); max-width: none; padding: 0; background: var(--navy-deep); }
.about-image { position: relative; min-height: 780px; overflow: hidden; }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(6,20,38,.35)); pointer-events: none; }
.about-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.about-image > span { position: absolute; z-index: 2; left: 28px; bottom: 26px; padding: 8px 10px; color: white; background: rgba(6,20,38,.72); font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; }
.about-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 110px max(38px, calc((100vw - var(--max)) / 2 + 38px)) 110px 7vw; padding-right: max(38px, calc((100vw - var(--max)) / 2 + 38px)); }
.about-copy h2 { margin-bottom: 34px; font-size: clamp(3.8rem, 5.8vw, 6.5rem); }
.about-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 22px; color: #aeb9c6; line-height: 1.75; }
.about-copy .about-lead { color: var(--paper); font-size: 1.08rem; }
.about-facts { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); margin: 22px 0 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts > div { display: grid; gap: 7px; padding: 25px 20px 25px 0; }
.about-facts > div + div { padding-left: 25px; border-left: 1px solid var(--line); }
.about-facts strong { font-family: Impact, sans-serif; font-size: 2.7rem; font-weight: 400; }
.about-facts span { color: var(--steel); font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; }

.service-area { min-height: 600px; max-width: none; padding-top: 90px; padding-bottom: 90px; padding-left: max(38px, calc((100vw - var(--max)) / 2 + 38px)); padding-right: max(38px, calc((100vw - var(--max)) / 2 + 38px)); background: #d9dde1; color: var(--navy-deep); overflow: hidden; }
.area-top { min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.area-copy { max-width: 860px; }
.area-copy .eyebrow { color: var(--blue); }
.area-copy h2 { max-width: 790px; font-size: clamp(3.4rem, 5vw, 5.4rem); }
.area-badge { flex: 0 0 250px; width: 250px; height: 250px; display: grid; place-items: center; position: relative; border: 1px solid #9da9b3; border-radius: 50%; }
.area-badge::before, .area-badge::after { content:""; position:absolute; inset:30px; border:1px solid #aab4bd; border-radius:50%; }
.area-badge::after { inset: 60px; }
.area-badge span { z-index: 2; color: var(--navy); font-family: Impact, sans-serif; font-size: 3.5rem; }
.area-badge i { position: absolute; bottom: 24px; font-style: normal; font-size: .58rem; text-transform: uppercase; letter-spacing: .15em; }
.city-directory { padding-top: 48px; border-top: 1px solid #9da9b3; }
.city-intro { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 45px; }
.city-intro h3 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.city-intro p { max-width: 720px; margin: 0; color: #596674; line-height: 1.7; }
.city-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 6vw; }
.city-group { border-top: 1px solid #a7b0b8; padding-top: 20px; }
.city-group h4 { margin: 0 0 18px; color: var(--navy); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.city-group ul { margin: 0; padding: 0; columns: 2; list-style: none; }
.city-group li { break-inside: avoid; margin-bottom: 6px; color: #53606d; font-size: .8rem; line-height: 1.3; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; padding: 130px max(38px, calc((100vw - var(--max)) / 2 + 38px)); background: var(--ink); }
.contact-actions > p { max-width: 480px; color: #97a2ae; line-height: 1.6; }
.contact-link { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 22px; min-height: 86px; border-bottom: 1px solid var(--line); }
.contact-link > span:first-child { color: #768391; font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-link strong { font-size: clamp(.9rem, 1.5vw, 1.2rem); }
.contact-value { display: grid; gap: 6px; }
.contact-value small { color: var(--blue); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

footer { max-width: var(--max); min-height: 150px; margin: auto; padding: 35px 38px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; border-top: 1px solid var(--line); color: #77818d; font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-brand { width: 150px; min-height: 64px; display: flex; align-items: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 84px; grid-template-columns: 1fr auto; padding: 0 22px; }
  .brand { width: 145px; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 8px; color: white; background: none; border: 0; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
  .menu-toggle i { width: 16px; height: 1px; background: white; }
  .menu-toggle i:last-child { display: none; }
  .site-nav { position: fixed; inset: 84px 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 60px 30px; background: var(--navy-deep); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-family: Impact, sans-serif; font-size: 2.5rem; }
  .hero { min-height: 820px; padding: 160px 22px 200px; }
  h1 { font-size: clamp(4rem, 17vw, 6rem); }
  .hero-intro { font-size: 1rem; }
  .hero-proof { left: 22px; right: 22px; grid-template-columns: 1fr; }
  .hero-proof > div { min-height: 64px; padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof strong { width: 75px; font-size: 2rem; }
  .section, .services { padding: 90px 22px; }
  .services, .about, .contact { grid-template-columns: 1fr; }
  .services { min-height: 0; padding-top: 90px; padding-bottom: 90px; background: var(--paper); }
  .services::before { display: none; }
  .services-left { height: auto; position: static; grid-column: auto; grid-row: auto; display: block; }
  .section-heading { position: static; }
  .service-visual { position: relative; top: auto; max-width: 620px; margin: 45px 0 65px; }
  .service-images { height: auto; aspect-ratio: 16 / 10; }
  .service-list { height: auto; position: static; grid-column: auto; grid-row: auto; display: block; overflow: visible; border-bottom: 0; }
  .service-card { min-height: 180px; position: static; grid-template-columns: 35px 1fr; opacity: 1; visibility: visible; transform: none; border-bottom: 1px solid #aab0b6; }
  .service-card.active { transform: none; }
  .about-image { min-height: 620px; }
  .about-copy, .contact { padding: 90px 22px; }
  .service-area { min-height: 700px; padding: 90px 22px; }
  .area-top { min-height: 0; flex-direction: column; align-items: flex-start; }
  .area-badge { align-self: center; flex-basis: 230px; width: 230px; height: 230px; }
  .city-directory { margin-top: 50px; }
  .city-intro { grid-template-columns: 1fr; gap: 22px; }
  .city-groups { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; gap: 12px; padding: 35px 22px; }
}

@media (max-width: 560px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .section-heading h2, .about-copy h2, .area-copy h2, .contact h2 { font-size: 3.5rem; }
  .service-card { min-height: 200px; }
  .service-card h3 { font-size: 1.7rem; }
  .service-card p { font-size: .85rem; }
  .contact-link { grid-template-columns: 1fr auto; padding: 18px 0; }
  .contact-link > span:first-child { grid-column: 1 / -1; }
  .contact-link strong { word-break: break-word; }
  .city-groups { grid-template-columns: 1fr; gap: 35px; }
  .city-group ul { columns: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
