/* ==========================================================================
   ACE Mobile Wash & Wax - Production Styles
   Mobile-first, accessible, static-site friendly CSS.
   ========================================================================== */

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  --black: #080808;
  --black-soft: #111214;
  --charcoal: #181a1d;
  --ink: #22252a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --muted: #a8acb2;
  --silver: #d8dbe0;
  --silver-dark: #7d838b;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(8, 8, 8, 0.12);
  --accent: #f4f5f6;
  --metal: linear-gradient(135deg, #ffffff 0%, #b9bec6 38%, #f2f3f5 62%, #8b9097 100%);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1120px;
  --header-height: 78px;
  --speed: 220ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lock-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #070707, #15171a);
}

.section-muted {
  background: #eceeed;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--silver-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--silver);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.9rem, 12vw, 6.6rem);
}

h2 {
  font-size: clamp(2.1rem, 7vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 740px;
  color: #4d535b;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.muted {
  color: #68707a;
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-header.split {
  align-items: end;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform var(--speed) ease, border-color var(--speed) ease, background var(--speed) ease, color var(--speed) ease, box-shadow var(--speed) ease;
}

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

.btn:focus-visible,
.nav-link:focus-visible,
.gallery-trigger:focus-visible,
.form-field :is(input, textarea, select):focus-visible,
.comparison-range:focus-visible {
  outline: 3px solid rgba(216, 219, 224, 0.8);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--black);
  background: var(--metal);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--black);
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 850;
  text-align: left;
}

.btn-text::after {
  content: "→";
  transition: transform var(--speed) ease;
}

.btn-text:hover::after {
  transform: translateX(4px);
}

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

/* Header and Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--speed) ease, background var(--speed) ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 30px;
  height: 35px;
}

.brand-text {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header[data-nav-open="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.site-header[data-nav-open="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(90deg);
}

.site-header[data-nav-open="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.nav-menu {
  position: absolute;
  inset: var(--header-height) 16px auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.site-header[data-nav-open="true"] .nav-menu {
  display: flex;
}

.nav-link {
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 750;
  transition: color var(--speed) ease, background var(--speed) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-cta {
  display: none;
}

/* Hero Sections */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--black);
}

.home-hero {
  min-height: calc(100svh - var(--header-height));
  padding: 86px 0 56px;
  background-image:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.74) 46%, rgba(8, 8, 8, 0.42) 100%),
    url("../images/hero-mobile-detail.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto -14% -38% auto;
  width: 58vw;
  height: 58vw;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 800px;
}

.hero-logo {
  width: min(360px, 78vw);
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.52));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker img {
  width: 20px;
  height: 24px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2.8vw, 1.32rem);
}

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

.metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  font-size: 1.12rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.page-hero {
  padding: 82px 0 64px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72)),
    url("../images/water-texture-left.png");
  background-position: center;
  background-size: cover;
}

.page-hero .hero-content {
  max-width: 860px;
}

/* Cards and Layout Utilities */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.dark-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.feature-card {
  min-height: 220px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--black);
  background: var(--metal);
  border-radius: 18px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-bottom: 12px;
}

.service-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.service-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #363b42;
  background: #eceeed;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.pill-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "✓";
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 18px;
  text-align: center;
  background: var(--metal);
  border-radius: 999px;
}

.section-dark .check-list li::before {
  color: var(--black);
}

/* Before and After Comparison */
.comparison {
  --position: 52%;
  display: grid;
  gap: 18px;
}

.comparison-shell {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.comparison-before,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-after img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.comparison-range {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  pointer-events: none;
  background: var(--white);
  transform: translateX(-50%);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.comparison-handle::before {
  content: "↔";
  font-weight: 950;
}

.comparison-labels {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.comparison-labels span {
  padding: 7px 11px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pricing */
.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: grid;
  gap: 18px;
}

.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 34%),
    var(--black);
  border-color: rgba(255, 255, 255, 0.15);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1rem;
}

.price strong {
  font-size: clamp(2.4rem, 9vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price span {
  color: #6a7078;
  font-weight: 800;
}

.price-card.featured .price span,
.price-card.featured .muted {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.featured .card .muted {
  color: #68707a;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.addon-card strong:last-child {
  white-space: nowrap;
}

/* Gallery and Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-trigger {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  color: var(--white);
  background: var(--black);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 420ms ease, opacity 420ms ease;
}

.gallery-trigger:hover img {
  opacity: 0.78;
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-content {
  position: relative;
  width: min(980px, 100%);
  color: var(--white);
}

.lightbox-content img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: var(--black);
  border-radius: var(--radius-md);
}

.lightbox-title {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 900;
}

/* Forms */
.contact-layout {
  display: grid;
  gap: 24px;
}

.contact-card {
  padding: clamp(24px, 6vw, 38px);
}

.big-phone {
  display: inline-flex;
  margin: 12px 0 18px;
  color: inherit;
  font-size: clamp(2rem, 9vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 850;
}

.form-field :is(input, textarea, select) {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f7f5;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field :is(input, textarea, select):focus {
  border-color: rgba(8, 8, 8, 0.38);
  box-shadow: 0 0 0 4px rgba(8, 8, 8, 0.06);
}

.form-note {
  color: #68707a;
  font-size: 0.9rem;
}

/* CTA and Footer */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.62)),
    url("../images/water-texture-wide.png");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .lead {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 54px 0 86px;
  color: rgba(255, 255, 255, 0.74);
  background: #050505;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.footer-logo img {
  width: 28px;
}

.footer-logo strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

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

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 850;
}

.mobile-action-bar {
  position: fixed;
  z-index: 220;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-action-bar .btn {
  min-height: 44px;
  padding: 10px 12px;
}

/* Contact Panel */
.contact-panel[hidden] {
  display: none;
}

.contact-panel {
  position: fixed;
  z-index: 320;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
}

.contact-panel-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 6vw, 38px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  font-weight: 950;
}

.contact-panel-number {
  display: block;
  margin: 16px 0;
  color: var(--white);
  font-size: clamp(2.1rem, 10vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-panel-note {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.copy-status {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 800;
}

/* Details and Process Blocks */
.details-card {
  padding: 0;
}

.details-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-weight: 900;
  list-style: none;
}

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

.details-card summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

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

.details-content {
  display: grid;
  gap: 18px;
  padding: 0 24px 24px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 22px 22px 22px 70px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.process-list li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  counter-increment: process;
  content: counter(process);
  color: var(--black);
  font-weight: 950;
  background: var(--metal);
  border-radius: 999px;
}

/* Service area visual */
.area-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #080808, #1c1f24);
  border-radius: var(--radius-lg);
}

.area-panel::before {
  position: absolute;
  inset: 28px;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black 0%, transparent 72%);
}

.area-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.area-pin {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--metal);
  border-radius: 999px;
}

.area-pin img {
  width: 26px;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* Responsive */
@media (min-width: 680px) {
  .section {
    padding: 92px 0;
  }

  .section-header.split {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  }

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

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

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

  .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .home-hero {
    padding: 116px 0 74px;
  }

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

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

  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

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

  .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .btn {
    width: 100%;
  }

  .mobile-action-bar .btn {
    width: auto;
  }

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

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

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