:root {
  --ink: #0d0d0d;
  --charcoal: #0d0d0d;
  --panel: #1f1f1f;
  --paper: #ffffff;
  --soft: #1f1f1f;
  --muted: #bfc5cc;
  --line: rgba(191, 197, 204, 0.18);
  --green: #7dff00;
  --green-hover: #92ff33;
  --green-dark: #315f14;
  --purple: #4a148c;
  --purple-dark: #2b0b55;
  --purple-light: #6a1b9a;
  --chrome: #bfc5cc;
  --steel: #6b7280;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  --glow: 0 0 24px rgba(125, 255, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--green);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: #fff;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191, 197, 204, 0.14);
}

.brand {
  display: block;
  width: clamp(164px, 14vw, 218px);
  overflow: hidden;
  border: 1px solid rgba(125, 255, 0, 0.22);
  border-radius: 7px;
  background: #080808;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 28px rgba(125, 255, 0, 0.1);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.brand-mark {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.site-nav a,
.nav-services button {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  padding: 8px 0;
  font: inherit;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-services button:hover {
  color: #fff;
}

.nav-services {
  position: relative;
}

.service-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 280px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.nav-services:hover .service-menu,
.nav-services:focus-within .service-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-menu a {
  display: block;
  color: #fff;
  padding: 11px 12px;
  border-radius: 6px;
}

.service-menu a:hover {
  color: var(--green);
  background: rgba(125, 255, 0, 0.08);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-call {
  gap: 12px;
  color: var(--green);
  background: transparent;
  border: 1px solid var(--green);
  box-shadow: 0 0 18px rgba(125, 255, 0, 0.16);
}

.header-call .icon {
  width: 26px;
  height: 26px;
  stroke-width: 2.4;
}

.header-call span {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.header-call small {
  display: block;
  color: var(--green);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.button:hover,
.header-call:hover {
  transform: translateY(-1px);
}

.button:active,
.header-call:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: var(--glow);
}

.button-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 0 34px rgba(125, 255, 0, 0.44);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(191, 197, 204, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 13, 13, 0.94), rgba(74, 20, 140, 0.58) 42%, rgba(13, 13, 13, 0.2)),
    linear-gradient(0deg, rgba(13, 13, 13, 0.82), transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(132deg, transparent 0 48%, rgba(125, 255, 0, 0.28) 48.4%, transparent 49.2%),
    linear-gradient(138deg, transparent 0 58%, rgba(106, 27, 154, 0.38) 58.4%, transparent 59.4%);
  mix-blend-mode: screen;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 13vw, 150px) 0 58px;
}

.proof-line,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  font-size: 22px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 690px;
  color: var(--chrome);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 52px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
}

.trust-strip div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.trust-strip dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 900;
}

.quick-help {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  color: #fff;
}

.quick-help a {
  padding: 28px clamp(18px, 4vw, 48px);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-help span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.quick-help strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--green);
}

.section,
.split-band,
.contact-layout,
.page-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: var(--chrome);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--panel);
  border: 1px solid var(--line);
}

.service-card.green {
  background: linear-gradient(135deg, #254716, var(--panel));
}

.service-card.purple {
  background: linear-gradient(135deg, var(--purple), var(--panel));
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card a {
  font-weight: 900;
  color: var(--green);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  align-items: center;
  padding: clamp(54px, 7vw, 86px);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--panel) 58%, var(--purple));
  border-radius: 8px;
}

.split-band p {
  color: var(--chrome);
  font-size: 18px;
}

.split-band figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-band img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.photo-gallery {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.photo-gallery,
.faq {
  background: var(--ink);
}

.section:nth-of-type(even) {
  background: var(--panel);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.photo-grid figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-grid figure.wide img {
  aspect-ratio: 4 / 3;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.area-list li {
  padding: 8px 11px;
  color: var(--chrome);
  background: rgba(191, 197, 204, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.why {
  background: var(--panel);
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
}

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

.why-grid article {
  padding: 24px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green);
  font-weight: 900;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 800px;
  color: var(--chrome);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(46px, 6vw, 74px) max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light), var(--ink));
}

.contact-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(58px, 8vw, 108px) 0 clamp(36px, 6vw, 80px);
}

.page-hero.compact {
  max-width: 950px;
}

.page-hero.compact p:not(.section-kicker),
.page-hero.two-column p:not(.section-kicker) {
  color: var(--chrome);
  font-size: 20px;
}

.page-hero.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.page-hero.two-column img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dispatch-note {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 8px 0 0;
  padding: 0 18px;
  color: var(--ink) !important;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--glow);
}

.dispatch-note a {
  margin-left: 5px;
  color: inherit;
  text-decoration: none;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
  align-items: end;
}

.page-hero.two-column .photo-stack img {
  aspect-ratio: 4 / 5;
}

.page-hero.two-column .photo-stack img:nth-child(2) {
  margin-bottom: -28px;
}

.story,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-list li,
.check-list li {
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-weight: 800;
}

.mission-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 86px;
}

.contact-form,
.contact-panel {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
}

.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(191, 197, 204, 0.6);
  border-radius: 8px;
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--chrome);
  opacity: 0.78;
}

.hp {
  display: none;
}

.form-status {
  margin: 14px 0 0;
  min-height: 24px;
  color: #fff;
}

.contact-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #fff;
}

.contact-panel iframe {
  width: 100%;
  height: 330px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(110px, 0.58fr) minmax(165px, 0.9fr) minmax(170px, 0.86fr) minmax(210px, 0.94fr);
  gap: 28px;
  padding: clamp(46px, 7vw, 84px) max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-brand strong {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.82;
}

.footer-logo {
  display: block;
  width: min(270px, 100%);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  border: 1px solid rgba(125, 255, 0, 0.18);
  border-radius: 7px;
  box-shadow: 0 0 28px rgba(125, 255, 0, 0.1);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  min-height: 32px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

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

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 24px;
    background: var(--ink);
  }

  .nav-open .site-nav a,
  .nav-open .nav-services button {
    color: #fff;
    padding: 16px 0;
    font-size: 24px;
  }

  .nav-open .nav-services {
    display: block;
  }

  .nav-open .service-menu {
    position: static;
    width: 100%;
    display: grid;
    gap: 4px;
    padding: 0 0 8px;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-open .service-menu a {
    padding: 10px 0 10px 14px;
    color: var(--chrome);
    font-size: 16px;
  }

  .quick-help,
  .service-grid,
  .split-band,
  .why-grid,
  .photo-grid,
  .page-hero.two-column,
  .story,
  .detail-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-help a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .service-card img {
    aspect-ratio: 16 / 10;
  }

  .split-band {
    padding: 34px 22px;
  }

  .photo-grid figure.wide,
  .photo-grid figure {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .page-hero.two-column .photo-stack img:nth-child(2) {
    margin-bottom: 0;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

  .hero-content {
    padding-top: 52px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

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

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .button,
  .header-call {
    width: 100%;
  }
}

/* Reference-driven agency pass */
.site-header {
  min-height: 88px;
  padding-block: 12px;
}

.brand-mark {
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 0.78;
}

.brand-sub {
  font-size: 17px;
  font-weight: 900;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.nav-services button {
  font-size: 16px;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--green);
}

.header-call {
  min-height: 58px;
  padding: 0 26px;
  font-size: 18px;
  border-radius: 999px;
}

.hero {
  min-height: 610px;
}

.hero-content {
  padding: 86px 0 74px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.6vw, 82px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 550px;
  font-size: 19px;
  color: #fff;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.62) 42%, rgba(13, 13, 13, 0.18)),
    linear-gradient(0deg, rgba(13, 13, 13, 0.46), transparent 48%),
    linear-gradient(120deg, rgba(74, 20, 140, 0.3), transparent 58%);
}

.hero::after {
  opacity: 0.62;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: linear-gradient(90deg, #151515, var(--panel), #151515);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 108px;
  padding: 18px;
  border-right: 1px solid rgba(191, 197, 204, 0.28);
}

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

.trust-bar span {
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 62px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-family: "Arial Black", Arial, sans-serif;
}

.trust-bar .icon {
  width: 30px;
  height: 30px;
}

.trust-bar strong {
  max-width: 150px;
  color: var(--chrome);
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-section {
  color: var(--ink);
  background: #fff;
  padding: clamp(64px, 8vw, 102px) max(18px, calc((100vw - var(--max)) / 2));
}

.service-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.service-section .section-kicker,
.area-section .section-kicker,
.why .section-kicker {
  color: #5ead35;
}

.service-section h2,
.area-section h2,
.why h2 {
  color: var(--ink);
}

.service-section .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e2e5e8;
  box-shadow: 0 20px 45px rgba(13, 13, 13, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(125, 255, 0, 0.72);
  box-shadow: 0 24px 58px rgba(13, 13, 13, 0.16);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  top: 178px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: #6ab14b;
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13, 13, 13, 0.14);
}

.service-icon .icon {
  width: 29px;
  height: 29px;
}

.service-card div {
  display: block;
  padding: 50px 24px 24px;
}

.service-card p {
  color: #3f4650;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #4f9932;
  text-decoration: none;
}

.heavy-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  color: #fff;
  background: #050505;
}

.heavy-band figure {
  margin: 0;
  min-height: 460px;
}

.heavy-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heavy-band > div {
  display: grid;
  align-content: center;
  padding: clamp(44px, 7vw, 86px);
  background:
    radial-gradient(circle at 86% 18%, rgba(74, 20, 140, 0.38), transparent 36%),
    linear-gradient(90deg, #050505, #111);
}

.heavy-band h2 {
  max-width: 620px;
}

.heavy-band p {
  max-width: 560px;
  color: var(--chrome);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--chrome);
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.purple-button {
  justify-self: start;
  background: var(--purple);
  border-color: rgba(255, 255, 255, 0.32);
}

.area-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  color: var(--ink);
  background: #fff;
}

.area-section > div {
  padding: clamp(44px, 7vw, 82px) clamp(28px, 5vw, 64px);
}

.area-section figure {
  margin: 0;
  min-height: 430px;
}

.area-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-section p {
  color: #3f4650;
  font-size: 17px;
}

.area-section .area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
  margin-bottom: 28px;
}

.area-section .area-list li {
  position: relative;
  padding: 0 0 0 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.area-section .area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6ab14b;
}

.area-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: inherit;
  text-decoration: none;
}

.area-list a:hover {
  color: var(--purple);
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.why,
.section.why {
  color: var(--ink);
  background: #fff;
  text-align: center;
}

.why .section-heading {
  margin-inline: auto;
}

.why-grid article {
  background: #fff;
  border: 0;
  border-right: 1px solid #d4d8dd;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid h3,
.why-grid p {
  color: var(--ink);
}

.photo-gallery {
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.city-index,
.city-services,
.city-local-detail,
.city-seo-band {
  padding: clamp(62px, 8vw, 104px) max(18px, calc((100vw - var(--max)) / 2));
}

.city-hero {
  padding-top: clamp(44px, 6vw, 82px);
}

.city-hero h1,
.service-area-hero h1 {
  font-size: clamp(46px, 6.8vw, 88px);
}

.city-index,
.city-services,
.city-local-detail {
  color: var(--ink);
  background: #fff;
}

.city-index .section-heading,
.city-services .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.city-index .section-heading p:not(.section-kicker),
.city-services .section-heading p:not(.section-kicker) {
  color: #3f4650;
}

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

.city-card-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e5e8;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(13, 13, 13, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.city-card-grid article:hover {
  border-color: rgba(125, 255, 0, 0.72);
  box-shadow: 0 26px 62px rgba(13, 13, 13, 0.16);
  transform: translateY(-4px);
}

.city-card-grid a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.city-card-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.city-card-grid article:hover img {
  transform: scale(1.035);
}

.city-card-grid span {
  margin: 22px 22px 6px;
  color: #5ead35;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.city-card-grid h3 {
  margin: 0 22px 10px;
  color: var(--ink);
}

.city-card-grid p {
  margin: 0 22px 24px;
  color: #3f4650;
}

.city-seo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(135deg, #050505, #111 54%, var(--purple));
}

.city-seo-band article {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(191, 197, 204, 0.14);
}

.city-seo-band span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
}

.city-seo-band .icon {
  width: 28px;
  height: 28px;
}

.city-seo-band h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
}

.city-seo-band p {
  color: var(--chrome);
}

.city-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.city-service-links a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e5e8;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 13, 13, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.city-service-links a:hover {
  border-color: rgba(106, 27, 154, 0.32);
  box-shadow: 0 22px 48px rgba(13, 13, 13, 0.12);
  transform: translateY(-3px);
}

.city-service-links strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.05;
}

.city-service-links span {
  color: #3f4650;
}

.city-local-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid #d4d8dd;
}

.city-local-detail > aside {
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 8px;
}

.city-local-detail > aside h2 {
  color: #fff;
  font-size: clamp(27px, 3vw, 42px);
}

.city-local-detail > aside .area-list {
  margin-bottom: 26px;
}

.city-local-detail > aside .area-list li {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.city-local-detail > aside .outline-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.city-faq {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: #fff;
}

.city-faq .section-kicker {
  color: #5ead35;
}

.help-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid #d4d8dd;
}

.faq-panel,
.mini-contact,
.map-panel {
  min-height: 390px;
}

.faq-panel {
  padding: 42px clamp(22px, 4vw, 58px);
}

.faq-panel h2,
.mini-contact h2 {
  color: var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  text-align: center;
}

.faq-list.compact summary {
  padding: 16px 0;
  color: var(--ink);
}

.faq-list.compact p {
  color: #3f4650;
}

.mini-contact {
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

.mini-contact h2,
.mini-contact p {
  color: #fff;
  text-align: left;
}

.contact-form-mini {
  padding: 0;
  background: transparent;
}

.contact-form-mini input,
.contact-form-mini textarea {
  min-height: 42px;
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
  border-radius: 4px;
}

.contact-form-mini label {
  color: #fff;
  font-size: 13px;
}

.contact-form-mini .button {
  width: 100%;
  min-height: 44px;
}

.map-panel {
  position: relative;
  overflow: hidden;
  background: #edf1f5;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(26deg, transparent 0 43%, rgba(255, 180, 40, 0.92) 43.4% 45%, transparent 45.4%),
    linear-gradient(151deg, transparent 0 35%, rgba(220, 90, 120, 0.72) 35.4% 36.8%, transparent 37.2%),
    linear-gradient(92deg, transparent 0 58%, rgba(170, 184, 197, 0.88) 58.3% 59.1%, transparent 59.4%),
    linear-gradient(0deg, rgba(107, 114, 128, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 114, 128, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 56% 44%, #ef4444 0 5px, transparent 6px),
    radial-gradient(circle at 72% 30%, #7dff00 0 4px, transparent 5px);
  background-size: auto, auto, auto, 54px 54px, 54px 54px, auto, auto;
}

.map-panel::after {
  content: "O'Bar Wrecker Service";
  position: absolute;
  top: 42%;
  left: 52%;
  z-index: 1;
  padding: 7px 10px;
  color: #fff;
  background: #ef4444;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.map-panel iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  opacity: 0.88;
}

.map-card {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 34px;
  width: min(260px, calc(100% - 48px));
  padding: 22px;
  color: #fff;
  background: rgba(13, 13, 13, 0.92);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.map-card p {
  color: var(--chrome);
}

.site-footer {
  position: relative;
}

.footer-help {
  padding: 22px;
  color: #fff;
  background: rgba(31, 31, 31, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  align-self: start;
}

.footer-help h2 {
  margin-bottom: 8px;
  font-size: 21px;
  text-transform: none;
}

.footer-help p {
  color: var(--chrome);
  margin-bottom: 16px;
}

.footer-help .button {
  width: 100%;
  gap: 9px;
  color: var(--ink);
  white-space: nowrap;
}

.footer-help .icon,
.mobile-sticky-call .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.mobile-sticky-call {
  display: none;
}

@media (max-width: 1100px) {
  .service-section .service-grid,
  .trust-bar,
  .why-grid,
  .help-grid,
  .city-card-grid,
  .city-seo-band,
  .city-service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heavy-band,
  .area-section,
  .city-local-detail {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }

  .brand-mark {
    font-size: 28px;
  }

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

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .trust-bar,
  .service-section .service-grid,
  .help-grid,
  .city-card-grid,
  .city-seo-band,
  .city-service-links,
  .feature-list,
  .area-section .area-list {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    justify-content: flex-start;
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card img {
    height: 230px;
  }

  .mobile-sticky-call {
    position: fixed;
    z-index: 80;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    color: var(--ink);
    background: var(--green);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), var(--glow);
  }

  .route-contact .mobile-sticky-call {
    display: none;
  }

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

  .footer-help {
    display: none;
  }

  body {
    padding-bottom: 78px;
  }

  .route-contact {
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .dispatch-note {
    display: block;
    min-height: 0;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    line-height: 1.35;
  }

  .dispatch-note a {
    margin-left: 0;
    white-space: nowrap;
  }

  .why-grid h3 {
    overflow-wrap: anywhere;
  }

  .city-hero .inline-actions {
    margin-top: 18px;
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) and (max-height: 620px) {
  .page-city .mobile-sticky-call {
    display: none;
  }

  .page-city {
    padding-bottom: 0;
  }
}

/* Final brand/photo polish */
.photo-gallery {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(58px, 7vw, 92px) max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(125, 255, 0, 0.13), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(106, 27, 154, 0.28), transparent 34%),
    linear-gradient(180deg, #070707 0%, #101010 54%, #070707 100%);
  border-top: 1px solid rgba(191, 197, 204, 0.11);
  border-bottom: 1px solid rgba(191, 197, 204, 0.11);
}

.photo-gallery .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.photo-gallery .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.photo-gallery h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1;
  text-wrap: balance;
}

.photo-gallery .section-heading > p:not(.section-kicker) {
  max-width: 470px;
  margin: 0;
  color: var(--chrome);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

.photo-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.photo-grid figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(191, 197, 204, 0.14);
  border-radius: 7px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.photo-grid figure::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.32)),
    linear-gradient(90deg, rgba(125, 255, 0, 0.08), transparent 34%);
  opacity: 0.82;
}

.photo-grid figure.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 158px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-grid figure:not(.wide) img {
  aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
  .brand {
    width: 150px;
  }

  .photo-gallery .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-gallery .section-kicker {
    margin-bottom: 0;
  }

  .photo-gallery h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

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

  .photo-grid figure.wide {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .photo-gallery {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .photo-grid {
    gap: 8px;
  }

  .photo-grid img {
    min-height: 152px;
  }
}
