/* ==========================================================================
   Dubai Service Works — design system
   A technical-spec / "work-order" identity for a Dubai home maintenance firm.
   Palette : Ink · Petrol · Emerald · Brass · Mist · White
   Type    : Space Grotesk (display) · Hanken Grotesk (body) · Space Mono (data)
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* colour */
  --ink: #0e1b1a;
  --ink-soft: #3a4a48;
  --ink-mute: #6b7875;
  --petrol: #0b4a47;
  --petrol-deep: #073431;
  --emerald: #0fb39c;
  --emerald-soft: #e6f6f3;
  --brass: #c9a24a;
  --brass-soft: #f5ecd6;
  --mist: #f1f4f3;
  --mist-2: #e9eeec;
  --line: #dfe5e2;
  --line-soft: #eef2f0;
  --white: #ffffff;
  --wa: #25d366;
  --wa-deep: #1da851;

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

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

  /* radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(14, 27, 26, 0.05), 0 2px 6px rgba(14, 27, 26, 0.04);
  --shadow: 0 6px 18px rgba(14, 27, 26, 0.07), 0 2px 6px rgba(14, 27, 26, 0.05);
  --shadow-lg: 0 28px 60px rgba(7, 52, 49, 0.14), 0 8px 20px rgba(14, 27, 26, 0.07);
  --ring: 0 0 0 3px rgba(15, 179, 156, 0.35);

  /* layout */
  --container: 1200px;
  --container-narrow: 880px;
  --header-h: 78px;

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

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

* { margin: 0; }

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

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

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

a { color: var(--petrol); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--emerald); }

ul, ol { padding-left: 1.1rem; }
li + li { margin-top: 0.4rem; }

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

p { text-wrap: pretty; }

::selection { background: var(--emerald); color: var(--white); }

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

/* ---------- Accessibility helpers --------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  z-index: 2000;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

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

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--mist { background: var(--mist); }
.section--petrol { background: var(--petrol-deep); color: #cfe3df; }
.section--mist-2 { background: var(--mist-2); }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

/* ---------- Mono labels / eyebrows (the "work-order" voice) ------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--brass); }
.eyebrow--light::before { background: var(--emerald); }

.mono { font-family: var(--font-mono); }

/* ---------- Section heading block --------------------------------------- */
.s-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  margin-top: 0.7rem;
}
.s-head p {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--ink-mute);
}
.section--petrol .s-head h2 { color: var(--white); }
.section--petrol .s-head p { color: #a9c2bd; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  --btn-bg: var(--petrol);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--petrol); box-shadow: 0 10px 24px rgba(11, 74, 71, 0.28); }
.btn--primary:hover { --btn-bg: var(--petrol-deep); }

.btn--emerald { --btn-bg: var(--emerald); box-shadow: 0 10px 24px rgba(15, 179, 156, 0.32); }
.btn--emerald:hover { --btn-bg: #0c9a86; }

.btn--whatsapp { --btn-bg: var(--wa); --btn-fg: #04210f; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32); }
.btn--whatsapp:hover { --btn-bg: var(--wa-deep); --btn-fg: #04210f; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--petrol);
  border-color: var(--line);
}
.btn--ghost:hover { --btn-bg: var(--white); border-color: var(--emerald); --btn-fg: var(--petrol-deep); }

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--petrol-deep);
  box-shadow: var(--shadow);
}
.btn--light:hover { --btn-bg: var(--mist); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn--outline-light:hover { --btn-bg: rgba(255, 255, 255, 0.08); --btn-fg: var(--white); }

.btn--lg { padding: 1.1rem 1.85rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 0.65rem 1.05rem; font-size: 0.9rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--petrol);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--emerald); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}
.brand-text b { font-weight: 700; color: var(--petrol); }
.brand-text small {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
  margin-top: 2px;
}

/* primary nav */
.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 0.35rem;
  padding: 0; margin: 0;
}
.primary-nav a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover { color: var(--petrol); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--petrol); }

/* header actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}
.header-phone:hover { color: var(--petrol); }
.header-phone svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; }
.header-phone small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.header-phone strong { font-size: 1.04rem; }

/* nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { position: absolute; transform: translateY(-6px); }
.nav-toggle span::after  { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* mobile nav panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.75rem 24px 1.5rem;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li + li { border-top: 1px solid var(--line-soft); margin: 0; }
.mobile-nav a {
  display: block;
  padding: 0.95rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.mobile-nav a[aria-current="page"] { color: var(--petrol); }
.mobile-nav .mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.site-header.nav-open .mobile-nav { display: block; }
.site-header.nav-open .nav-toggle { display: inline-flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(15, 179, 156, 0.10), transparent 60%),
    linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
  overflow: hidden;
}
/* faint blueprint grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 74, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 74, 71, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 600px at 20% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(900px 600px at 20% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.15rem);
  letter-spacing: -0.03em;
  margin-top: 1.4rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--petrol);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.18em;
  background: var(--brass);
  opacity: 0.45;
  z-index: -1;
  border-radius: 4px;
}
.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.18rem;
  max-width: 540px;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-meta-item { display: flex; gap: 0.7rem; align-items: flex-start; }
.hero-meta-item svg { width: 22px; height: 22px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.hero-meta-item b {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
}
.hero-meta-item small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* hero visual — technical "service diagram" card */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  overflow: hidden;
}
.hero-card-tag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.hero-card-tag b { color: var(--petrol); }
.hero-diagram { width: 100%; height: auto; border-radius: var(--r); }
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.hero-stat {
  background: var(--mist);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.6rem;
  text-align: center;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--petrol);
  font-weight: 700;
  line-height: 1;
}
.hero-stat small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--petrol-deep);
  color: var(--white);
  border-radius: var(--r);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 220px;
}
.hero-badge svg { width: 26px; height: 26px; color: var(--brass); flex-shrink: 0; }
.hero-badge b { font-family: var(--font-display); font-size: 0.92rem; display: block; }
.hero-badge small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.5rem;
}
.trust-item { text-align: center; padding: 0.5rem; }
.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--petrol);
  font-weight: 700;
  line-height: 1;
}
.trust-item small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.service-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--emerald-soft);
  color: var(--petrol);
  display: grid;
  place-items: center;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.18rem;
  margin-top: 0.5rem;
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--brass);
  font-weight: 700;
  display: block;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--ink-mute);
  flex-grow: 1;
}
.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--mist);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.6rem;
}

/* ==========================================================================
   Why choose / features
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow-img .split-figure { max-width: 460px; justify-self: center; width: 100%; }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-check {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--emerald-soft);
  color: var(--petrol);
  display: grid;
  place-items: center;
}
.feature-check svg { width: 22px; height: 22px; }
.feature-list b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.feature-list p { margin: 0.15rem 0 0; font-size: 0.96rem; color: var(--ink-mute); }

/* figure panel (generic visual block) */
.figure-panel {
  background: var(--petrol-deep);
  border-radius: var(--r-lg);
  padding: 2rem;
  color: #cfe3df;
  position: relative;
  overflow: hidden;
}
.figure-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.figure-panel > * { position: relative; }
.figure-panel .eyebrow { color: var(--brass); }
.figure-panel .eyebrow::before { background: var(--emerald); }
.figure-panel h3 { color: var(--white); font-size: 1.3rem; margin: 0.7rem 0 0.6rem; }
.figure-panel p { color: #b9d0cb; font-size: 0.98rem; }

/* spec list inside figure panel */
.spec-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.5rem; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.spec-list .v { color: var(--white); font-family: var(--font-display); font-weight: 500; }

/* ==========================================================================
   Process — "work order" timeline
   ========================================================================== */
.work-order {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.wo-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.wo-bar b { color: var(--petrol); }
.wo-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); display: inline-block; box-shadow: 0 0 0 4px var(--emerald-soft); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: step;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--mist);
  color: var(--petrol);
  display: grid; place-items: center;
  margin-bottom: 0.85rem;
}
.step-icon svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--ink-mute); }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px; right: -0.625rem;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}

/* ==========================================================================
   Service areas
   ========================================================================== */
.areas-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-list {
  list-style: none;
  padding: 0; margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.area-list svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.area-map {
  background: var(--petrol-deep);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.area-map svg { width: 100%; height: auto; max-height: 380px; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item + .faq-item { margin-top: 0.85rem; }
.faq-item.is-open { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.35;
}
.faq-q:hover { color: var(--petrol); }
.faq-q .faq-mark {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--petrol);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.faq-item.is-open .faq-mark { transform: rotate(45deg); background: var(--emerald); color: var(--white); }
.faq-a {
  overflow: hidden;
}
.js .faq-a {
  max-height: 0;
  transition: max-height .35s var(--ease);
}
.faq-a-inner { padding: 0 1.35rem 1.3rem; color: var(--ink-soft); }
.faq-a p + p { margin-top: 0.8rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  background:
    radial-gradient(800px 400px at 90% 110%, rgba(201, 162, 74, 0.18), transparent 60%),
    linear-gradient(135deg, var(--petrol-deep) 0%, var(--petrol) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band-inner { display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center; }
.cta-band .eyebrow { color: var(--brass); }
.cta-band .eyebrow::before { background: var(--emerald); }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-top: 0.7rem; }
.cta-band p { color: #c2d8d3; margin-top: 0.9rem; max-width: 520px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 0.7rem; min-width: 250px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #9fb3af;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand .brand .brand-text b { color: var(--white); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer-affil {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.03);
}
.footer-affil small {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-affil a { color: var(--white); font-family: var(--font-display); font-weight: 600; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer-links a { color: #b6c8c4; font-size: 0.97rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer-contact svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; margin-top: 3px; }
.footer-contact b { display: block; color: var(--white); font-family: var(--font-display); font-size: 1rem; }
.footer-contact a { color: #cfe0dc; }
.footer-contact a:hover { color: var(--white); }
.footer-contact .mono-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7c8f8b;
}
.footer-bottom .footer-mini-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: #9fb3af; }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.field label .req { color: var(--brass); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa7a4; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 0.5rem;
  display: flex; gap: 0.45rem; align-items: center;
}
.form-note svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }

.contact-info { display: grid; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card .ic {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--emerald-soft);
  color: var(--petrol);
  display: grid; place-items: center;
}
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card .mono-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.25rem;
}
.contact-card b { font-family: var(--font-display); color: var(--ink); font-size: 1.15rem; display: block; }
.contact-card a { color: var(--petrol); }
.contact-card p { font-size: 0.95rem; color: var(--ink-mute); margin-top: 0.2rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); color: var(--petrol); }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .closed { color: var(--ink-mute); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(15, 179, 156, 0.10), transparent 60%),
    var(--mist);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11, 74, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 74, 71, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(700px 400px at 25% 20%, #000, transparent 80%);
          mask-image: radial-gradient(700px 400px at 25% 20%, #000, transparent 80%);
  pointer-events: none;
}
.page-hero-inner { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem); max-width: 760px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-top: 1rem; letter-spacing: -0.03em; }
.page-hero p { margin-top: 1rem; font-size: 1.15rem; color: var(--ink-mute); max-width: 620px; }

/* breadcrumb */
.breadcrumb { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li::after { content: "/"; color: var(--line); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--petrol); }
.breadcrumb li[aria-current="page"] { color: var(--petrol); }

/* ==========================================================================
   Services-detail (services.html)
   ========================================================================== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.svc-block:nth-child(even) .svc-text { order: 2; }
.svc-block + .svc-block { border-top: 1px solid var(--line); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--brass);
  font-weight: 700;
}
.svc-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.5rem 0 0.9rem; }
.svc-text > p { color: var(--ink-mute); font-size: 1.02rem; }
.svc-includes {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.svc-includes li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink-soft);
  padding: 0.4rem 0;
}
.svc-includes svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 3px; }
.svc-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }

.svc-visual {
  position: relative;
  background: var(--mist);
  border-radius: var(--r-lg);
  padding: 2rem;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.svc-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,74,71,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,74,71,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.svc-visual .big-icon {
  width: 130px; height: 130px;
  color: var(--petrol);
  position: relative;
  z-index: 1;
}
.svc-visual .pill-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--petrol);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.7rem;
  font-weight: 700;
}

/* ==========================================================================
   About page
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--brass); font-weight: 700; }
.value-card .vic { width: 50px; height: 50px; border-radius: var(--r); background: var(--emerald-soft); color: var(--petrol); display: grid; place-items: center; margin: 0.75rem 0; }
.value-card .vic svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--ink-mute); font-size: 0.96rem; }

.team-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.team-card .avatar {
  width: 64px; height: 64px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--petrol-deep);
  color: var(--brass);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.team-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.team-card .role { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald); font-weight: 700; margin-top: 0.3rem; }
.team-card p { font-size: 0.85rem; color: var(--ink-mute); margin-top: 0.6rem; }

/* affiliation block */
.affil-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.affil-logo {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--mist);
  display: grid; place-items: center;
  color: var(--petrol);
}
.affil-logo svg { width: 44px; height: 44px; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
/* Hide only when JS is active; without JS everything shows (progressive enhancement) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
.js [data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.center-axis { display: flex; flex-direction: column; align-items: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 4vw, 3rem); }
.note-card {
  background: var(--emerald-soft);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  display: flex; gap: 0.85rem; align-items: flex-start;
  border-left: 3px solid var(--emerald);
}
.note-card svg { width: 22px; height: 22px; color: var(--petrol); flex-shrink: 0; margin-top: 2px; }
.note-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .areas-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-text { order: 0; }
  .team-strip { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn--primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .cta-band-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 680px) {
  :root { --header-h: 70px; }
  .container { padding-inline: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .split { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .svc-includes { grid-template-columns: 1fr; }
  .team-strip { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; bottom: -14px; max-width: 90%; }
  .brand-text small { display: none; }
  .affil-card { grid-template-columns: 1fr; text-align: left; }
  .affil-logo { margin: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 1.1rem; }
  .cta-band-actions { flex-direction: column; }
}

@media (max-width: 400px) {
  .team-strip { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 em { white-space: normal; }
}

/* ==========================================================================
   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;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
