/* ==========================================================================
   Dubai Service Crew — "Dispatch Ticket" design system
   One crew. Every repair. All of Dubai.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — complementary petrol/saffron, grounded in trades */
  --petrol-900: #082a31;
  --petrol-800: #0b3942;
  --petrol-700: #0f4a55;
  --petrol-600: #14606e;
  --teal-500: #178095;
  --teal-300: #6fb6c4;
  --mist-200: #d7e4e6;
  --mist-100: #eef3f4;
  --saffron-500: #f0a437;
  --saffron-600: #d98623;
  --amber-700: #a85f12;
  --paper: #f7f4ed;
  --paper-deep: #efe9db;
  --ink: #152228;
  --ink-soft: #3d4f54;
  --ink-mute: #6b7c81;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-deep: #1da851;

  /* Type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.05rem);
  --step-3: clamp(1.9rem, 1.55rem + 1.8vw, 2.85rem);
  --step-4: clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  --step-5: clamp(2.9rem, 2rem + 4.4vw, 5.4rem);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11, 57, 66, 0.06), 0 2px 6px rgba(11, 57, 66, 0.05);
  --shadow-md: 0 6px 18px rgba(11, 57, 66, 0.08), 0 2px 6px rgba(11, 57, 66, 0.05);
  --shadow-lg: 0 24px 60px rgba(8, 42, 49, 0.16), 0 8px 20px rgba(8, 42, 49, 0.08);
  --ring: 0 0 0 3px rgba(240, 164, 55, 0.45);
  --ring-light: 0 0 0 3px rgba(23, 128, 149, 0.4);

  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--teal-500); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--petrol-900);
}

p { max-width: 68ch; }
p + p { margin-top: var(--space-4); }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(var(--space-7), 7vw, var(--space-9)); }
.section--tight { padding-block: clamp(var(--space-6), 5vw, var(--space-8)); }

.bg-mist { background: var(--mist-100); }
.bg-paper { background: var(--paper); }
.bg-petrol { background: var(--petrol-800); color: var(--mist-100); }
.bg-petrol h1, .bg-petrol h2, .bg-petrol h3 { color: var(--white); }

/* ---------- Eyebrow / mono label (dispatch-tag signature) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--saffron-500);
}
.bg-petrol .eyebrow { color: var(--saffron-500); }
.on-dark .eyebrow { color: var(--saffron-500); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 60ch; margin-bottom: var(--space-7); }
.section-head h2 { font-size: var(--step-3); }
.section-head p { margin-top: var(--space-4); color: var(--ink-soft); font-size: 1.05rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--petrol-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95em 1.5em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent { background: var(--saffron-500); color: var(--petrol-900); box-shadow: 0 8px 22px rgba(240, 164, 55, 0.28); }
.btn--accent:hover { background: var(--saffron-600); }
.btn--solid { background: var(--petrol-800); color: var(--white); }
.btn--solid:hover { background: var(--petrol-700); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--petrol-800); border-color: var(--mist-200); }
.btn--outline:hover { border-color: var(--petrol-800); background: var(--mist-100); }
.btn--whatsapp { background: var(--whatsapp); color: var(--petrol-900); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28); }
.btn--whatsapp:hover { background: var(--whatsapp-deep); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--mist-200);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.95); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--petrol-900);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.main-nav a:hover { text-decoration: none; color: var(--teal-500); background: var(--mist-100); }
.main-nav a[aria-current="page"] { color: var(--petrol-800); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--saffron-500);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--petrol-800);
}
.phone-link .ico { width: 1.05rem; height: 1.05rem; color: var(--teal-500); }
.phone-link:hover { text-decoration: none; color: var(--teal-500); }
.btn-call { padding: 0.6em 1.15em; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--petrol-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--petrol-900);
  color: var(--mist-100);
  overflow: hidden;
  padding-top: clamp(var(--space-7), 8vw, var(--space-9));
  padding-bottom: clamp(var(--space-8), 9vw, var(--space-10));
}
/* Blueprint grid — the "technical drawing" backdrop */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 182, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 182, 196, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 75%);
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(23, 128, 149, 0.45), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-8);
  align-items: center;
}
.hero .eyebrow { color: var(--saffron-500); }
.hero h1 {
  color: var(--white);
  font-size: var(--step-5);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero h1 .hl {
  color: var(--saffron-500);
  position: relative;
  white-space: nowrap;
}
.hero-lede {
  margin-top: var(--space-5);
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--mist-200);
  max-width: 46ch;
}
.hero-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero-trust {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--mist-200);
}
.hero-trust .ico { width: 1.1rem; height: 1.1rem; color: var(--saffron-500); flex: none; }

/* Hero dispatch card (signature element on home) */
.dispatch-card {
  position: relative;
  background: rgba(8, 42, 49, 0.55);
  border: 1px solid rgba(111, 182, 196, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.dispatch-card::before {
  content: "WORK ORDER";
  position: absolute;
  top: -10px;
  left: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  background: var(--saffron-500);
  color: var(--petrol-900);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.dispatch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed rgba(111, 182, 196, 0.22);
}
.dispatch-row:last-of-type { border-bottom: none; }
.dispatch-row .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-300);
}
.dispatch-row .v { font-weight: 500; color: var(--white); font-size: 0.95rem; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--whatsapp);
}
.status-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Marquee strip (service tags) ---------- */
.tag-strip {
  background: var(--petrol-800);
  border-block: 1px solid rgba(111, 182, 196, 0.18);
  overflow: hidden;
  white-space: nowrap;
}
.tag-track {
  display: inline-flex;
  gap: var(--space-6);
  padding: var(--space-3) 0;
  animation: marquee 32s linear infinite;
}
.tag-strip:hover .tag-track { animation-play-state: paused; }
.tag-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-300);
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
}
.tag-track span::after { content: "✦"; color: var(--saffron-500); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Service ticket cards ---------- */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--space-5);
}
.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-radius: var(--radius);
  padding: var(--space-6);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--saffron-500);
  transform: scaleY(0.35);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mist-200); }
.ticket:hover::before { transform: scaleY(1); }
.ticket-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.ticket-ico {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist-100);
  color: var(--teal-500);
}
.ticket-ico .ico { width: 24px; height: 24px; }
.ticket-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.15rem;
}
.ticket h3 { font-size: var(--step-1); color: var(--petrol-900); }
.ticket p { color: var(--ink-soft); font-size: 0.97rem; margin-top: var(--space-2); }
.ticket-foot {
  margin-top: auto;
  padding-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-pill);
  background: var(--mist-100);
  color: var(--petrol-700);
}
.ticket-link {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ticket-link .ico { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.ticket:hover .ticket-link .ico { transform: translateX(4px); }

/* ---------- Feature / why-choose cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-5);
}
.feature {
  padding: var(--space-5);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--mist-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bg-mist .feature { background: var(--white); }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ico-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--petrol-800);
  color: var(--saffron-500);
  margin-bottom: var(--space-4);
}
.feature .ico-wrap .ico { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; margin-bottom: var(--space-2); }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Process steps (genuine sequence) ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-5);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: var(--space-6) var(--space-5) var(--space-5);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--mist-200);
}
.process-step .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--saffron-600);
  display: block;
  margin-bottom: var(--space-3);
}
.process-step h3 { font-size: 1.18rem; margin-bottom: var(--space-2); }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; }
.process-step .arrow {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  color: var(--mist-200);
  z-index: 1;
}
.process-step .arrow .ico { width: 26px; height: 26px; }

/* ---------- Two-column media/text ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.split--narrow { grid-template-columns: 1.05fr 0.95fr; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--petrol-800);
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ---------- Service areas chips ---------- */
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-cloud li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--mist-200);
  color: var(--petrol-800);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.area-cloud li:hover { border-color: var(--saffron-500); color: var(--saffron-600); transform: translateY(-2px); }

/* ---------- Values list (about) ---------- */
.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--mist-200);
}
.value-row:last-child { border-bottom: none; }
.value-row .ico-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--mist-100);
  color: var(--teal-500);
}
.value-row h3 { font-size: 1.12rem; margin-bottom: 0.2rem; }
.value-row p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-5);
}
.stat .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-3);
  color: var(--saffron-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  margin-top: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-200);
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--mist-200);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item.is-open { border-color: var(--teal-300); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--petrol-900);
  text-align: left;
}
.faq-q .plus {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
  color: var(--saffron-600);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2.5px; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 var(--space-5) var(--space-5); color: var(--ink-soft); }
.faq-a-inner p + p { margin-top: var(--space-3); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--petrol-900);
  color: var(--mist-100);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 182, 196, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 182, 196, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000, transparent 75%);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: var(--step-3); margin-bottom: var(--space-3); }
.cta-band p { color: var(--mist-200); margin-inline: auto; }
.cta-band .eyebrow { color: var(--saffron-500); }
.cta-band .hero-actions { justify-content: center; margin-top: var(--space-5); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-method {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--mist-200);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .ico-wrap {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--mist-100);
  color: var(--teal-500);
}
.contact-method .ico-wrap .ico { width: 22px; height: 22px; }
.contact-method .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-method .v { font-weight: 600; color: var(--petrol-900); font-size: 1.05rem; }
.contact-method .v a { color: inherit; }

/* Form */
.form { display: grid; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8em 1em;
  border: 1.5px solid var(--mist-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: var(--ring-light);
}
.form-note { font-size: 0.85rem; color: var(--ink-mute); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-top: var(--space-5); }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li::after { content: "/"; color: var(--mist-200); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--teal-500); }
.breadcrumbs a:hover { text-decoration: none; color: var(--petrol-800); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--petrol-900);
  color: var(--mist-100);
  overflow: hidden;
  padding-block: clamp(var(--space-7), 7vw, var(--space-9));
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 182, 196, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 182, 196, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 20% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 20% 0%, #000 20%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: var(--step-4); max-width: 18ch; }
.page-hero p { margin-top: var(--space-4); color: var(--mist-200); font-size: var(--step-1); max-width: 56ch; }
.page-hero .eyebrow { color: var(--saffron-500); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-900);
  color: var(--mist-200);
  padding-top: clamp(var(--space-8), 6vw, var(--space-9));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: var(--teal-300); }
.footer-tag { margin-top: var(--space-4); color: var(--mist-200); font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-500);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--mist-200); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--mist-200);
}
.footer-contact .ico { width: 1.1rem; height: 1.1rem; color: var(--teal-300); flex: none; margin-top: 0.2rem; }
.footer-affil {
  border-top: 1px solid rgba(111, 182, 196, 0.18);
  border-bottom: 1px solid rgba(111, 182, 196, 0.18);
  padding-block: var(--space-5);
}
.footer-affil-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-affil p { color: var(--mist-200); font-size: 0.95rem; }
.footer-affil strong { color: var(--white); }
.footer-affil a { color: var(--saffron-500); font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--teal-300);
}
.footer-bottom a { color: var(--teal-300); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Misc helpers ---------- */
.lead { font-size: var(--step-1); color: var(--ink-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.note-card {
  background: var(--paper);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: var(--space-5);
  border-left: 4px solid var(--saffron-500);
}
.note-card .ico { width: 22px; height: 22px; color: var(--saffron-600); }

/* Inline check list */
.check-list { display: grid; gap: var(--space-2); }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 1.05rem; height: 1.05rem;
  background: var(--teal-500);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

/* ---------- Service detail blocks (services page) ---------- */
.service-list { display: flex; flex-direction: column; gap: var(--space-6); }
.service-block {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-left: 4px solid var(--saffron-500);
  border-radius: var(--radius);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  scroll-margin-top: calc(var(--header-h) + 16px);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-block:hover { box-shadow: var(--shadow-md); }
.service-block-head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px dashed var(--mist-200);
}
.service-block-head .ticket-ico { width: 56px; height: 56px; border-radius: 14px; }
.service-block-head .ticket-ico .ico { width: 28px; height: 28px; }
.service-block-head .ticket-code { font-size: 0.74rem; }
.service-block-head h2 { font-size: var(--step-2); }
.service-block-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-7);
  align-items: start;
}
.service-block-body h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.service-block-body > div p { color: var(--ink-soft); }
.service-aside {
  background: var(--mist-100);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.service-aside .when { color: var(--ink-soft); font-size: 0.95rem; }
.service-aside .btn { margin-top: var(--space-4); }

/* ---------- About specifics ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.crew-card {
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
}
.crew-card .ico-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin: 0 auto var(--space-4);
  background: var(--petrol-800);
  color: var(--saffron-500);
}
.crew-card .ico-wrap .ico { width: 28px; height: 28px; }
.crew-card h3 { font-size: 1.15rem; margin-bottom: var(--space-2); }
.crew-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact map-style area block ---------- */
.area-block {
  background: var(--petrol-900);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  color: var(--mist-100);
  position: relative;
  overflow: hidden;
}
.area-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111, 182, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 182, 196, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.6;
}
.area-block > * { position: relative; z-index: 1; }
.area-block .eyebrow { color: var(--saffron-500); }
.area-block h2 { color: var(--white); }
.area-block p { color: var(--mist-200); }
.area-block .area-cloud li {
  background: rgba(255,255,255,0.06);
  border-color: rgba(111,182,196,0.3);
  color: var(--mist-100);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-brand { grid-col: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mist-200);
    padding: var(--space-3) var(--space-5) var(--space-5);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 0.85rem 0.5rem; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav a[aria-current="page"] { background: var(--mist-100); }

  .phone-link { display: none; }
  .btn-call { padding: 0.55em 1em; font-size: 0.88rem; }

  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .dispatch-card { order: -1; }
  .hero h1 { font-size: var(--step-4); }

  .split, .split--narrow { grid-template-columns: 1fr; gap: var(--space-6); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-step .arrow { display: none; }
  .service-block-body { grid-template-columns: 1fr; gap: var(--space-5); }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .brand-sub { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tag-track { animation: none; }
}
