:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-2: #f7f8fb;
  --surface-3: #eef2f7;
  --ink: #17212b;
  --ink-2: #3a4755;
  --ink-3: #667587;
  --line: #d8e0ea;
  --brand: #0b2d4f;
  --brand-2: #143f6b;
  --brand-3: #0a2440;
  --green: #6f9445;
  --accent: #ee8d1d;
  --accent-2: #c96f11;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(12, 26, 43, 0.08);
  --shadow-md: 0 18px 40px rgba(12, 26, 43, 0.14);
  --shadow-lg: 0 28px 60px rgba(10, 23, 40, 0.22);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1200px;
  --header-offset: 112px;
  --font-body: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(111, 148, 69, 0.12), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(238, 141, 29, 0.08), transparent 42%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

strong {
  color: var(--brand);
}

::selection {
  background: rgba(238, 141, 29, 0.22);
  color: var(--ink);
}

section[id],
main[id],
div[id] {
  scroll-margin-top: var(--header-offset);
}

.visually-hidden {
  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: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 999;
  background: var(--brand);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(238, 141, 29, 0.75);
  outline-offset: 2px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: linear-gradient(180deg, #f5a03c, var(--accent-2));
  color: #1f1201;
  box-shadow: 0 10px 22px rgba(201, 111, 17, 0.28);
}

.btn--solid:hover {
  box-shadow: 0 14px 24px rgba(201, 111, 17, 0.34);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.btn--small {
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.87rem;
}

.kicker,
.eyebrow,
.service-card__eyebrow,
.contact-item__label,
.trust-item__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-2);
}

.kicker::before,
.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(238, 141, 29, 0.12);
}

.section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.96));
  border-block: 1px solid rgba(11, 45, 79, 0.06);
}

.section__head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 62rem;
}

.section__head p:last-child {
  color: var(--ink-2);
  max-width: 58ch;
  font-size: 1.02rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 38, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 38, 0.9);
  box-shadow: 0 8px 24px rgba(4, 10, 20, 0.24);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.top-strip__inner a {
  color: #ffd49f;
  font-weight: 700;
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.75rem;
  padding-block: 0.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
}

.brand__tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.primary-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: background-color 150ms ease, color 150ms ease;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.header-call {
  color: #1f1201;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 23, 41, 0.96);
  backdrop-filter: blur(14px);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
}

.mobile-panel__links {
  display: grid;
  gap: 0.4rem;
}

.mobile-panel__links a {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.mobile-panel__cta {
  display: grid;
  gap: 0.6rem;
}

.mobile-panel__cta .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.8rem, 6vw, 4.2rem);
  background:
    linear-gradient(160deg, rgba(7, 20, 35, 0.98), rgba(10, 29, 49, 0.94) 55%, rgba(14, 44, 75, 0.92));
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 22%, rgba(111, 148, 69, 0.22), transparent 38%),
    radial-gradient(circle at 86% 28%, rgba(238, 141, 29, 0.18), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 18px);
  opacity: 0.95;
}

.hero__layout,
.trust-strip {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2.5vw, 2.25rem);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1rem;
}

.hero__copy h1 {
  color: var(--white);
  max-width: 12.5ch;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 56ch;
  font-size: 1.05rem;
}

.hero__lead strong {
  color: #fff0db;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.hero__meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.hero__meta-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__meta-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.hero__meta-item strong {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.82fr);
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-frame {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.hero-frame:hover img {
  transform: scale(1.03);
}

.hero-frame--main {
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5;
}

.hero-frame--stack {
  aspect-ratio: 1 / 1;
}

.hero-badge {
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: min(21rem, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(11, 45, 79, 0.08);
  box-shadow: 0 14px 26px rgba(9, 16, 28, 0.2);
}

.hero-badge__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.hero-badge ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.hero-badge li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.hero-badge li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--green);
}

.trust-strip {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-item {
  padding: 1rem 1rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 45, 79, 0.08);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.35rem;
}

.trust-item__label {
  color: var(--ink-3);
  letter-spacing: 0.12em;
}

.trust-item strong {
  font-size: 1rem;
  line-height: 1.25;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.industry-card__icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: linear-gradient(180deg, rgba(20, 63, 107, 0.08), rgba(111, 148, 69, 0.14));
  border: 1px solid rgba(11, 45, 79, 0.08);
}

.industry-card h3 {
  line-height: 1;
}

.industry-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 45, 79, 0.15);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(8, 18, 31, 0.28));
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__body {
  padding: 1.15rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.service-card__eyebrow {
  color: var(--green);
}

.service-card__body h3 {
  line-height: 0.95;
  color: var(--brand);
}

.service-card__body > p:last-of-type {
  color: var(--ink-2);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px rgba(238, 141, 29, 0.12);
}

.checklist--light li {
  color: rgba(255, 255, 255, 0.9);
}

.checklist--light li::before {
  background: #ffd49f;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.09);
}

.checklist--light strong {
  color: #ffffff;
}

.urgent-banner {
  padding: 1rem 0;
}

.urgent-banner__inner {
  background:
    linear-gradient(120deg, rgba(11, 45, 79, 0.97), rgba(20, 63, 107, 0.94) 62%, rgba(111, 148, 69, 0.85));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: clamp(1.1rem, 2vw, 1.35rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.urgent-banner__inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-top: 0.35rem;
}

.urgent-banner__inner p:last-child {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 58ch;
}

.urgent-banner__inner .kicker,
.urgent-banner__inner .kicker::before {
  color: #d7e3f5;
}

.urgent-banner__inner .kicker::before {
  background: #ffd49f;
  box-shadow: 0 0 0 4px rgba(255, 212, 159, 0.16);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 10.5rem;
  gap: 0.85rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(11, 45, 79, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 250ms ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 15, 26, 0.7));
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.gallery-tile figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.gallery-tile:hover::after {
  opacity: 0.7;
}

.gallery-tile--wide {
  grid-column: span 2;
}

.gallery-tile--tall {
  grid-row: span 2;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.1rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.95rem;
}

.panel--accent {
  background:
    linear-gradient(160deg, rgba(11, 45, 79, 0.98), rgba(20, 63, 107, 0.95) 68%, rgba(11, 45, 79, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.panel--accent .kicker,
.panel--accent .panel__title {
  color: var(--white);
}

.panel--accent .kicker::before {
  background: #ffd49f;
  box-shadow: 0 0 0 4px rgba(255, 212, 159, 0.16);
}

.panel__title {
  color: var(--brand);
}

.panel__sub {
  color: var(--ink-2);
}

.stat-list {
  display: grid;
  gap: 0.6rem;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid rgba(11, 45, 79, 0.06);
}

.stat-row span {
  color: var(--ink-2);
}

.stat-row strong {
  text-align: right;
  color: var(--brand);
}

.service-area-card {
  margin-top: 0.25rem;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(111, 148, 69, 0.08), rgba(20, 63, 107, 0.04));
  border: 1px solid rgba(11, 45, 79, 0.08);
}

.service-area-card h3 {
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 45, 79, 0.08);
  color: var(--ink-2);
  font-size: 0.9rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 14.25rem;
}

.process-step {
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 45, 79, 0.08);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.process-card p {
  color: var(--ink-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 0.2rem 0.9rem;
}

.faq-item[open] {
  border-color: rgba(11, 45, 79, 0.14);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1.9rem 0.85rem 0;
  position: relative;
  font-weight: 700;
  color: var(--brand);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.62rem;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--ink-3);
  transition: transform 150ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-item p {
  padding-bottom: 0.95rem;
  color: var(--ink-2);
}

.contact-section {
  padding-top: 0;
}

.contact-wrap {
  background: var(--surface);
  border: 1px solid rgba(11, 45, 79, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
}

.contact-panel {
  padding: clamp(1.15rem, 2vw, 1.35rem);
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--brand);
}

.contact-panel p {
  color: var(--ink-2);
}

.contact-panel--primary {
  background:
    linear-gradient(165deg, rgba(11, 45, 79, 0.98), rgba(20, 63, 107, 0.95) 70%, rgba(14, 44, 75, 0.94));
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: clip;
}

.contact-panel--primary::before,
.contact-panel--primary::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.contact-panel--primary::before {
  width: 14rem;
  height: 14rem;
  background: rgba(111, 148, 69, 0.18);
  top: -3rem;
  right: -2rem;
}

.contact-panel--primary::after {
  width: 12rem;
  height: 12rem;
  background: rgba(238, 141, 29, 0.14);
  bottom: -3.5rem;
  left: -2.5rem;
}

.contact-panel--primary > * {
  position: relative;
  z-index: 1;
}

.contact-panel--primary h2,
.contact-panel--primary p,
.contact-panel--primary .kicker {
  color: var(--white);
}

.contact-panel--primary .kicker::before {
  background: #ffd49f;
  box-shadow: 0 0 0 4px rgba(255, 212, 159, 0.12);
}

.contact-panel--primary p {
  color: rgba(255, 255, 255, 0.87);
  max-width: 54ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.contact-actions .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 251, 0.92));
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 45, 79, 0.14);
  box-shadow: 0 16px 22px rgba(12, 22, 35, 0.08);
}

.contact-item__label {
  color: var(--ink-3);
}

.contact-item strong {
  font-size: 1.02rem;
  color: var(--brand);
}

.contact-item small {
  color: var(--ink-3);
}

.contact-note {
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.site-footer {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(180deg, rgba(7, 20, 35, 1), rgba(6, 16, 29, 1));
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.25rem 0 1.4rem;
}

.footer-col {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #ffd49f;
}

.brand--footer .brand__logo {
  background: rgba(255, 255, 255, 0.04);
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
  max-width: 48ch;
  font-size: 0.95rem;
}

.footer-bottom {
  padding: 0.95rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.87rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .mobile-panel {
    display: none;
  }

  .services-grid > :nth-child(2),
  .services-grid > :nth-child(4) {
    margin-top: 1rem;
  }

  .gallery-grid > :nth-child(2),
  .gallery-grid > :nth-child(7) {
    transition-delay: 70ms;
  }

  .gallery-grid > :nth-child(3),
  .gallery-grid > :nth-child(8) {
    transition-delay: 120ms;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-offset: 106px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__copy h1 {
    max-width: 16ch;
  }

  .hero__visual {
    max-width: 44rem;
  }

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

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

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 98px;
  }

  .top-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.45rem 0;
    min-height: 0;
  }

  .header-bar {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .primary-nav {
    display: none;
  }

  .header-actions .btn--ghost,
  .header-actions .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .compliance-grid,
  .faq-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-panel--primary {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 10rem;
  }

  .gallery-tile--wide {
    grid-column: span 2;
  }

  .urgent-banner__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-offset: 92px;
  }

  .brand__text {
    display: none;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero__visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.65rem;
  }

  .hero-frame--main,
  .hero-frame--stack {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 0.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 12rem;
  }

  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col--brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
