/* ==========================================================================
   Dubai Home Support — styles.css
   "Cool air meets warm desert": petrol/teal/mint (conditioned air) against
   sand/amber (Dubai heat). Space Grotesk (display) + Hanken Grotesk (body)
   + JetBrains Mono (signature utility face for labels, ticket data, phones).
   Mobile-first. Respects prefers-reduced-motion.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — cool air */
  --petrol: #0b3a40;
  --petrol-2: #0a2f34;
  --teal: #0f7670;
  --teal-dark: #0a5d58;
  --teal-bright: #14a09a;
  --mint: #eaf4f3;
  --mint-2: #dcebe9;

  /* Warm desert */
  --sand: #f3ead6;
  --sand-2: #ead9b8;
  --amber: #e0a02e;
  --amber-dark: #bd821e;

  /* Neutrals */
  --ink: #15201f;
  --ink-soft: #4c5a58;
  --ink-faint: #7a8886;
  --line: #dde7e5;
  --line-warm: #e6dcc6;
  --white: #ffffff;
  --paper: #fbfaf6;

  /* Reserved */
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

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

  /* Type scale (fluid) */
  --fs-display: clamp(2.3rem, 5.2vw, 4.1rem);
  --fs-h2: clamp(1.75rem, 3.4vw, 2.7rem);
  --fs-h3: clamp(1.18rem, 2vw, 1.45rem);
  --fs-lead: clamp(1.08rem, 1.6vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-mono: 0.78rem;

  /* Spacing (8px base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;

  /* Radii */
  --r-sm: 7px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 58, 64, 0.06), 0 2px 8px rgba(11, 58, 64, 0.05);
  --shadow: 0 6px 18px rgba(11, 58, 64, 0.08), 0 2px 6px rgba(11, 58, 64, 0.05);
  --shadow-lg: 0 22px 50px rgba(11, 58, 64, 0.16);

  /* Layout */
  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

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

h1 { font-size: var(--fs-display); letter-spacing: -0.028em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { color: var(--ink); }
p + p { margin-top: var(--s-2); }

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

::selection { background: var(--amber); color: var(--petrol-2); }

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

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-mint { background: var(--mint); }
.bg-sand { background: var(--sand); }
.bg-petrol { background: var(--petrol); color: #e7f1f0; }
.bg-petrol h1, .bg-petrol h2, .bg-petrol h3, .bg-petrol h4 { color: var(--white); }
.bg-petrol p { color: #cfe0de; }

.center { text-align: center; }

/* ---------- Mono eyebrow (signature utility face) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: "▸";
  color: var(--amber);
}
.bg-petrol .eyebrow { color: var(--teal-bright); }

.section-head { max-width: 720px; margin-bottom: var(--s-5); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: var(--s-2); color: var(--ink-soft); font-size: var(--fs-lead); }
.bg-petrol .section-head p { color: #cfe0de; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 0.92em 1.4em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--amber { --btn-bg: var(--amber); --btn-fg: var(--petrol-2); }
.btn--amber:hover { background: var(--amber-dark); color: #fff; }

.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #06251a; font-weight: 700; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--petrol); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--teal); background: var(--mint); transform: translateY(-2px); }

.btn--on-dark { --btn-bg: rgba(255, 255, 255, 0.08); --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.4); box-shadow: none; }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }

.btn--lg { font-size: 1.08rem; padding: 1.05em 1.7em; }
.btn--sm { font-size: 0.9rem; padding: 0.7em 1.05em; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: var(--s-2);
  top: -120%;
  z-index: 200;
  background: var(--petrol);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
}
.skip-link:focus { top: var(--s-2); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(251, 250, 246, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-height: var(--header-h);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand-mark { flex: none; border-radius: 10px; }
.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);
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Nav menu */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-pill);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-menu a:hover { color: var(--teal); background: var(--mint); text-decoration: none; }
.nav-menu a[aria-current="page"] {
  color: var(--petrol);
  background: var(--mint-2);
  font-weight: 600;
}

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--petrol);
  padding: 0.4rem 0.6rem;
  border-radius: var(--r-sm);
}
.phone-link svg { width: 1rem; height: 1rem; color: var(--teal); }
.phone-link:hover { background: var(--mint); text-decoration: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--petrol);
  border-radius: 2px;
  transition: transform 0.25s 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);
  color: #e7f1f0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* cool-air radial glow */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 82% 8%, rgba(20, 160, 154, 0.45), transparent 60%),
    radial-gradient(45% 55% at 8% 92%, rgba(224, 160, 46, 0.22), transparent 60%),
    linear-gradient(180deg, var(--petrol-2), var(--petrol));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-5);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero .eyebrow { color: var(--teal-bright); }
.hero h1 { color: var(--white); margin-top: var(--s-2); }
.hero h1 .accent { color: var(--amber); }
.hero-lead {
  margin-top: var(--s-3);
  font-size: var(--fs-lead);
  color: #cfe0de;
  max-width: 56ch;
}
.hero .btn-row { margin-top: var(--s-4); }
.hero-note {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #9fbab8;
}

/* Hero ticket panel (signature) */
.hero-panel { position: relative; }
.ticket {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-3) var(--s-4);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.ticket::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  border: 1px dashed var(--line);
  pointer-events: none;
}
.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: var(--s-2);
  border-bottom: 1px dashed var(--line);
}
.ticket-id {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ticket-status {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--whatsapp-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.ticket-status::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.ticket-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--petrol);
  margin-top: var(--s-2);
}
.ticket-list {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 0;
  display: grid;
  gap: 0.7rem;
}
.ticket-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.97rem;
}
.ticket-list .ic {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.ticket-list .ic svg { width: 15px; height: 15px; }
.ticket-list strong { font-family: var(--font-display); font-weight: 600; color: var(--petrol); }
.ticket-list small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ticket-cta {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Job-ticket strip (response promise) */
.ticket-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #b9cdcb;
}
.ticket-strip span { display: inline-flex; align-items: center; gap: 0.5em; }
.ticket-strip span::before { content: "//"; color: var(--amber); font-weight: 700; }
.hero-strip { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid rgba(255, 255, 255, 0.12); }

/* ---------- Service / card grid ---------- */
.grid { display: grid; gap: var(--s-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s-3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mint-2);
}
.card-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-2);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--teal); text-decoration: none; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-link {
  margin-top: auto;
  padding-top: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.card .card-link::after { content: " →"; transition: padding 0.2s var(--ease); }
.card:hover .card-link::after { padding-left: 4px; }
.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--mint);
  padding: 0.25em 0.6em;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-2);
  align-self: flex-start;
}

/* ---------- Feature / why list ---------- */
.feature {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
}
.feature .feature-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--petrol);
  color: var(--amber);
  display: grid;
  place-items: center;
}
.bg-petrol .feature .feature-ic { background: rgba(255,255,255,0.08); color: var(--amber); }
.feature .feature-ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.feature p { font-size: 0.96rem; color: var(--ink-soft); margin-top: 0; }
.bg-petrol .feature p { color: #cfe0de; }

/* ---------- Process steps (numbered — real sequence) ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  height: 100%;
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
  display: inline-block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 0; }

/* ---------- Service area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5em 0.95em;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--petrol);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.chip:hover { border-color: var(--teal); background: var(--mint); text-decoration: none; }
.chip svg { width: 14px; height: 14px; color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--petrol);
  color: #e7f1f0;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(70% 120% at 100% 0%, rgba(20, 160, 154, 0.35), transparent 60%);
}
.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { color: #cfe0de; max-width: 52ch; margin-top: var(--s-2); }
.cta-band .btn-row { margin-top: var(--s-4); }
.cta-band .ticket-strip { color: #9fbab8; margin-top: var(--s-4); }

/* ---------- Split / feature panel ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
}
.panel-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
}
.list-check { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.list-check li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 1rem; }
.list-check li svg { flex: none; width: 20px; height: 20px; color: var(--teal-bright); margin-top: 2px; }
.list-check strong { font-family: var(--font-display); font-weight: 600; }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
.stat .stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--amber);
  line-height: 1;
}
.stat .stat-l {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fbab8;
  margin-top: 0.5rem;
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item.open { border-color: var(--teal-bright); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: var(--s-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--petrol);
}
.faq-q:hover { color: var(--teal); }
.faq-q .faq-ic {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.faq-q .faq-ic::before,
.faq-q .faq-ic::after {
  content: "";
  position: absolute;
  background: var(--petrol);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.faq-q .faq-ic::before { width: 12px; height: 2px; }
.faq-q .faq-ic::after { width: 2px; height: 12px; }
.faq-item.open .faq-ic { background: var(--teal); border-color: var(--teal); }
.faq-item.open .faq-ic::before, .faq-item.open .faq-ic::after { background: #fff; }
.faq-item.open .faq-ic::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner {
  padding: 0 var(--s-3) var(--s-3);
  color: var(--ink-soft);
}
.faq-a-inner p { color: var(--ink-soft); }
.faq-a-inner p + p { margin-top: 0.8rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: start;
}
.contact-methods { display: grid; gap: var(--s-2); }
.method {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s-3);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.method:hover { border-color: var(--mint-2); box-shadow: var(--shadow-sm); }
.method .m-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.method .m-ic svg { width: 22px; height: 22px; }
.method .m-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.method .m-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--petrol);
  margin-top: 0.1rem;
}
.method .m-value a { color: inherit; }
.method .m-sub { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.15rem; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.field { margin-bottom: var(--s-2); }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.field .req { color: var(--amber-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.4rem; }

/* Map / area block */
.area-block {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--mint);
  position: relative;
}
.area-art {
  height: 280px;
  background:
    radial-gradient(circle at 30% 40%, rgba(20,160,154,0.25), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(224,160,46,0.22), transparent 45%),
    linear-gradient(135deg, var(--mint-2), var(--mint));
  position: relative;
  display: grid;
  place-items: center;
}
.area-art .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--amber);
  border: 3px solid var(--petrol);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(224,160,46,0.25);
}
.area-art .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
  background: rgba(255,255,255,0.85);
  padding: 0.35em 0.7em;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.area-body { padding: var(--s-4); }

/* ---------- Values ---------- */
.value-card {
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  height: 100%;
}
.value-card .vc-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
}
.value-card h3 { margin: 0.5rem 0 0.4rem; }
.value-card p { color: var(--ink-soft); font-size: 0.97rem; margin-top: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  padding: var(--s-2) 0 0;
}
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.crumbs li { display: inline-flex; align-items: center; gap: 0.4rem; }
.crumbs li::after { content: "/"; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--teal); }
.crumbs [aria-current="page"] { color: var(--ink-soft); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--petrol);
  color: #e7f1f0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 80% at 90% 10%, rgba(20,160,154,0.35), transparent 60%),
    radial-gradient(40% 70% at 5% 100%, rgba(224,160,46,0.18), transparent 60%),
    linear-gradient(180deg, var(--petrol-2), var(--petrol));
}
.page-hero-inner { padding-block: clamp(2.5rem, 5vw, 4rem); max-width: 760px; }
.page-hero h1 { color: #fff; margin-top: var(--s-2); }
.page-hero p { color: #cfe0de; font-size: var(--fs-lead); margin-top: var(--s-2); }
.page-hero .eyebrow { color: var(--teal-bright); }

/* ---------- Service detail block (services.html) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-4);
  align-items: start;
  padding-block: var(--s-5);
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: 0; }
.service-block:nth-child(even) .service-text { order: 2; }
.service-block:nth-child(even) .service-aside { order: 1; }
.service-text .sb-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
}
.service-text h2 { margin: 0.5rem 0 0.4rem; }
.service-text > p { color: var(--ink-soft); font-size: 1.02rem; }
.service-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  box-shadow: var(--shadow-sm);
}
.service-aside .sa-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: var(--s-2);
  border-bottom: 1px dashed var(--line);
  margin-bottom: var(--s-2);
}
.service-aside .sa-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex: none;
}
.service-aside .sa-ic svg { width: 24px; height: 24px; }
.service-aside h3 { font-size: 1.05rem; }
.service-aside .sa-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.service-aside .list-check li { font-size: 0.95rem; }
.service-aside .list-check li svg { width: 18px; height: 18px; }
.service-aside .btn-row { margin-top: var(--s-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-2);
  color: #b9cdcb;
  padding-top: var(--s-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: var(--teal-bright); }
.footer-brand p { color: #9fbab8; margin-top: var(--s-2); max-width: 34ch; font-size: 0.95rem; }
.footer-affil {
  margin-top: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-affil .eyebrow { color: var(--teal-bright); font-size: 0.66rem; }
.footer-affil a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 0.4rem;
  font-size: 0.98rem;
}
.footer-affil a:hover { color: var(--amber); }
.footer-affil small { display: block; color: #7e9593; font-size: 0.82rem; margin-top: 0.3rem; }

.footer-col h2 {
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: #b9cdcb; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-contact p { font-size: 0.95rem; margin: 0 0 0.4rem; color: #9fbab8; }
.footer-contact a { color: #fff; }
.footer-contact .hours {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--teal-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: 0.85rem;
  color: #7e9593;
}
.footer-bottom p { color: inherit; margin: 0; }
.footer-note { max-width: 60ch; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { 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; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .split { grid-template-columns: 1fr; gap: var(--s-3); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-text { order: 1; }
  .service-block:nth-child(even) .service-aside { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* Mobile nav: collapse menu */
  .nav-toggle { display: flex; }
  .header-cta .btn--sm.call-btn { display: none; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .primary-nav.open { max-height: 75vh; overflow-y: auto; }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-2) var(--s-3) var(--s-3);
  }
  .nav-menu a { padding: 0.85rem 0.5rem; border-radius: var(--r-sm); border-bottom: 1px solid var(--mint); }
  .nav-menu li:last-child a { border-bottom: 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .header-cta .phone-link span { display: none; }
  .header-cta .phone-link { padding: 0.5rem; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

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