:root {
  --void: #000;
  --ink: #050505;
  --charcoal: #171717;
  --panel: #202020;
  --graphite: #333;
  --line: rgba(9, 12, 14, .13);
  --line-strong: rgba(9, 12, 14, .24);
  --cream: #f7f5ee;
  --paper: #f7f5ee;
  --paper-soft: #edeae2;
  --white: #fff;
  --smoke: #a1a1a1;
  --muted: #c7c7bf;
  --blue: #169ee8;
  --blue-soft: rgba(22, 158, 232, .22);
  --success: #25d366;
  --max: 1200px;
  --gutter: clamp(18px, 4vw, 44px);
  --radius: 10px;
  --pill: 999px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: Inter, Satoshi, "General Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 6%, rgba(22, 158, 232, .09), transparent 25rem),
    linear-gradient(180deg, #f7f5ee 0%, #edeae2 52%, #f7f5ee 100%);
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

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

a:hover {
  color: var(--white);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0));
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(0, 0, 0, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--pill);
  background: var(--cream);
  padding: 3px;
}

.brand-text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 700;
}

.brand-text span:last-child {
  color: var(--smoke);
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 600;
}

.navlinks {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(32, 32, 32, .42);
  backdrop-filter: blur(18px);
}

.navlinks a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: var(--pill);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.navlinks a.active,
.navlinks a:hover {
  background: var(--cream);
  color: var(--void);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--charcoal);
  border-radius: var(--pill);
  background: var(--charcoal);
  color: var(--white);
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--void);
  border-color: var(--void);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}

.btn:hover::after {
  transform: translateX(4px) rotate(45deg);
}

.btn.ghost,
.btn.outline {
  background: rgba(255, 255, 255, .04);
  color: inherit;
  border-color: var(--line-strong);
}

.btn.ghost:hover,
.btn.outline:hover {
  background: rgba(22, 158, 232, .1);
  color: inherit;
  border-color: var(--blue);
}

.btn.whatsapp {
  background: var(--success);
  border-color: var(--success);
  color: #06150b;
}

.eyebrow {
  margin: 0 0 18px;
  color: #5d625f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.big-statement {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(56px, 8.2vw, 126px);
  font-weight: 300;
  line-height: .92;
}

h1 em,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}

p {
  color: #525750;
}

.intro,
.hero-copy,
.page-hero p {
  max-width: 640px;
  color: #525750;
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 70px;
  background: #000 image-set(url("assets/hero-cctv-rain-poster.webp") type("image/webp"), url("assets/hero-cctv-rain-poster.jpg") type("image/jpeg")) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .86) 46%, rgba(0, 0, 0, .62) 72%, rgba(0, 0, 0, .26) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .28) 42%, rgba(0, 0, 0, .12) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(0deg, #000, transparent);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(calc(var(--hero-x, 0px) * -.2), calc(var(--hero-y, 0px) * -.2), 0) scale(1.02);
  filter: saturate(.78) contrast(1.06);
  transition: transform .28s var(--ease);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.hero-copy {
  color: rgba(247, 245, 238, .82);
}

.hero .btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--void);
}

.hero .btn.ghost {
  background: rgba(0, 0, 0, .28);
  color: var(--cream);
  border-color: rgba(247, 245, 238, .36);
}

.hero .btn.ghost:hover {
  background: rgba(247, 245, 238, .12);
  color: var(--white);
  border-color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-readout {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.hero-readout span {
  min-height: 74px;
  display: flex;
  align-items: center;
  color: rgba(247, 245, 238, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.hero-readout span:last-child {
  border-right: 0;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  z-index: 2;
  color: var(--smoke);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust {
  border-bottom: 1px solid rgba(9, 12, 14, .12);
  background: var(--paper);
}

.positioning {
  padding-block: clamp(92px, 13vw, 180px);
}

.positioning .big-statement {
  max-width: 1040px;
}

.positioning .intro {
  margin-top: 30px;
  margin-left: auto;
}

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

.trust-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-right: 1px solid rgba(9, 12, 14, .12);
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 300;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span,
.number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.section {
  position: relative;
  padding: clamp(86px, 11vw, 150px) 0;
  background: var(--paper);
}

.section.alt {
  background: var(--paper-soft);
  border-block: 1px solid rgba(9, 12, 14, .1);
}

.heading {
  max-width: 780px;
}

.operations {
  background: #000;
  color: var(--cream);
}

.operations h2,
.operations h3 {
  color: var(--white);
}

.operations p,
.operations .intro,
.operations .eyebrow {
  color: var(--muted);
}

.service-dock {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 52px);
  margin-top: 52px;
  align-items: stretch;
}

.service-list {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(247, 245, 238, .16);
}

.service-list button {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 245, 238, .16);
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 300;
  line-height: 1.08;
  cursor: pointer;
}

.service-list button.active,
.service-list button:hover {
  color: var(--white);
}

.service-list button span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  isolation: isolate;
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .7s var(--ease), opacity .35s var(--ease);
}

.service-panel picture {
  position: absolute;
  inset: 0;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .08) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .64), transparent 58%);
}

.service-panel-content {
  position: absolute;
  z-index: 1;
  inset: auto clamp(22px, 4vw, 52px) clamp(22px, 4vw, 48px);
  max-width: 560px;
}

.service-panel h3 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 300;
}

.service-panel p {
  color: var(--cream);
  font-size: 18px;
}

.service-panel .eyebrow,
.service-panel-content {
  color: var(--cream);
}

.service-panel a {
  margin-top: 14px;
}

.field-presence {
  overflow: hidden;
  background: var(--paper-soft);
}

.field-grid-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.field-copy {
  position: relative;
  z-index: 1;
}

.field-photo {
  position: relative;
  min-height: min(620px, 68vw);
  overflow: hidden;
  border-radius: var(--radius);
  background: #101010;
  box-shadow: 0 30px 80px rgba(9, 12, 14, .18);
}

.field-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px auto auto -38px;
  width: 160px;
  height: 4px;
  background: var(--blue);
}

.field-photo picture,
.field-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.field-photo img {
  object-fit: cover;
  transform: scale(1.03);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.big-statement {
  max-width: 720px;
  color: var(--charcoal);
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.05;
}

.big-statement strong {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.principles,
.stack-list {
  border-top: 1px solid rgba(9, 12, 14, .14);
}

.principle,
.stack-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(9, 12, 14, .14);
}

.principle p,
.stack-row p {
  margin-bottom: 0;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(9, 12, 14, .12);
  background: #101010;
  box-shadow: 0 22px 60px rgba(9, 12, 14, .12);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-frame.tall img {
  min-height: 620px;
}

.industry-strip {
  overflow: hidden;
  background: var(--cream);
  color: var(--void);
}

.industry-experience {
  overflow: hidden;
  background: var(--paper);
  color: var(--void);
}

.industry-experience h2,
.industry-experience h3 {
  color: var(--void);
}

.industry-experience .eyebrow,
.industry-experience p {
  color: #444;
}

.industry-visual {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(22px, 4vw, 54px);
  margin-top: 54px;
  align-items: stretch;
}

.industry-selector {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(0, 0, 0, .18);
}

.industry-selector button {
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
  background: transparent;
  color: #111;
  text-align: left;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  cursor: pointer;
}

.industry-selector button span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.industry-selector button.active,
.industry-selector button:hover {
  color: #000;
  background: rgba(0, 0, 0, .045);
}

.industry-stage {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.industry-stage picture,
.industry-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.industry-stage img {
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity .35s var(--ease), transform .7s var(--ease);
}

.industry-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82), transparent 58%);
}

.industry-stage-content {
  position: absolute;
  z-index: 1;
  inset: auto clamp(22px, 4vw, 46px) clamp(22px, 4vw, 42px);
  max-width: 650px;
}

.industry-stage-content h3,
.industry-stage-content p {
  color: var(--cream);
}

.practice-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.practice-panel {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: end;
  background: #111;
}

.practice-panel img,
.practice-panel picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.practice-panel img {
  object-fit: cover;
  filter: saturate(.85);
  transform: scale(1.04);
  transition: transform .6s var(--ease);
}

.practice-panel:hover img {
  transform: scale(1.09);
}

.practice-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .84), transparent 62%);
}

.practice-panel div {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.practice-panel p {
  margin-bottom: 0;
}

.practice-panel h3,
.practice-panel p,
.practice-panel .eyebrow {
  color: var(--cream);
}

.industry-strip .eyebrow,
.industry-strip p {
  color: #444;
}

.industry-strip h2,
.industry-strip h3 {
  color: var(--void);
}

.industry-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 28px 0 10px;
  scroll-snap-type: x mandatory;
}

.industry-tile {
  flex: 0 0 min(78vw, 360px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .12);
  background: #111;
  color: var(--cream);
  scroll-snap-align: start;
}

.industry-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent 62%);
}

.industry-tile:hover img {
  transform: scale(1.06);
}

.industry-tile div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.industry-tile h3,
.industry-tile p {
  color: var(--cream);
}

.process-grid,
.grid {
  display: grid;
  gap: 1px;
  background: rgba(9, 12, 14, .12);
  border: 1px solid rgba(9, 12, 14, .12);
}

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

.step,
.card,
.contact-panel,
.form {
  background: rgba(255, 255, 255, .58);
  padding: clamp(24px, 3vw, 38px);
}

.card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card p:last-child,
.step p:last-child {
  margin-bottom: 0;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.industry.card {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(22, 158, 232, .2), transparent 26rem),
    #000;
  border-top: 1px solid var(--line);
  color: var(--cream);
}

.cta h2,
.cta h3 {
  color: var(--white);
}

.cta p,
.cta .eyebrow {
  color: var(--muted);
}

.cta .btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--void);
}

.cta .btn.ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  border-color: rgba(247, 245, 238, .3);
}

.cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.cta h2 {
  max-width: 790px;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: end;
  padding: 150px 0 74px;
  overflow: hidden;
  background: #000;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    linear-gradient(90deg, #000, rgba(0, 0, 0, .5), #000),
    var(--page-image, url("assets/hero-cctv-rain-poster.jpg")) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, #000, transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow,
.page-hero p {
  color: rgba(247, 245, 238, .82);
}

.about-hero {
  --page-image: url("assets/security-officer-hero.webp");
}

.services-hero {
  --page-image: url("assets/access-control.webp");
}

.industries-hero {
  --page-image: url("assets/commercial-lobby-security.webp");
}

.quote-hero {
  --page-image: url("assets/event-security-entrance.webp");
}

.contact-hero {
  --page-image: url("assets/commercial-lobby-security.webp");
}

.split,
.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.quote-wrap {
  grid-template-columns: .78fr 1.22fr;
}

.ticklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.ticklist li {
  padding-left: 22px;
  position: relative;
}

.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.quote-progress {
  margin-bottom: 34px;
}

.quote-progress span {
  display: block;
  margin-bottom: 10px;
  color: var(--smoke);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-progress div {
  height: 4px;
  overflow: hidden;
  border-radius: var(--pill);
  background: rgba(9, 12, 14, .12);
}

.quote-progress i {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--blue);
  transition: width .28s var(--ease);
}

.quote-step {
  min-height: 270px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-step legend {
  margin-bottom: 26px;
  color: var(--charcoal);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.08;
}

.field,
.field-grid {
  display: grid;
  gap: 10px;
}

.field-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  color: var(--smoke);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  color: var(--charcoal);
  padding: 0 16px;
}

select option {
  color: #111;
}

textarea {
  min-height: 150px;
  padding-block: 14px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--blue);
}

.quote-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quote-actions #quote-next {
  margin-left: auto;
}

.form-message {
  min-height: 28px;
  margin: 18px 0 0;
}

.form-message a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-detail {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--charcoal);
}

.contact-detail span {
  color: #525750;
}

.contact-detail a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta .contact-detail strong,
.site-footer .contact-detail strong {
  color: var(--white);
}

.cta .contact-detail span,
.site-footer .contact-detail span,
.cta .contact-detail a,
.site-footer .contact-detail a {
  color: var(--cream);
}

.contact-cards {
  grid-template-columns: repeat(4, 1fr);
  background: transparent;
  border: 0;
  gap: 14px;
}

.site-footer {
  padding: 80px 0 34px;
  border-top: 1px solid var(--line);
  background: #000;
  color: var(--cream);
}

.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer .eyebrow {
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: start;
}

.footer-logo .logo-image {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: auto;
  min-width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--pill);
  background: var(--success);
  color: #06150b;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  transition: transform .25s var(--ease);
}

.floating-whatsapp span {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  color: #06150b;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.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;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .navlinks {
    position: fixed;
    inset: 86px var(--gutter) auto;
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(15, 15, 15, .96);
  }

  body.menu-open .navlinks {
    display: grid;
  }

  .navlinks a {
    min-height: 48px;
    justify-content: center;
    font-size: 18px;
  }

  .nav-actions .btn:not(.nav-quote) {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .service-dock,
  .editorial,
  .field-grid-section,
  .image-band,
  .split,
  .quote-wrap,
  .industry-visual,
  .cta .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 560px;
  }

  .industry-stage {
    min-height: 560px;
  }

  .cards-3,
  .cards-4,
  .process-grid,
  .contact-cards,
  .practice-wall {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
  }

  .brand-text {
    display: none;
  }

  .nav {
    min-height: 74px;
  }

  .navlinks {
    inset-top: 74px;
  }

  .nav-actions .nav-quote {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
    background-position: center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .62) 58%, rgba(0, 0, 0, .18) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12));
  }

  .hero-video {
    display: none;
  }

  .field-photo {
    min-height: 420px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  h2 {
    font-size: clamp(33px, 11vw, 52px);
  }

  .hero-actions .btn,
  .cta .btn,
  .quote-actions .btn {
    width: 100%;
  }

  .hero-readout,
  .trust-grid,
  .cards-3,
  .cards-4,
  .process-grid,
  .contact-cards,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-readout span,
  .trust-item {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-list button {
    min-height: 72px;
  }

  .service-panel {
    min-height: 460px;
  }

  .industry-selector button {
    min-height: 66px;
  }

  .industry-stage {
    min-height: 460px;
  }

  .practice-wall {
    grid-template-columns: 1fr;
  }

  .practice-panel {
    min-height: 430px;
  }

  .image-frame img,
  .image-frame.tall img {
    min-height: 360px;
  }

  .quote-step {
    min-height: 310px;
  }

  .quote-actions {
    flex-direction: column-reverse;
  }

  .quote-actions #quote-next {
    margin-left: 0;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact {
    position: fixed;
    inset: auto 0 0;
    z-index: 36;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(16px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-contact a {
    min-height: 64px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: var(--cream);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .mobile-contact a:last-child {
    border-right: 0;
    background: var(--success);
    color: #06150b;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
