/* ==========================================================================
   Dubai Handyman Co. — styles.css
   Design system: petrol-ink + amber, work-order/ticket motif.
   Bricolage Grotesque (display) · Manrope (body) · JetBrains Mono (utility)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --ink: #0c1a2b;
  --ink-2: #102438;
  --petrol: #14324a;
  --petrol-2: #1c4163;
  --amber: #f5a524;
  --amber-deep: #d98312;
  --amber-soft: #fce6bd;
  --amber-tint: #fff6e2;
  --mist: #eef2f6;
  --mist-2: #e3e9ef;
  --cloud: #ffffff;
  --paper: #fbfcfd;
  --slate: #33425a;
  --slate-mute: #5b6878;
  --line: #dde4ec;
  --line-dark: rgba(255, 255, 255, 0.12);
  --whatsapp: #25d366;
  --whatsapp-deep: #1da851;

  /* type */
  --ff-display: "Bricolage Grotesque", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Manrope", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* fluid type scale */
  --fs-display: clamp(2.5rem, 6vw, 4.6rem);
  --fs-h1: clamp(2.05rem, 4.4vw, 3.15rem);
  --fs-h2: clamp(1.55rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-lead: clamp(1.075rem, 1.5vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-mono: 0.78rem;

  /* spacing */
  --space-xs: 0.5rem;
  --space-s: 0.875rem;
  --space-m: 1.5rem;
  --space-l: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;

  /* shape + shadow */
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(12, 26, 43, 0.06), 0 2px 8px rgba(12, 26, 43, 0.05);
  --shadow: 0 6px 18px rgba(12, 26, 43, 0.08), 0 18px 40px rgba(12, 26, 43, 0.07);
  --shadow-lg: 0 18px 40px rgba(12, 26, 43, 0.16);

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

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--slate);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
  line-height: 1.12;
}
h3 {
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 var(--space-m);
}
.lead {
  font-size: var(--fs-lead);
  color: var(--slate);
}
strong {
  color: var(--ink);
  font-weight: 700;
}
.mono {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.section {
  padding-block: clamp(var(--space-xl), 6vw, var(--space-2xl));
}
.section--mist {
  background: var(--mist);
}
.section--ink {
  background: var(--ink);
  color: #c7d2e0;
}
.section--ink h2,
.section--ink h3 {
  color: #fff;
}
.section-head {
  max-width: 680px;
  margin-bottom: clamp(var(--space-l), 4vw, 3.25rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section--ink .eyebrow {
  color: var(--amber);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.section-head.center .eyebrow::before {
  display: none;
}
.section-head h2 {
  margin-bottom: 0.85rem;
}
.section-head p {
  color: var(--slate-mute);
  font-size: 1.075rem;
}
.section--ink .section-head p {
  color: #9fb0c4;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  background: var(--bg);
  color: var(--fg);
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  --bg: var(--amber);
  --fg: var(--ink);
}
.btn--primary:hover {
  --bg: var(--amber-deep);
  --fg: #fff;
}
.btn--whatsapp {
  --bg: var(--whatsapp);
  --fg: #04230f;
}
.btn--whatsapp:hover {
  --bg: var(--whatsapp-deep);
  --fg: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn--light {
  --bg: #fff;
  --fg: var(--ink);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: var(--line-dark);
  box-shadow: none;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn--lg {
  padding: 1.1rem 1.85rem;
  font-size: 1.075rem;
}
.btn--block {
  width: 100%;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* phone pill */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--ink);
}
.phone-pill svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--amber-deep);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 10px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(245, 165, 36, 0.55);
  border-radius: 7px;
}
.brand-mark svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
  z-index: 1;
}
.brand-name {
  font-size: 1.12rem;
}
.brand-name b {
  display: block;
}
.brand-name span {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-mute);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--slate);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--mist);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-call small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mute);
  font-weight: 600;
}
.nav-call b {
  font-family: var(--ff-body);
  font-size: 0.98rem;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #c7d2e0;
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}
.hero::before {
  /* blueprint grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 80% 10%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  /* amber glow */
  content: "";
  position: absolute;
  top: -18%;
  right: -8%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.28), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow {
  color: var(--amber);
}
.hero h1 {
  color: #fff;
  font-size: var(--fs-display);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  color: var(--amber);
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  font-size: var(--fs-lead);
  color: #b3c2d4;
  max-width: 38ch;
  margin-bottom: 1.9rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #c7d2e0;
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex: none;
}

/* work-order ticket card (signature) */
.ticket {
  background: var(--cloud);
  color: var(--slate);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  font-size: 0.95rem;
}
.ticket::before {
  /* perforation across top */
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 0;
  border-top: 2px dashed var(--line);
}
.ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.ticket__head .mono {
  color: var(--slate-mute);
}
.ticket__status {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--whatsapp-deep);
  background: rgba(37, 211, 102, 0.14);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ticket__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2.4s infinite;
}
.ticket__body {
  padding: 1.5rem 1.3rem 1.3rem;
}
.ticket h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.ticket__meta {
  color: var(--slate-mute);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.ticket__list {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.ticket__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.ticket__list svg {
  width: 17px;
  height: 17px;
  color: var(--amber-deep);
  flex: none;
  margin-top: 2px;
}
.ticket__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.ticket__foot .mono {
  color: var(--slate-mute);
  font-size: 0.7rem;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

.service-card {
  position: relative;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.service-ico {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--amber-tint);
  color: var(--amber-deep);
}
.service-ico svg {
  width: 26px;
  height: 26px;
}
.service-card__top .mono {
  color: var(--slate-mute);
  opacity: 0.7;
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}
.service-card p {
  color: var(--slate-mute);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: gap 0.25s var(--ease), color 0.2s var(--ease);
}
.service-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-card__link {
  color: var(--amber-deep);
  gap: 0.6rem;
}
.service-card:hover .service-card__link svg {
  transform: translateX(2px);
}

/* ---------- Why choose us / features ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 1.1rem;
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--cloud);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.feature:hover {
  border-color: var(--amber);
  transform: translateX(3px);
}
.feature-ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--amber);
}
.feature-ico svg {
  width: 22px;
  height: 22px;
}
.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate-mute);
}

/* why visual panel */
.why-panel {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  color: #c7d2e0;
  position: relative;
  overflow: hidden;
}
.why-panel::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.22), transparent 60%);
}
.why-panel > * {
  position: relative;
  z-index: 1;
}
.why-panel h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.why-panel p {
  color: #b3c2d4;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.why-stat {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}
.why-stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.85rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.why-stat span {
  font-size: 0.85rem;
  color: #9fb0c4;
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.6rem 1.3rem;
  border-radius: var(--radius);
  background: var(--cloud);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber-deep);
  background: var(--amber-tint);
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate-mute);
}
.steps-arrows {
  display: none;
}

/* ---------- Service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  font-size: 0.92rem;
  color: #c7d2e0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.area-chip:hover {
  background: rgba(245, 165, 36, 0.12);
  color: #fff;
}
.area-chip svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
  flex: none;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(12, 26, 43, 0.22);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.cta-band p {
  margin: 0;
  color: rgba(12, 26, 43, 0.78);
  max-width: 46ch;
}
.cta-band .btn-row {
  justify-content: flex-end;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}
.faq-item {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] {
  border-color: var(--amber);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q .icon {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
}
.faq-q .icon::before {
  width: 12px;
  height: 2px;
}
.faq-q .icon::after {
  width: 2px;
  height: 12px;
}
.faq-item[open] .faq-q .icon {
  background: var(--amber);
  border-color: var(--amber);
}
.faq-item[open] .faq-q .icon::after {
  transform: rotate(90deg);
}
.faq-item[open] .faq-q .icon::before,
.faq-item[open] .faq-q .icon::after {
  background: var(--ink);
}
.faq-a {
  padding: 0 1.3rem 1.3rem;
  color: var(--slate-mute);
}
.faq-a p:last-child {
  margin-bottom: 0;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #c7d2e0;
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(100% 100% at 15% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(100% 100% at 15% 0%, #000 20%, transparent 75%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ba0b8;
  margin-bottom: 1.2rem;
}
.breadcrumbs a:hover {
  color: var(--amber);
}
.breadcrumbs span {
  color: var(--slate-mute);
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.9rem;
}
.page-hero p {
  color: #b3c2d4;
  font-size: var(--fs-lead);
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

/* ---------- Services detail (services.html) ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px dashed var(--line);
}
.svc-block:last-child {
  border-bottom: 0;
}
.svc-block:nth-child(even) .svc-block__media {
  order: 2;
}
.svc-block__media {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
  min-height: 240px;
  display: grid;
  place-items: center;
  position: relative;
}
.svc-block__media .ill {
  width: 100%;
  height: 100%;
  min-height: 240px;
}
.svc-ico-lg {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.svc-ico-lg svg {
  width: 38px;
  height: 38px;
}
.svc-block h2 {
  margin-bottom: 0.5rem;
}
.svc-block .lead {
  margin-bottom: 1.4rem;
}
.svc-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.2rem;
  margin: 1.2rem 0 1.5rem;
}
.svc-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.svc-includes svg {
  width: 18px;
  height: 18px;
  color: var(--whatsapp-deep);
  flex: none;
  margin-top: 3px;
}
.svc-when {
  background: var(--amber-tint);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.1rem;
  font-size: 0.94rem;
  margin-bottom: 1.3rem;
}
.svc-when b {
  color: var(--amber-deep);
}

/* ---------- About ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cloud);
  border: 1px solid var(--line);
}
.value-card .num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--amber-deep);
  font-weight: 700;
}
.value-card h3 {
  margin: 0.6rem 0 0.4rem;
}
.value-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--slate-mute);
}
.story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-badge {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.story-badge .label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-mute);
  margin-bottom: 0.8rem;
}
.story-badge h3 {
  margin-bottom: 0.5rem;
}
.story-badge p {
  font-size: 0.96rem;
  color: var(--slate-mute);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-card {
  text-align: center;
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius);
  background: var(--cloud);
  border: 1px solid var(--line);
}
.team-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--ink);
  color: var(--amber);
  display: grid;
  place-items: center;
}
.team-card .avatar svg {
  width: 30px;
  height: 30px;
}
.team-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}
.team-card .role {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--slate-mute);
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-form {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field label .req {
  color: var(--amber-deep);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-info {
  display: grid;
  gap: 0.9rem;
}
.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--line);
}
.info-card .ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  background: var(--ink);
  color: var(--amber);
  display: grid;
  place-items: center;
}
.info-card .ico svg {
  width: 22px;
  height: 22px;
}
.info-card .label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mute);
  display: block;
  margin-bottom: 0.2rem;
}
.info-card b,
.info-card a {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 700;
}
.info-card a:hover {
  color: var(--amber-deep);
}
.info-card p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--slate-mute);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #9fb0c4;
  padding-top: clamp(2.8rem, 5vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.93rem;
  color: #9fb0c4;
  max-width: 36ch;
  margin-bottom: 1.2rem;
}
.footer-affil {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
  color: #c7d2e0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-affil:hover {
  background: rgba(245, 165, 36, 0.1);
  border-color: var(--amber);
}
.footer-affil svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex: none;
}
.footer-affil b {
  color: #fff;
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.93rem;
  color: #9fb0c4;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--amber);
}
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.93rem;
  margin-bottom: 0.7rem;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
  flex: none;
  margin-top: 3px;
}
.footer-contact b {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.85rem;
}
.footer-bottom a:hover {
  color: var(--amber);
}
.footer-bottom .links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mt-l {
  margin-top: var(--space-l);
}
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-card-col {
    order: 2;
    max-width: 460px;
  }
  .split,
  .story-split,
  .contact-grid,
  .svc-block,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .cta-band .btn-row {
    justify-content: flex-start;
  }
  .svc-block:nth-child(even) .svc-block__media {
    order: 0;
  }
  .svc-block__media {
    position: static;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .nav-links,
  .nav-call {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  /* mobile nav drawer */
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--cloud);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.3rem 2rem;
    gap: 0.3rem;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-links.mobile-open a {
    padding: 1rem 0.8rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-cta .btn--ghost {
    display: none;
  }
}
@media (max-width: 620px) {
  .grid--3,
  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr;
  }
  .svc-includes {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    gap: 0.9rem 1.4rem;
  }
}

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