/* ==========================================================================
   Dubai Handy Help — styles.css
   Design system: "The Job Sheet"
   Palette: ink-green · teal · signal-amber · warm paper
   Type: Bricolage Grotesque (display) · Hanken Grotesk (body) · Space Mono (data)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --ink: #15211d;
  --ink-2: #1d2b26;
  --teal: #0e5a50;
  --teal-600: #0b4a42;
  --teal-700: #093f37;
  --teal-800: #062a24;
  --amber: #f2a016;
  --amber-600: #d98a0a;
  --amber-700: #b6710a;
  --amber-soft: #fbe6c4;
  --amber-tint: #fef6e3;
  --whatsapp: #25d366;
  --whatsapp-600: #1da851;
  --paper: #f6f3eb;
  --paper-2: #ece6d8;
  --mist: #eef2ee;
  --white: #ffffff;
  --text: #29322e;
  --text-muted: #5d6661;
  --text-faint: #8a938d;
  --line: #e4ddcd;
  --line-soft: #efe9db;
  --line-dark: rgba(255, 255, 255, 0.14);

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

  --fs-eyebrow: 0.72rem;
  --fs-small: 0.875rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.1rem, 0.4rem + 1.6vw, 1.35rem);
  --fs-h3: clamp(1.22rem, 0.7rem + 1.3vw, 1.5rem);
  --fs-h2: clamp(1.85rem, 0.7rem + 3vw, 2.95rem);
  --fs-h1: clamp(2.4rem, 0.8rem + 5vw, 4.4rem);

  /* Spacing & shape */
  --gap: clamp(1rem, 2.5vw, 1.6rem);
  --pad: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius-sm: 9px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(21, 33, 29, 0.05), 0 4px 14px rgba(21, 33, 29, 0.06);
  --shadow: 0 2px 4px rgba(21, 33, 29, 0.06), 0 14px 34px rgba(21, 33, 29, 0.1);
  --shadow-lg: 0 10px 30px rgba(21, 33, 29, 0.12), 0 30px 70px rgba(21, 33, 29, 0.16);

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --header-h: 74px;

  --bp-c: rgba(255, 255, 255, 0.045);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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; }

::selection { background: var(--amber-soft); color: var(--ink); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* ---------- 3. Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #e7ece9; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--teal { background: var(--teal-700); color: #e3ece9; }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--white); }

[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

/* Blueprint grid texture */
.bp {
  background-image:
    linear-gradient(var(--bp-c) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-c) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Section heading block */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: 0.6rem; }
.section-head p {
  margin-top: 0.9rem;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.section--ink .section-head p,
.section--teal .section-head p { color: rgba(255, 255, 255, 0.78); }

/* Eyebrow / mono label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow--center::before { display: none; }
.section--ink .eyebrow,
.section--teal .eyebrow { color: var(--amber); }
.eyebrow--bare::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--text-muted); }
.mono { font-family: var(--font-mono); }
.muted { color: var(--text-muted); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.92rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--teal); }
.btn--primary:hover { --btn-bg: var(--teal-600); }
.btn--amber { --btn-bg: var(--amber); --btn-fg: var(--ink); }
.btn--amber:hover { --btn-bg: #f7b134; }
.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #fff; }
.btn--whatsapp:hover { --btn-bg: var(--whatsapp-600); }
.btn--ink { --btn-bg: var(--ink); }
.btn--ink:hover { --btn-bg: #000; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(21, 33, 29, 0.04); }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: var(--line-dark);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

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

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

.phone-link {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.phone-link:hover { text-decoration: none; color: var(--teal); }

/* ---------- 5. Header / nav ---------- */
.skip-link {
  position: absolute;
  left: 0.6rem;
  top: -120%;
  background: var(--amber);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 235, 0.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--teal);
  border-radius: 10px;
  position: relative;
  box-shadow: inset 0 0 0 1.5px var(--teal-700);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__mark::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--paper);
}
.brand__name b { color: var(--ink); }
.brand__name span { color: var(--teal); display: block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-mono); font-weight: 700; line-height: 1.3; }

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { text-decoration: none; background: rgba(21, 33, 29, 0.06); color: var(--ink); }
.nav a[aria-current="page"] {
  color: var(--teal);
  background: var(--amber-tint);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.header-phone svg { width: 1rem; height: 1rem; color: var(--teal); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #e9efec;
  overflow: hidden;
}
.hero .bp { position: absolute; inset: 0; --bp-c: rgba(255, 255, 255, 0.04); }
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(242, 160, 22, 0.22), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(14, 90, 80, 0.55), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero h1 {
  color: var(--white);
  font-size: var(--fs-h1);
  margin-top: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
  white-space: nowrap;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1.3rem;
  max-width: 34ch;
}
.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-meta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.hero-meta b { color: var(--amber); font-weight: 700; }

/* Hero job ticket (signature element reused) */
.hero-ticket { perspective: 1200px; }
.job-ticket {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.4deg);
  transition: transform 0.3s ease;
}
.job-ticket:hover { transform: rotate(0deg); }
.job-ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.15rem;
  background: var(--amber-soft);
  border-bottom: 1.5px dashed #d9c79a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 700;
}
.job-ticket__head .status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: #fff;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
}
.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6df0a4;
  box-shadow: 0 0 0 0 rgba(109, 240, 164, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 240, 164, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(109, 240, 164, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 240, 164, 0); }
}
.job-ticket__body { padding: 1.4rem 1.4rem 1.6rem; }
.job-ticket__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.job-ticket__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  margin: 0.2rem 0 0.3rem;
  color: var(--ink);
}
.job-ticket__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}
.job-ticket__row:last-of-type { border-bottom: 0; }
.job-ticket__row .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.job-ticket__row .v { font-weight: 700; color: var(--ink); }
.job-ticket__foot {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- 7. Trust strip ---------- */
.trust {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line-dark);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding-block: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust__inner span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust__inner svg { width: 1rem; height: 1rem; color: var(--amber); }

/* ---------- 8. Job-ticket service card (signature) ---------- */
.tickets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.7rem);
}
.ticket {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.ticket:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--paper-2);
}
.ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.62rem 1.05rem;
  background: var(--amber-soft);
  border-bottom: 1.5px dashed #ddcaa0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-700);
}
.ticket__head .tag {
  background: var(--white);
  color: var(--text-muted);
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
}
.ticket__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.ticket__icon svg { width: 24px; height: 24px; }
.ticket__body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ticket h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.ticket__body > p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1rem;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.checklist li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.92rem;
  color: var(--text);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 0.66rem;
  background-repeat: no-repeat;
  background-position: center;
}
.ticket__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.94rem;
  align-self: flex-start;
}
.ticket__cta svg { width: 1rem; height: 1rem; transition: transform 0.18s ease; }
.ticket__cta:hover { text-decoration: none; }
.ticket__cta:hover svg { transform: translateX(4px); }

/* ---------- 9. Why-choose features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.feature {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
}
.feature__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--amber-700);
  font-weight: 700;
}
.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--teal);
  margin: 0.6rem 0 0.9rem;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.94rem; color: var(--text-muted); }

/* ---------- 10. Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  border-top: 4px solid var(--amber);
}
.step__no {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.step__no b {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; color: var(--text-muted); }

/* ---------- 11. Service areas ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.area-pill:hover {
  text-decoration: none;
  border-color: var(--amber);
  background: var(--amber-tint);
  transform: translateY(-2px);
}
.area-pill svg { width: 0.95rem; height: 0.95rem; color: var(--teal); }

/* ---------- 12. Split / media blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow-text .split__text { max-width: 38ch; }
.split__text h2 { font-size: var(--fs-h2); margin: 0.6rem 0 1rem; }
.split__text p { color: var(--text-muted); margin-bottom: 1rem; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal-800);
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #e9efec;
  box-shadow: var(--shadow);
}

/* ---------- 13. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.03em;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 14. CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #e9efec;
  overflow: hidden;
}
.cta-band .bp { position: absolute; inset: 0; opacity: 0.7; }
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 0.6rem + 2.6vw, 2.4rem);
  text-align: left;
}
.cta-band p { color: rgba(255, 255, 255, 0.78); margin-top: 0.4rem; }
.cta-band .btn-row { flex-shrink: 0; }
.cta-band .big-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--amber);
  display: inline-block;
  margin-top: 0.4rem;
}
.cta-band .big-phone:hover { text-decoration: none; color: #ffbf4d; }

/* ---------- 15. FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item.is-open { border-color: var(--paper-2); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q:hover { background: rgba(21, 33, 29, 0.02); }
.faq-q:focus-visible { outline-offset: -3px; }
.faq-q .icon {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item.is-open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--amber);
  color: var(--ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a__inner {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-muted);
}
.faq-a__inner p + p { margin-top: 0.7rem; }

/* ---------- 16. Values / approach (about) ---------- */
.value-list { display: grid; gap: 0.4rem; }
.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row__no {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber-700);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}
.value-row h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.value-row p { color: var(--text-muted); }

/* Team-style cards */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}
.team-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.team-card h3 { font-size: 1.05rem; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.team-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- 17. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.contact-channel {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact-channel:last-child { border-bottom: 0; }
.contact-channel__icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--mist);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.contact-channel__icon svg { width: 22px; height: 22px; }
.contact-channel .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-channel .v { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact-channel a.v:hover { color: var(--teal); text-decoration: none; }

/* Form */
.form { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.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; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }
.form-success {
  display: none;
  background: var(--mist);
  border: 1px solid #bfe0d2;
  color: var(--teal-700);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
}
.form-success.is-visible { display: block; }

/* Map-style area block */
.area-block {
  background: var(--teal-800);
  color: #e9efec;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  position: relative;
  overflow: hidden;
}
.area-block .bp { position: absolute; inset: 0; --bp-c: rgba(255, 255, 255, 0.05); }
.area-block__inner { position: relative; z-index: 1; }
.area-block h2 { color: #fff; font-size: var(--fs-h3); }
.area-block p { color: rgba(255, 255, 255, 0.8); margin-top: 0.5rem; }

/* ---------- 18. Breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { color: var(--text-faint); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--ink);
  color: #e9efec;
  position: relative;
  overflow: hidden;
}
.page-hero .bp { position: absolute; inset: 0; --bp-c: rgba(255, 255, 255, 0.04); }
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(242, 160, 22, 0.18), transparent 60%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}
.page-hero h1 {
  color: var(--white);
  font-size: var(--fs-h1);
  margin-top: 1rem;
}
.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 56ch; margin-top: 1rem; font-size: var(--fs-lead); }

/* ---------- 19. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  border-top: 4px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand__name b { color: #fff; }
.footer-brand p { font-size: 0.94rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-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.55rem; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 0.6rem; font-size: 0.95rem; align-items: baseline; }
.footer-contact svg { width: 1rem; height: 1rem; color: var(--amber); flex: none; transform: translateY(3px); }
.footer-affil {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.footer-affil a { color: var(--amber); font-weight: 600; }
.footer-affil a:hover { color: #ffbf4d; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- 20. Reveal-on-scroll ---------- */
/* Hidden only when JS is active; without JS, content stays visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }
.js .reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ---------- 21. Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.6rem; }
.mb-2 { margin-bottom: 1rem; }
.stack > * + * { margin-top: 1rem; }
.hide-on-mobile { }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 5vw, 3rem); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--amber-tint);
  color: var(--amber-700);
}
.note-card {
  background: var(--amber-tint);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}
.note-card strong { color: var(--ink); }

/* ---------- 22. Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem var(--pad) 1.4rem;
    gap: 0.2rem;
    transform: translateY(-130%);
    transition: transform 0.32s ease;
    box-shadow: var(--shadow);
    z-index: 90;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { padding: 0.85rem 0.6rem; font-size: 1.05rem; border-radius: 10px; border-bottom: 1px solid var(--line-soft); }
  .nav a[aria-current="page"] { background: var(--amber-tint); }

  .hero-inner { grid-template-columns: 1fr; padding-block: clamp(2.8rem, 7vw, 4rem); }
  .hero-ticket { max-width: 420px; }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 240px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band h2 { text-align: center; }
  .cta-band .btn-row { justify-content: center; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 0.9rem; }
  .btn { width: 100%; }
  .hero-actions .btn,
  .cta-band .btn-row .btn { width: 100%; }
  .btn-row { width: 100%; }
}

/* ---------- 22b. Service panels (services page) ---------- */
.svc-head {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.svc-head__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: inset 0 0 0 1.5px var(--teal-700);
}
.svc-head__icon svg { width: 28px; height: 28px; }
.svc-head__text { flex: 1; }
.svc-head__text h2 { font-size: var(--fs-h3); margin: 0.3rem 0 0; }
.svc-head__text p { color: var(--text-muted); margin-top: 0.6rem; max-width: 60ch; }
.svc-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.svc-col {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.svc-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.svc-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.svc-col li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text);
}
.svc-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 2px;
  background: var(--amber);
}
.svc-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; margin-top: 1.4rem; }
.svc-anchor { display: block; position: relative; top: 0; }

/* ---------- 23. 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;
  }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .status .dot { animation: none; }
}
