/* ==========================================================================
   Dubai Fix It Now — styles.css
   "Dubai at dusk" — petrol/teal sky, saffron-gold lights, cool off-white.
   Display: Space Grotesk · Body: Manrope · Data: Space Mono
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Ink & surfaces */
  --ink: #0A1F23;
  --petrol: #0E3B41;
  --petrol-2: #13565F;
  --petrol-3: #1B6E78;
  --paper: #F1F4F3;
  --paper-2: #FFFFFF;
  --mist: #DDE7E5;
  --line: #C5D3D0;
  --line-soft: rgba(10, 31, 35, 0.08);

  /* Accents */
  --teal: #12B0A0;
  --teal-2: #0D8C80;
  --gold: #E89B3C;
  --gold-2: #F4B860;
  --gold-deep: #C9772A;
  --wa-green: #25D366;
  --wa-green-deep: #1DA851;

  /* Text on light */
  --text: #14292D;
  --text-soft: #46605F;
  --text-mute: #6E8584;

  /* Text on dark */
  --inv: #F3F7F6;
  --inv-soft: #B8CFCB;
  --inv-mute: #829C98;

  /* Type */
  --f-display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "Space Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 31, 35, 0.06), 0 2px 8px rgba(10, 31, 35, 0.05);
  --shadow-md: 0 6px 18px rgba(10, 31, 35, 0.08), 0 2px 6px rgba(10, 31, 35, 0.06);
  --shadow-lg: 0 24px 60px rgba(10, 31, 35, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul, ol { padding-left: 1.15rem; }

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

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { max-width: 68ch; }
.lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem); color: var(--text-soft); line-height: 1.6; }

strong { font-weight: 700; color: var(--ink); }

/* Mono utility — the technical "data" voice */
.mono {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section.tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }

.section--dark {
  background: var(--petrol);
  color: var(--inv);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--inv); }
.section--dark .lead { color: var(--inv-soft); }
.section--paper { background: var(--paper); }
.section--white { background: var(--paper-2); }
.section--mist { background: var(--mist); }

/* Eyebrow / section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-2);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--teal); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.85rem; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 31, 35, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 31, 35, 0.96);
  border-bottom-color: rgba(18, 176, 160, 0.25);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--inv);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text small {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.primary-nav a {
  color: var(--inv-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.primary-nav a:hover { color: var(--inv); background: rgba(255, 255, 255, 0.06); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--teal); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Phone block */
.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  padding-right: 0.1rem;
}
.phone-block .label {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inv-mute);
}
.phone-block .num {
  color: var(--inv);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.phone-block .num:hover { color: var(--gold-2); text-decoration: none; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--inv);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(10, 31, 35, 0.12);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 22px rgba(10, 31, 35, 0.2); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold:hover { background: var(--gold-2); }
.btn--whatsapp { --btn-bg: var(--wa-green); --btn-fg: #fff; }
.btn--whatsapp:hover { background: var(--wa-green-deep); color: #fff; }
.btn--teal { --btn-bg: var(--teal); --btn-fg: #04201d; }
.btn--teal:hover { background: var(--teal-2); color: #fff; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--inv);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); background: rgba(255, 255, 255, 0.04); }

.btn--ghost-dark {
  --btn-bg: transparent;
  --btn-fg: var(--petrol);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost-dark:hover { border-color: var(--petrol); background: var(--paper); }

.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.06rem; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.88rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(18, 176, 160, 0.28), transparent 55%),
    radial-gradient(90% 70% at 10% 20%, rgba(232, 155, 60, 0.14), transparent 50%),
    linear-gradient(180deg, var(--petrol-2) 0%, var(--petrol) 55%, var(--ink) 100%);
  color: var(--inv);
  overflow: hidden;
  isolation: isolate;
}
/* Blueprint grid — the technical-services signature */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 176, 160, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 176, 160, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 100% at 80% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 100% at 80% 10%, #000 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  z-index: 1;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 2rem + 6vw, 6rem) var(--gutter) clamp(2.5rem, 2rem + 3vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-copy { max-width: 38rem; }
.hero h1 { color: var(--inv); margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--gold-2); }
.hero .lead { color: var(--inv-soft); margin-bottom: 1.8rem; font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem); }

/* Live status chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #6ef0a3;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.status-chip .dot {
  width: 9px;
  height: 9px;
  background: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust .item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-2);
  line-height: 1;
}
.hero-trust .lbl {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inv-mute);
}

/* Hero dispatch card (signature) */
.dispatch-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(18, 176, 160, 0.3);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.dispatch-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.dc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}
.dc-head .title {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--inv-soft);
  font-weight: 700;
}
.dc-head .badge {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.25rem 0.55rem;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.dc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dc-row:last-child { border-bottom: none; }
.dc-row .ico {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: rgba(18, 176, 160, 0.14);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.dc-row .ico svg { width: 18px; height: 18px; }
.dc-row .main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.dc-row .svc { font-weight: 700; font-size: 0.92rem; color: var(--inv); }
.dc-row .area { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--inv-mute); }
.dc-row .eta {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-2);
  white-space: nowrap;
}
.dc-foot {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inv-mute);
}
.dc-foot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse-teal 2.5s infinite; }
@keyframes pulse-teal {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Ticker / dispatch board */
.ticker {
  background: var(--ink);
  border-block: 1px solid rgba(18, 176, 160, 0.2);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding-block: 0.8rem;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.ticker-track span {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inv-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ticker-track span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.ticker-track .live { color: var(--teal); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.grid--services { grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

/* Service card */
.svc-card { display: flex; flex-direction: column; gap: 0.85rem; }
.svc-card .ico {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(18, 176, 160, 0.14), rgba(18, 176, 160, 0.04));
  border: 1px solid rgba(18, 176, 160, 0.25);
  color: var(--teal-2);
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.svc-card .ico svg { width: 26px; height: 26px; }
.svc-card:hover .ico { background: var(--teal); color: #fff; border-color: var(--teal); }
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { color: var(--text-soft); font-size: 0.95rem; }
.svc-card .more {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.svc-card:hover .more { color: var(--gold-deep); }
.svc-card .more::after { content: "→"; transition: transform 0.2s var(--ease); }
.svc-card:hover .more::after { transform: translateX(3px); }

/* Feature card (why-choose) */
.feat-card { display: flex; flex-direction: column; gap: 0.7rem; }
.feat-card .ico {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--petrol);
  color: var(--gold-2);
  display: grid; place-items: center;
}
.feat-card .ico svg { width: 24px; height: 24px; }
.feat-card h3 { font-size: 1.12rem; }
.feat-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ==========================================================================
   Process (numbered — real sequence)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  padding: 1.8rem 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { color: var(--inv); margin-bottom: 0.5rem; font-size: 1.15rem; }
.step p { color: var(--inv-soft); font-size: 0.93rem; }

/* ==========================================================================
   Service areas chips
   ========================================================================== */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.areas .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.areas .chip:hover { border-color: var(--teal); color: var(--teal-2); transform: translateY(-2px); text-decoration: none; }
.areas .chip svg { width: 15px; height: 15px; color: var(--gold-deep); }

/* Map-style block */
.area-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.area-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(18, 176, 160, 0.18), transparent 70%),
    linear-gradient(135deg, var(--petrol-2), var(--ink));
  border: 1px solid rgba(18, 176, 160, 0.25);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.area-map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(18, 176, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 176, 160, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.area-pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(232, 155, 60, 0.25);
  animation: pulse-pin 2.4s infinite;
}
.area-pin .lbl {
  position: absolute;
  left: 18px; top: -6px;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inv-soft);
  white-space: nowrap;
  background: rgba(10, 31, 35, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 5px rgba(232, 155, 60, 0.25); }
  50% { box-shadow: 0 0 0 9px rgba(232, 155, 60, 0.08); }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--teal-2); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center;
  color: var(--petrol);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item[open] .faq-q .toggle { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-soft);
}
.faq-a p + p { margin-top: 0.7rem; }

/* ==========================================================================
   Split / feature rows (services page, about)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.split + .split { margin-top: clamp(2.5rem, 4vw, 4rem); }
.split.reverse .split-media { order: 2; }

.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(150deg, var(--petrol-2), var(--ink));
  border: 1px solid rgba(18, 176, 160, 0.2);
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

/* Service detail block (services.html) */
.svc-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.svc-detail + .svc-detail { margin-top: 1.4rem; }
.svc-detail .sd-side .ico {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, var(--petrol), var(--petrol-2));
  color: var(--gold-2);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.svc-detail .sd-side .ico svg { width: 32px; height: 32px; }
.svc-detail .sd-side .tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-2);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}
.svc-detail .sd-main { min-width: 0; }
.svc-detail h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); margin-bottom: 0.6rem; }
.svc-detail p { color: var(--text-soft); margin-bottom: 1rem; }
.includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  margin-top: 0.5rem;
}
.includes li {
  list-style: none;
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
.includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 9px; height: 9px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
}
.includes li.no::before {
  border-color: var(--gold-deep);
  transform: rotate(45deg);
}

/* Checklist */
.check-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.97rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--paper-2);
}
.section--dark .check-list li::before { background: var(--gold-2); box-shadow: inset 0 0 0 3px var(--petrol); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.3rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.contact-card .ico {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--petrol);
  color: var(--gold-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card .lbl { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; }
.contact-card .val { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); text-decoration: none; display: block; margin-top: 2px; }
.contact-card .val:hover { color: var(--teal-2); }
.contact-card .sub { font-size: 0.85rem; color: var(--text-mute); margin-top: 3px; }

/* Form */
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.field label .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 0.97rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 176, 160, 0.18);
  background: var(--paper-2);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--text-mute); margin-top: 0.8rem; text-align: center; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  background:
    radial-gradient(100% 120% at 80% 0%, rgba(232, 155, 60, 0.18), transparent 55%),
    linear-gradient(120deg, var(--petrol), var(--ink));
  color: var(--inv);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 4vw, 3.8rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(18, 176, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 176, 160, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--inv); margin-bottom: 0.8rem; }
.cta-band p { color: var(--inv-soft); margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.crumbs {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.crumbs a { color: var(--teal-2); font-weight: 700; }
.crumbs .sep { opacity: 0.5; }
.crumbs [aria-current] { color: var(--text); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero {
  background:
    radial-gradient(100% 90% at 85% 0%, rgba(18, 176, 160, 0.22), transparent 55%),
    linear-gradient(180deg, var(--petrol-2), var(--petrol));
  color: var(--inv);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(18, 176, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 176, 160, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(100% 100% at 70% 0%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(100% 100% at 70% 0%, #000 20%, transparent 80%);
}
.page-hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) var(--gutter) clamp(2rem, 2rem + 2vw, 3rem);
}
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero h1 { color: var(--inv); margin-bottom: 1rem; max-width: 22ch; }
.page-hero p { color: var(--inv-soft); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); max-width: 56ch; }
.page-hero .btn-row { margin-top: 1.8rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--inv-soft);
  border-top: 3px solid var(--teal);
}
.footer-top {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2.5rem, 4vw, 4rem) var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--inv-mute); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: var(--inv);
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--inv-soft); font-size: 0.92rem; text-decoration: none; }
.footer-col a:hover { color: var(--teal); text-decoration: none; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.92rem; color: var(--inv-soft); }
.footer-contact a { color: var(--inv-soft); }
.footer-contact .mono { color: var(--gold-2); }

.affiliate {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.2rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--inv-mute);
}
.affiliate strong { color: var(--inv-soft); }
.affiliate a { color: var(--teal); font-weight: 700; }

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.4rem var(--gutter) 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: var(--inv-mute);
}
.footer-bottom .links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--inv-mute); }
.footer-bottom a:hover { color: var(--teal); text-decoration: none; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ==========================================================================
   Helpers
   ========================================================================== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.6rem; }
.mt-2 { margin-top: 1.4rem; }
.mb-2 { margin-bottom: 1.4rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--mist);
  color: var(--petrol);
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 4vw, 3rem); }
.kicker-num {
  font-family: var(--f-mono);
  color: var(--gold-deep);
  font-weight: 700;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .dispatch-card { max-width: 480px; }
  .area-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .primary-nav, .phone-block { display: none; }
  .nav-toggle { display: inline-block; }

  /* Mobile nav drawer */
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--petrol);
    padding: 0.8rem var(--gutter) 1.4rem;
    border-bottom: 1px solid rgba(18, 176, 160, 0.2);
    transform: translateY(-130%);
    transition: transform 0.32s var(--ease);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
  }
  .primary-nav.open { display: flex; transform: translateY(0); }
  .primary-nav a {
    padding: 0.95rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
  }
  .primary-nav a:last-child { border-bottom: none; }
  .primary-nav .btn { margin-top: 0.8rem; }

  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: unset; }
  .svc-detail { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-trust { gap: 1rem 1.4rem; }
  .hero-trust .num { font-size: 1.25rem; }
  .btn--lg { width: 100%; }
  .cta-band .btn-row .btn { width: 100%; }
  .brand-text small { display: none; }
}

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

/* ---------- Print ---------- */
@media print {
  .site-header, .ticker, .btn, .nav-toggle, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
}
