:root {
  --navy: #071a33;
  --navy-2: #0d294a;
  --navy-3: #12375f;
  --orange: #ff5a32;
  --orange-dark: #e64520;
  --cream: #f7f4ef;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f5;
  --gray-200: #dce3ea;
  --gray-500: #607086;
  --text: #152238;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 26, 51, .12);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: -9999px;
  z-index: 9999;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { left: 10px; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease;
}
.inner-page .site-header {
  position: relative;
  background: var(--navy);
}
.header-shell {
  width: min(1280px, calc(100% - 48px));
  min-height: 98px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.inner-page .header-shell { border-bottom-color: rgba(255,255,255,.14); }
.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.brand-main {
  font-size: clamp(25px, 2.4vw, 37px);
  font-weight: 900;
  letter-spacing: -1.7px;
}
.brand-sub {
  margin-top: 7px;
  padding-left: 2px;
  font-size: clamp(9px, .72vw, 11px);
  font-weight: 800;
  letter-spacing: clamp(4px, .55vw, 7px);
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right .18s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.header-call {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-end;
  line-height: 1.2;
}
.header-call span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,.7);
}
.header-call strong {
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 10px;
}

/* Buttons */
.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .55px;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.hero-arrow:focus-visible,
.hero-tab:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255,90,50,.45);
  outline-offset: 4px;
}
.button-primary { background: var(--orange); color: #fff; }
.button-primary:hover { background: var(--orange-dark); }
.button-ghost { border-color: rgba(255,255,255,.72); color: #fff; background: rgba(7,26,51,.18); backdrop-filter: blur(8px); }
.button-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.button-dark { background: var(--navy); color: #fff; }
.button-light { background: #fff; color: var(--navy); }
.button-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.button-outline-light:hover { background: #fff; color: var(--navy); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}
.text-link span { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide picture { position: absolute; inset: 0; }
.hero-slide picture,
.hero-slide img { width: 100%; height: 100%; }
.hero-slide img { object-fit: cover; }
.hero-slide:nth-child(1) img { object-position: center center; }
.hero-slide:nth-child(2) img { object-position: center 48%; }
.hero-slide:nth-child(3) img { object-position: center 32%; }
.hero-shade {
  position: absolute;
  inset: 0;
  /* Neutral localized overlay: protects the text without tinting the photo blue. */
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.52) 34%, rgba(0,0,0,.16) 62%, rgba(0,0,0,0) 82%),
    linear-gradient(0deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 42%);
}
.hero-shade-strong {
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 40%, rgba(0,0,0,.22) 68%, rgba(0,0,0,0) 88%),
    linear-gradient(0deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,0) 44%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 210px;
}
.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}
.hero h1,
.hero h2 {
  margin: 0;
  max-width: 770px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -3.2px;
  font-weight: 900;
  text-wrap: balance;
}
.hero-lead {
  max-width: 680px;
  margin: 25px 0 31px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: stretch;
  gap: 10px;
}
.hero-arrow {
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(7,26,51,.58);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 21px;
  backdrop-filter: blur(10px);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-tab {
  min-height: 74px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(7,26,51,.58);
  color: #fff;
  text-align: left;
  padding: 12px 15px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease;
}
.hero-tab span {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.hero-tab strong { display: block; margin-top: 4px; font-size: 13px; }
.hero-tab.is-active { background: rgba(255,255,255,.96); color: var(--navy); border-color: #fff; }

/* Trust strip */
.trust-bar { background: var(--navy); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  min-height: 112px;
}
.trust-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { font-size: 15px; font-weight: 900; }
.trust-grid span { color: rgba(255,255,255,.64); font-size: 12px; margin-top: 3px; }

/* Sections */
.section { padding: 104px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading h2,
.about-layout h2,
.contact-section h2,
.faq-intro h2,
.work-copy h2,
.service-page-copy h1,
.service-page-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 900;
  text-wrap: balance;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
}
.split-heading > p,
.centered-heading > p,
.work-copy > p,
.about-layout p,
.faq-intro > p,
.service-page-copy > p {
  margin: 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.centered-heading .kicker { justify-content: center; }
.centered-heading h2 { margin-bottom: 18px; }

/* Service cards */
.services-section { background: var(--gray-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card { min-height: 360px; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 8px 28px rgba(7,26,51,.06); }
.service-card a { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.service-card-photo { grid-column: span 1; }
.service-card-photo a { min-height: 410px; position: relative; color: #fff; }
.service-card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card-photo:hover img { transform: scale(1.035); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,18,36,.92) 0%, rgba(5,18,36,.48) 52%, rgba(5,18,36,.05) 100%); }
.service-card-content { position: relative; margin-top: auto; padding: 30px; z-index: 1; }
.service-card span { color: var(--orange); text-transform: uppercase; font-size: 10px; letter-spacing: 1.5px; font-weight: 900; }
.service-card h3 { margin: 8px 0 9px; font-size: 24px; line-height: 1.15; letter-spacing: -.5px; font-weight: 900; }
.service-card p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; font-weight: 600; }
.service-card strong { margin-top: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .7px; }
.service-card-simple { background: #fff; border: 1px solid var(--gray-200); min-height: 345px; }
.service-card-simple a { padding: 28px; }
.service-card-simple h3 { color: var(--navy); }
.service-card-simple p { color: var(--gray-500); }
.service-card-simple strong { color: var(--navy); margin-top: auto; padding-top: 20px; }
.service-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gray-100);
}
.service-icon img { width: 54px; height: 54px; object-fit: contain; }
.service-card-simple:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-simple { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }

/* Work section */
.work-section { background: #fff; }
.work-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.work-copy h2 { margin-bottom: 24px; }
.check-list { list-style: none; margin: 28px 0 34px; padding: 0; }
.check-list li { position: relative; padding: 0 0 14px 30px; font-weight: 700; font-size: 14px; color: #34445a; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.photo-collage figure { margin: 0; position: relative; overflow: hidden; border-radius: 16px; min-height: 250px; }
.photo-collage .collage-main { grid-row: span 2; min-height: 520px; }
.photo-collage img { width: 100%; height: 100%; object-fit: cover; }
.photo-collage figure:nth-child(2) img { object-position: center 30%; }
.photo-collage figcaption { position: absolute; left: 14px; bottom: 14px; background: rgba(7,26,51,.78); color: #fff; border-radius: 7px; padding: 8px 11px; font-size: 10px; font-weight: 800; backdrop-filter: blur(7px); }

/* Process */
.process-section { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-grid article { background: #fff; border-radius: var(--radius); padding: 34px; border: 1px solid rgba(7,26,51,.08); }
.process-grid span { display: inline-flex; width: 48px; height: 48px; border-radius: 50%; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-size: 12px; font-weight: 900; }
.process-grid h3 { margin: 22px 0 12px; font-size: 21px; line-height: 1.25; }
.process-grid p { margin: 0; color: var(--gray-500); font-size: 14px; font-weight: 600; }

/* Client logos */
.client-section { padding: 50px 0; background: #fff; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); text-align: center; }
.client-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: clamp(34px, 6vw, 72px); margin-top: 26px; }
.client-logos img { object-fit: contain; filter: grayscale(1); opacity: .72; max-height: 65px; width: auto; }

/* About */
.about-section { background: var(--navy); color: #fff; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-layout p { color: rgba(255,255,255,.73); }
.about-layout p + p { margin-top: 18px; }

/* FAQ */
.faq-section { background: var(--gray-50); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-intro h2 { margin-bottom: 22px; }
.faq-intro .button { margin-top: 30px; }
.faq-list { border-top: 1px solid var(--gray-200); }
.faq-list details { border-bottom: 1px solid var(--gray-200); }
.faq-list summary { list-style: none; cursor: pointer; position: relative; padding: 25px 54px 25px 0; font-size: 17px; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 19px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--navy); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; background: var(--orange); color: #fff; }
.faq-list details p { margin: -4px 54px 26px 0; color: var(--gray-500); font-size: 14px; font-weight: 600; }

/* Contact */
.contact-section { background: var(--navy-2); color: #fff; padding: 82px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.contact-section h2 { max-width: 720px; font-size: clamp(36px, 4.3vw, 60px); }
.contact-section p:not(.kicker) { color: rgba(255,255,255,.7); margin: 18px 0 0; font-weight: 600; }
.kicker-light { color: #ff9a7f; }
.contact-actions { display: grid; gap: 12px; min-width: 290px; }

/* Footer */
.site-footer { background: #04101f; color: #fff; padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 70px; padding-bottom: 48px; }
.footer-brand p { max-width: 430px; margin: 23px 0 0; color: rgba(255,255,255,.58); font-size: 13px; font-weight: 600; }
.footer-brand .former-name { margin-top: 8px; color: rgba(255,255,255,.35); font-size: 11px; }
.footer-grid h2 { margin: 0 0 17px; font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; color: #ff8b6b; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 9px 0; text-decoration: none; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 600; }
.footer-grid > div:not(.footer-brand) > a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.footer-socials img { width: 26px; height: 26px; }
.footer-bottom { min-height: 66px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: 11px; font-weight: 600; }

/* Inner pages */
.inner-hero {
  background: var(--navy);
  color: #fff;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.inner-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .56; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,36,.96) 0%, rgba(5,18,36,.75) 48%, rgba(5,18,36,.3) 100%); }
.inner-hero-content { position: relative; z-index: 1; padding: 110px 0 96px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; }
.breadcrumbs a { text-decoration: none; }
.inner-hero h1 { max-width: 800px; margin: 0; font-size: clamp(46px, 5vw, 72px); line-height: 1.03; letter-spacing: -3px; }
.inner-hero p { max-width: 700px; margin: 24px 0 30px; color: rgba(255,255,255,.82); font-size: 18px; font-weight: 600; }
.service-page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: start; }
.service-page-copy h2 { margin-top: 58px; font-size: clamp(30px, 3vw, 44px); }
.service-page-copy h2:first-child { margin-top: 0; }
.service-page-copy h3 { margin-top: 32px; font-size: 22px; }
.service-page-copy p { margin-top: 18px; }
.service-page-copy ul { margin: 22px 0 0; padding-left: 22px; color: #34445a; }
.service-page-copy li { margin-bottom: 10px; font-weight: 650; }
.service-aside { position: sticky; top: 24px; display: grid; gap: 18px; }
.aside-card { border-radius: 16px; background: var(--gray-50); border: 1px solid var(--gray-200); padding: 26px; }
.aside-card-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.aside-card h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.25; }
.aside-card p { margin: 0 0 18px; color: var(--gray-500); font-size: 13px; font-weight: 600; }
.aside-card-dark p { color: rgba(255,255,255,.7); }
.aside-card .button { width: 100%; margin-top: 8px; }
.aside-links a { display: block; padding: 11px 0; border-bottom: 1px solid var(--gray-200); text-decoration: none; font-size: 13px; font-weight: 800; }
.aside-links a:last-child { border-bottom: 0; }
.service-faq { margin-top: 58px; }
.service-faq details { border-top: 1px solid var(--gray-200); }
.service-faq details:last-child { border-bottom: 1px solid var(--gray-200); }
.service-faq summary { cursor: pointer; list-style: none; font-weight: 900; padding: 18px 38px 18px 0; position: relative; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary::after { content: "+"; position: absolute; right: 0; color: var(--orange); font-size: 21px; }
.service-faq details[open] summary::after { content: "−"; }
.service-faq details p { margin: 0 0 20px; }
.related-section { background: var(--gray-50); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 25px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card span { font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 1.3px; font-weight: 900; }
.related-card h3 { margin: 9px 0 7px; font-size: 19px; }
.related-card p { margin: 0; color: var(--gray-500); font-size: 13px; font-weight: 600; }

/* Toast */
.toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  background: #04101f;
  color: #fff;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

/* Responsive */
@media (max-width: 1080px) {
  .header-shell { grid-template-columns: auto 1fr auto; gap: 20px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; }
  .header-call strong { font-size: 15px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-layout { grid-template-columns: 1fr; }
  .work-copy { max-width: 760px; }
  .photo-collage { max-width: 900px; }
  .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: repeat(3,1fr); min-width: 0; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 38px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .site-header, .inner-page .site-header { position: relative; background: var(--navy); }
  .header-shell { width: min(100% - 32px, 720px); min-height: 78px; grid-template-columns: 1fr auto; border-bottom: 0; }
  .menu-toggle { display: block; }
  .header-call { display: none; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #04101f;
    padding: 12px 18px 22px;
    box-shadow: 0 16px 35px rgba(0,0,0,.25);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 14px; padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .site-nav a::after { display: none; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 110px; }
  .hero h1, .hero h2 { font-size: clamp(42px, 10vw, 64px); letter-spacing: -2.2px; max-width: 650px; }
  .hero-lead { max-width: 580px; }
  .hero-controls { bottom: 18px; grid-template-columns: 42px 1fr 42px; }
  .hero-tab { min-height: 62px; padding: 10px; }
  .hero-tab strong { font-size: 11px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div { border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .trust-grid > div:first-child { padding-left: 22px; }
  .section { padding: 78px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-actions { grid-template-columns: 1fr; max-width: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-page-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .header-shell { width: calc(100% - 28px); }
  .brand-main { font-size: 27px; }
  .brand-sub { letter-spacing: 4px; font-size: 9px; }
  .hero { min-height: 760px; }
  .hero-slide img { object-position: center center; }
  .hero-slide:nth-child(1) img { object-position: center 44%; }
  .hero-slide:nth-child(2) img { object-position: center 42%; }
  .hero-slide:nth-child(3) img { object-position: center 27%; }
  .hero-shade,
  .hero-shade-strong {
    background: linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.60) 43%, rgba(0,0,0,.12) 74%, rgba(0,0,0,0) 88%);
  }
  .hero-content { display: flex; min-height: 760px; flex-direction: column; justify-content: flex-end; padding: 0 0 176px; }
  .hero h1, .hero h2 { font-size: clamp(38px, 12.5vw, 52px); letter-spacing: -1.8px; }
  .hero-lead { font-size: 15px; line-height: 1.55; margin: 18px 0 22px; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-controls { width: calc(100% - 28px); grid-template-columns: 38px 1fr 38px; bottom: 14px; }
  .hero-tabs { gap: 5px; }
  .hero-tab { min-height: 58px; padding: 8px 7px; text-align: center; }
  .hero-tab span { display: none; }
  .hero-tab strong { font-size: 9px; line-height: 1.2; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15) !important; padding: 18px 4px; }
  .trust-grid > div:first-child { padding-left: 4px; }
  .trust-grid > div:last-child { border-bottom: 0 !important; }
  .section-heading h2, .about-layout h2, .contact-section h2, .faq-intro h2, .work-copy h2, .service-page-copy h1, .service-page-copy h2 { font-size: 34px; letter-spacing: -1.3px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-photo a { min-height: 350px; }
  .service-card-simple { min-height: 300px; }
  .photo-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 220px; }
  .photo-collage .collage-main { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
  .photo-collage figure { min-height: 220px; }
  .client-logos { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; gap: 32px; }
  .client-logos img { max-width: 130px; max-height: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 16px 0; }
  .inner-hero { min-height: 520px; }
  .inner-hero-content { padding: 76px 0 72px; }
  .inner-hero h1 { font-size: 44px; letter-spacing: -2px; }
  .inner-hero p { font-size: 16px; }
  .service-aside { grid-template-columns: 1fr; }
}

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

/* =========================================================
   HERO REVISION — cleaner spacing and compact carousel controls
   ========================================================= */
@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (min-width: 861px) {
  .header-shell {
    min-height: 86px;
  }

  .hero {
    height: clamp(620px, calc(100svh - 70px), 720px);
    min-height: 620px;
  }

  .hero-content {
    height: 100%;
    padding-top: 142px;
    padding-bottom: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1,
  .hero h2 {
    max-width: 680px;
    font-size: clamp(46px, 4.35vw, 66px);
    line-height: 1.035;
    letter-spacing: -2.7px;
  }

  .hero-lead {
    max-width: 610px;
    margin: 21px 0 27px;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.55;
  }

  .hero-controls {
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-tabs {
    flex: 1;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 46px);
  }

  .hero-tab {
    position: relative;
    width: auto;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    padding: 9px 0 11px;
    background: transparent;
    backdrop-filter: none;
    opacity: .52;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: opacity .22s ease, color .22s ease;
  }

  .hero-tab:hover {
    opacity: .86;
  }

  .hero-tab span {
    display: inline;
    color: rgba(255,255,255,.62);
    font-size: 9px;
  }

  .hero-tab strong {
    display: inline;
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255,255,255,.28);
    transform-origin: left;
  }

  .hero-tab.is-active {
    background: transparent;
    color: #fff;
    border-color: transparent;
    opacity: 1;
  }

  .hero-tab.is-active span {
    color: var(--orange);
  }

  .hero-tab.is-active::after {
    background: var(--orange);
    animation: heroProgress 5.2s linear both;
  }

  .hero-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7,26,51,.42);
  }

  .trust-grid {
    min-height: 88px;
  }

  .trust-grid > div {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 680px;
    height: 680px;
  }

  .hero-content {
    height: 100%;
    padding-top: 86px;
    padding-bottom: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1,
  .hero h2 {
    max-width: 610px;
    font-size: clamp(40px, 9vw, 58px);
  }

  .hero-lead {
    max-width: 560px;
    margin: 18px 0 24px;
    font-size: 16px;
  }

  .hero-controls {
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .hero-tabs {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .hero-tab {
    position: relative;
    width: auto;
    min-height: 40px;
    padding: 8px 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: .5;
  }

  .hero-tab span {
    display: none;
  }

  .hero-tab strong {
    margin: 0;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255,255,255,.25);
    transform-origin: left;
  }

  .hero-tab.is-active {
    background: transparent;
    color: #fff;
    opacity: 1;
  }

  .hero-tab.is-active::after {
    background: var(--orange);
    animation: heroProgress 5.2s linear both;
  }

  .hero-arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 660px;
    height: 660px;
  }

  .hero-content {
    min-height: 0;
    height: 100%;
    justify-content: flex-end;
    padding: 0 0 112px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(36px, 11.2vw, 48px);
    line-height: 1.04;
  }

  .hero-actions .button {
    min-height: 49px;
  }

  .hero-controls {
    width: calc(100% - 28px);
    bottom: 12px;
    gap: 7px;
  }

  .hero-tabs {
    gap: 11px;
  }

  .hero-tab strong {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
  }

  .hero-arrow {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 82px;
    padding: 14px 12px;
    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
  }

  .trust-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0 !important;
  }

  .trust-grid strong {
    font-size: 12px;
  }

  .trust-grid span {
    font-size: 10px;
    line-height: 1.35;
  }
}

/* Device-specific contact actions: SMS is shown on phones/tablets only. */
.mobile-only { display: none !important; }
.desktop-only { display: inline-flex !important; }

@media (max-width: 860px) {
  .mobile-only { display: inline-flex !important; }
  .desktop-only { display: none !important; }
}
