﻿:root {
  --gold: #c8a44f;
  --gold-bright: #efd27c;
  --gold-deep: #8e6b27;
  --black: #050706;
  --black-soft: #0b0f0d;
  --black-raised: #111713;
  --green: #0b3829;
  --green-deep: #06251b;
  --green-soft: #14513c;
  --white: #f8f6f0;
  --paper: #f1eee5;
  --ink: #111612;
  --ink-muted: #5d665f;
  --muted: #a7afa9;
  --line: rgba(248, 246, 240, 0.13);
  --line-dark: rgba(17, 22, 18, 0.13);
  --container: 1180px;
  --page-pad: clamp(20px, 4vw, 48px);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.site-shell {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(200, 164, 79, 0.14));
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 164, 79, 0.68);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(200, 164, 79, 0.06);
}

.brand-mark::before {
  position: absolute;
  top: 9px;
  width: 15px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 8px 8px 2px 2px;
  content: "";
}

.brand-mark > span {
  position: relative;
  width: 15px;
  height: 19px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(1px, 2px);
}

.brand-mark > span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14px;
  letter-spacing: 0.105em;
}

.brand-copy strong {
  font-weight: 780;
}

.brand-copy > span {
  color: var(--gold-bright);
  font-weight: 850;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 34px);
  color: #c2c8c3;
  font-size: 13px;
  font-weight: 620;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid rgba(200, 164, 79, 0.55);
  border-radius: 999px;
  background: rgba(200, 164, 79, 0.08);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 760;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: rgba(200, 164, 79, 0.16);
  transform: translateY(-1px);
}

.header-account-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
}

body.admin-bar .site-header {
  top: 32px;
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(200, 164, 79, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(125deg, #050706 0%, #08130e 50%, #071f17 100%);
  background-size: 54px 54px, 54px 54px, auto;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 79, 0.025));
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
}

.hero-glow-one {
  top: 6%;
  right: 6%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(20, 81, 60, 0.34), transparent 67%);
}

.hero-glow-two {
  bottom: -14%;
  left: 12%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 164, 79, 0.11), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
  min-height: calc(100svh - 78px - 124px);
  padding-block: clamp(64px, 8vw, 112px);
}

.hero-copy {
  position: relative;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6.1vw, 88px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--gold-bright);
  font-weight: 630;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c3cac5;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 790;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #171105;
  box-shadow: 0 18px 44px rgba(200, 164, 79, 0.18);
}

.button-primary:hover {
  background: var(--gold-bright);
}

.button-primary > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 7, 6, 0.12);
}

.button-secondary {
  border-color: rgba(248, 246, 240, 0.24);
  background: rgba(248, 246, 240, 0.04);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 79, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.hero-metrics > div {
  padding: 3px 20px;
  border-left: 1px solid var(--line);
}

.hero-metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 780;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: #919b94;
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.photo-frame {
  position: absolute;
  inset: 0 16px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 79, 0.34);
  border-radius: 34px 34px 120px 34px;
  background: var(--green-deep);
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.38);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.86) contrast(1.06) brightness(0.78);
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 7, 5, 0.92) 0%, rgba(3, 7, 5, 0.12) 48%, rgba(3, 7, 5, 0.22) 100%),
    linear-gradient(120deg, rgba(11, 56, 41, 0.18), transparent 55%);
}

.photo-label {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(248, 246, 240, 0.2);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.68);
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.photo-caption {
  position: absolute;
  right: 30px;
  bottom: 31px;
  left: 30px;
}

.photo-caption span {
  display: block;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.16em;
}

.photo-caption strong {
  display: block;
  max-width: 340px;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.25;
}

.route-line {
  position: absolute;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright));
  box-shadow: 0 0 22px rgba(200, 164, 79, 0.28);
}

.route-line-one {
  top: 118px;
  right: -45px;
  width: 200px;
  transform: rotate(-28deg);
}

.route-line-two {
  bottom: 106px;
  left: -22px;
  width: 152px;
  transform: rotate(22deg);
}

.route-point {
  position: absolute;
  z-index: 4;
  width: 15px;
  height: 15px;
  border: 3px solid var(--gold-bright);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 8px rgba(200, 164, 79, 0.08);
}

.route-start {
  top: 75px;
  right: 11px;
}

.route-end {
  bottom: 68px;
  left: -18px;
}

.floating-card {
  position: absolute;
  z-index: 6;
  min-width: 174px;
  padding: 15px 18px;
  border: 1px solid rgba(200, 164, 79, 0.35);
  border-radius: 17px;
  background: rgba(5, 7, 6, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.floating-card span {
  display: block;
  color: var(--gold);
  font-size: 9px;
  font-weight: 830;
  letter-spacing: 0.14em;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.floating-card-top {
  top: 58px;
  left: -28px;
}

.floating-card-bottom {
  right: -22px;
  bottom: 88px;
}

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 124px;
  border-top: 1px solid var(--line);
}

.proof-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
  color: #c7cdc9;
  font-size: 13px;
  font-weight: 650;
}

.proof-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.section {
  padding-block: clamp(84px, 10vw, 136px);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(48px, 9vw, 128px);
}

.section-heading h2,
.coverage-section h2,
.safety-copy h2,
.faq-intro h2,
.final-cta h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.section-heading > p,
.coverage-copy,
.safety-copy > p:last-child,
.faq-intro > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.process-grid li::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 175px;
  height: 175px;
  border: 28px solid rgba(200, 164, 79, 0.07);
  border-radius: 50%;
  content: "";
}

.process-grid li:hover {
  border-color: rgba(142, 107, 39, 0.42);
  background: #fffdf8;
  transform: translateY(-4px);
}

.step-number {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 55px;
  place-items: center;
  border: 1px solid rgba(142, 107, 39, 0.35);
  border-radius: 19px;
  background: rgba(200, 164, 79, 0.1);
  color: var(--gold-deep);
  font-size: 22px;
  font-weight: 700;
}

.process-grid h3 {
  margin: 24px 0 9px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.process-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 16%, rgba(20, 81, 60, 0.24), transparent 28%),
    var(--black-soft);
}

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark > p {
  color: #a5aea7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(20, 81, 60, 0.36), rgba(10, 16, 12, 0.86));
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: rgba(200, 164, 79, 0.38);
  background: linear-gradient(145deg, rgba(20, 81, 60, 0.5), rgba(10, 16, 12, 0.9));
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.service-card h3 {
  max-width: 290px;
  margin: 45px 0 13px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: -0.032em;
}

.service-card p {
  margin: 0;
  color: #a7b1aa;
  font-size: 14px;
  line-height: 1.62;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 760;
}

.coverage-section {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}

.coverage-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 246, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 240, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 45%, black);
}

.coverage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.section-kicker-lime {
  color: var(--gold-bright);
}

.coverage-section h2 {
  max-width: 600px;
}

.coverage-copy {
  max-width: 570px;
  margin-top: 26px;
  color: #b7c2bb;
}

.coverage-section .button {
  margin-top: 30px;
}

.city-panel {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(200, 164, 79, 0.26);
  border-radius: var(--radius-lg);
  background: rgba(4, 17, 12, 0.66);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.city-panel::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(200, 164, 79, 0.05);
  border-radius: 50%;
  content: "";
}

.city-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.16em;
}

.city-panel-head span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bfc9c2;
  letter-spacing: 0.08em;
}

.city-panel-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(200, 164, 79, 0.1);
}

.city-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-list span {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(248, 246, 240, 0.12);
  border-radius: 999px;
  background: rgba(248, 246, 240, 0.035);
  color: #d9dfdb;
  font-size: 12px;
  font-weight: 660;
}

.city-panel > p {
  position: relative;
  z-index: 2;
  margin: 29px 0 0;
  color: #919d95;
  font-size: 12px;
  line-height: 1.55;
}

.safety-section {
  background: var(--paper);
  color: var(--ink);
}

.safety-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: stretch;
  gap: clamp(46px, 7vw, 92px);
}

.uniform-gallery {
  position: relative;
  min-height: 0;
  padding: 10px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: 0 30px 80px rgba(17, 22, 18, 0.18);
}

.uniform-studio-photo {
  aspect-ratio: 1729 / 910;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--green-deep);
}

.uniform-studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 400ms ease;
}

.uniform-studio-photo:hover img {
  transform: scale(1.025);
}

.uniform-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  padding: 13px 16px;
  border: 1px solid rgba(200, 164, 79, 0.42);
  border-radius: 14px;
  background: rgba(5, 7, 6, 0.88);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.uniform-badge span {
  display: block;
  color: var(--gold);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.uniform-badge strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.safety-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safety-copy h2 {
  margin-top: 0;
}

.safety-copy > p:last-child {
  max-width: 530px;
  margin-top: 24px;
}

.safety-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #353d37;
  font-size: 13px;
  font-weight: 650;
}

.safety-list span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 56, 41, 0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.faq-section {
  background: #faf8f2;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  max-width: 480px;
}

.faq-intro > p {
  max-width: 430px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold-deep);
  color: var(--green);
  font-size: 14px;
  font-weight: 770;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 730;
  letter-spacing: -0.015em;
}

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

.faq-list summary i {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--green);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--green);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 58px 25px 2px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.72;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 164, 79, 0.24);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 40%, rgba(200, 164, 79, 0.12), transparent 24%),
    linear-gradient(120deg, var(--green-deep), var(--green));
}

.final-route {
  position: absolute;
  top: -100px;
  right: 9%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 164, 79, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(200, 164, 79, 0.025), 0 0 0 112px rgba(200, 164, 79, 0.015);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  min-height: 380px;
  padding-block: 72px;
}

.final-cta h2 {
  max-width: 760px;
}

.final-actions {
  display: grid;
  justify-items: end;
  margin-top: 0;
}

.final-phone {
  display: inline-grid;
  justify-items: end;
  gap: 4px;
}

.final-phone span {
  color: #b3beb6;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-phone strong {
  color: var(--white);
  font-size: 20px;
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr;
  gap: 70px;
}

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

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #858f88;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  color: #929c95;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #68716b;
  font-size: 11px;
}

.footer-bottom span:last-child {
  color: var(--gold-deep);
}

.mobile-reserve {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(55px, 6vw, 74px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .photo-frame {
    inset-right: 0;
  }

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

  .proof-strip > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .safety-card {
    grid-template-columns: 1fr 0.92fr;
    gap: 46px;
  }

  .uniform-gallery {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 54px;
    padding-block: 70px 50px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(52px, 11vw, 78px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-visual {
    width: min(100%, 590px);
    min-height: 670px;
    margin-inline: auto;
  }

  .proof-strip {
    margin-top: 20px;
  }

  .split-heading,
  .coverage-grid,
  .safety-card,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 25px;
  }

  .split-heading > p {
    max-width: 650px;
  }

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

  .process-grid li {
    min-height: 280px;
  }

  .step-icon {
    margin-top: 38px;
  }

  .coverage-grid {
    gap: 50px;
  }

  .city-panel {
    max-width: 650px;
  }

  .safety-card {
    gap: 55px;
  }

  .uniform-gallery {
    width: min(100%, 680px);
  }

  .safety-content {
    max-width: 650px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    align-items: start;
    gap: 36px;
    min-height: 430px;
  }

  .final-actions {
    justify-items: start;
  }

  .final-phone {
    justify-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 36px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(200, 164, 79, 0.28);
    border-radius: 18px;
    background: rgba(5, 7, 6, 0.92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
  }

  .mobile-reserve a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 780;
  }

  .mobile-reserve a:last-child {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 20px;
  }

  .brand-copy {
    font-size: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-metrics > div,
  .hero-metrics > div:first-child {
    padding: 0 0 0 15px;
    border-left: 1px solid var(--line);
  }

  .hero-metrics span {
    margin-top: 3px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .photo-frame {
    inset: 0 0 0 0;
    border-radius: 27px 27px 80px 27px;
  }

  .floating-card {
    min-width: 155px;
  }

  .floating-card-top {
    top: 24px;
    left: -8px;
  }

  .floating-card-bottom {
    right: -8px;
    bottom: 74px;
  }

  .route-line,
  .route-point {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .proof-strip > div,
  .proof-strip > div:first-child,
  .proof-strip > div:nth-child(3) {
    min-height: 58px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .coverage-section h2,
  .safety-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

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

  .service-card {
    min-height: 290px;
  }

  .city-panel {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .city-panel-head {
    align-items: flex-start;
    gap: 15px;
  }

  .city-panel-head span:last-child {
    text-align: right;
  }

  .uniform-gallery {
    min-height: 0;
    border-radius: 28px;
  }

  .uniform-studio-photo {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .uniform-badge {
    bottom: 22px;
    left: 22px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 15px;
  }

  .faq-list details > p {
    margin-right: 10px;
  }

  .final-cta-inner {
    min-height: 490px;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .final-actions .button {
    width: 100%;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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


