/* ==========================================================================
   Dubai Maintenance 247 — styles.css
   Design direction: "Dispatch console meets Dubai dusk."
   Warm sand paper, deep petrol teal, safety-amber signal, mono dispatch labels.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --ink: #0c1a22;          /* near-black blue: text + dark surfaces */
  --ink-2: #122833;        /* raised dark surface */
  --ink-3: #1b3a47;        /* hairlines on dark */
  --paper: #faf7f1;        /* warm sandy white: page bg */
  --paper-2: #f3ecdf;      /* sand neutral: alt sections */
  --paper-3: #efe6d4;      /* deeper sand: cards */
  --sand: #e3d8c2;         /* warm borders */
  --sand-2: #d8caac;       /* (reserved) */
  --teal: #0a5562;         /* primary brand: trust */
  --teal-2: #0e6e7c;       /* teal hover */
  --teal-ink: #073f49;     /* deep teal for dark-on-teal text */
  --teal-tint: #e3edef;    /* teal-tinted light bg */
  --amber: #e8701a;        /* signal accent / primary CTA */
  --amber-2: #c95d0f;      /* amber hover */
  --amber-soft: #fdead3;   /* (reserved) */
  --slate: #51616b;        /* secondary text */
  --slate-2: #6b7a83;      /* muted */
  --whats: #25d366;        /* WhatsApp green */
  --whats-2: #1da851;      /* WhatsApp hover */
  --white: #ffffff;

  /* Typography */
  --font-display: "Space Grotesk", "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;

  /* Type scale */
  --t-display-xl: clamp(2.6rem, 1.4rem + 5.4vw, 4.6rem);
  --t-display-l: clamp(2.05rem, 1.2rem + 3.4vw, 3.1rem);
  --t-h2: clamp(1.55rem, 1.05rem + 2vw, 2.25rem);
  --t-h3: 1.28rem;
  --t-body: 1.0625rem;
  --t-small: 0.92rem;
  --t-mono: 0.76rem;

  /* Spacing */
  --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: 4.5rem;
  --s-9: 7rem;

  /* Shape & motion */
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --ring: 0 0 0 3px rgba(10, 85, 98, 0.28);
  --ring-amber: 0 0 0 3px rgba(232, 112, 26, 0.35);
  --shadow-sm: 0 1px 2px rgba(12, 26, 34, 0.06), 0 4px 14px rgba(12, 26, 34, 0.06);
  --shadow-md: 0 6px 22px rgba(12, 26, 34, 0.10);
  --shadow-lg: 0 18px 50px rgba(12, 26, 34, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
@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; }
}
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
  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 { color: var(--teal-2); }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.15rem; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }
hr { border: 0; height: 1px; background: var(--sand); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #e7eef0; }
.section--ink a { color: #f4c98a; }
.section--teal { background: var(--teal); color: #eaf3f4; }
.section--teal a { color: #ffe9cf; }

.stack > * + * { margin-top: var(--s-4); }
.measure { max-width: 60ch; }
.measure-narrow { max-width: 46ch; }

/* Mono dispatch labels — the signature ticket-tag system */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-2);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--amber);
  display: inline-block;
  transform: rotate(45deg);
  flex: none;
}
.eyebrow--ink { color: #f4c98a; }
.eyebrow--plain::before { display: none; }
.section--ink .eyebrow { color: #f4c98a; }
.section--ink .eyebrow::before { background: var(--amber); }

.tag-mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
.section--ink h1, .section--ink h2, .section--ink h3,
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--white); }
h1 { font-size: var(--t-display-xl); }
h2 { font-size: var(--t-display-l); }
.h2 { font-size: var(--t-display-l); }
h3 { font-size: var(--t-h3); letter-spacing: -0.01em; }
.lead { font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.35rem); line-height: 1.55; color: var(--slate); font-weight: 400; }
.section--ink .lead, .section--teal .lead { color: #d3e0e3; }
p { color: inherit; }
.strong { color: var(--ink); font-weight: 600; }

/* ---------- Section heading block ---------- */
.shead { max-width: 60ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.shead .eyebrow { margin-bottom: 0.9rem; }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal);
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  padding: 0.82em 1.35em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid transparent;
  text-align: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s var(--ease);
  will-change: transform;
}
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.1em; height: 1.1em; flex: none; }

.btn--amber { --bg: var(--amber); --fg: #2a1505; }
.btn--amber:hover { --bg: var(--amber-2); --fg: var(--white); }
.btn--whats { --bg: var(--whats); --fg: #05351c; }
.btn--whats:hover { --bg: var(--whats-2); --fg: var(--white); }
.btn--ink { --bg: var(--ink); --fg: var(--white); }
.btn--ink:hover { --bg: #1c3441; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--sand); }
.btn--ghost:hover { --bg: var(--paper-3); --fg: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost-light { --bg: transparent; --fg: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { --bg: rgba(255,255,255,0.1); --fg: var(--white); }
.btn--lg { padding: 1em 1.7em; font-size: 1.08rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal);
}
.link-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover { color: var(--amber-2); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--sand);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: 70px;
  padding-block: 0.55rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: var(--amber);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-size: 1.04rem; letter-spacing: -0.02em; }
.brand-name em {
  font-style: normal;
  color: var(--amber-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92em;
  letter-spacing: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.4vw, 1.5rem);
}
.nav a {
  position: relative;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.4em 0.2em;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transition: right 0.25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--amber-2); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-phone {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header-phone .lbl { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--sand);
  background: var(--white);
  border-radius: 10px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .header-phone { display: none; }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.1rem, 4vw, 2.2rem) 1.5rem;
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a {
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--paper-3);
    font-size: 1.05rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .header-actions .btn--amber .lbl-full { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding-top: clamp(2rem, 5vw, 3.6rem);
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle at 70% 30%, rgba(232,112,26,0.10), transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(10,85,98,0.10), transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  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(1.5rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
}
.hero h1 { margin-top: 1.1rem; }
.hero h1 .accent { color: var(--amber-2); }
.hero h1 .mono-bit {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0;
  font-size: 0.82em;
}
.hero-lead { margin-top: 1.4rem; max-width: 52ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }
.hero-trust {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--slate);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45em; }
.hero-trust svg { width: 16px; height: 16px; color: var(--teal); }

/* Hero dispatch panel — the signature card */
.dispatch {
  background: var(--ink);
  color: #e7eef0;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-3);
  position: relative;
}
.dispatch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--ink-3);
  margin-bottom: 1.1rem;
}
.dispatch-head .eyebrow { color: #f4c98a; }
.dispatch-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: #bfe3c4;
}
.dispatch-status .dot {
  width: 9px; height: 9px;
  background: var(--whats);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.dispatch dl { display: grid; gap: 0.55rem; margin: 0; }
.dispatch .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dispatch .row:last-of-type { border-bottom: 0; }
.dispatch dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb3bb;
}
.dispatch dd { margin: 0; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.02rem; text-align: right; }
.dispatch dd .unit { color: #9fb3bb; font-weight: 400; font-size: 0.84rem; }
.dispatch-foot {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
}
.dispatch-foot .btn { flex: 1; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dispatch { order: 2; }
}

/* ---------- Dispatch ticker bar ---------- */
.ticker {
  background: var(--ink);
  color: #cdd9dc;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  overflow: hidden;
  border-block: 1px solid var(--ink-3);
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 2.5rem;
  padding: 0.6rem 0;
  animation: scroll-x 32s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 0.6em; }
.ticker-track .sep { color: var(--amber); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Service cards grid ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--areas { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-tint); }

.service-card { display: flex; flex-direction: column; gap: 0.7rem; }
.service-card .svc-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: 12px;
  margin-bottom: 0.3rem;
}
.service-card .svc-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.18rem; }
.service-card p { color: var(--slate); font-size: 0.98rem; }
.service-card .num {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sand);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.service-card .link-arrow { margin-top: auto; padding-top: 0.4rem; }
.card:hover .svc-ico { background: var(--amber); color: #2a1505; }

/* ---------- Why-choose / feature blocks ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.feature { padding: 0.2rem; }
.feature .f-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--amber);
  border-radius: 11px;
  margin-bottom: 1rem;
}
.feature .f-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.feature p { color: var(--slate); font-size: 0.98rem; }

/* ---------- Process steps (genuine sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); counter-reset: step; }
.step { position: relative; padding-top: 0.5rem; }
.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--amber-2);
  display: inline-block;
  padding: 0.3em 0.7em;
  border: 1.5px solid var(--amber);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { color: var(--slate); font-size: 0.96rem; }
.step::after {
  content: "";
  position: absolute;
  top: 1.1rem; right: -0.9rem;
  width: 1.4rem; height: 2px;
  background: var(--sand);
}
.step:last-child::after { display: none; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Areas chips ---------- */
.area-chip {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 0.6em 1.1em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: center;
  transition: all 0.22s var(--ease);
}
.area-chip:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #e7eef0;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(232,112,26,0.16), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: #c8d6da; }
.cta-band .eyebrow { color: #f4c98a; }
.cta-actions { display: flex; flex-direction: column; gap: 0.8rem; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Split / two-col content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.media-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal);
  min-height: 320px;
  position: relative;
  border: 1px solid var(--teal-ink);
}
.media-panel svg { width: 100%; height: 100%; display: block; }

/* ---------- Checklists ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--slate);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "";
  width: 20px; height: 20px;
  margin-top: 0.18em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a5562' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.section--ink .checklist li { color: #cdd9dc; }
.section--ink .checklist li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8701a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 60ch; }
.faq-list--wide { max-width: none; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.is-open { border-color: var(--teal-tint); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}
.faq-q:hover { color: var(--teal); }
.faq-q .ico {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  color: var(--amber-2);
  transition: transform 0.3s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-q .ico svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); background: var(--amber); color: #2a1505; border-color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--slate); }
.faq-a-inner p + p { margin-top: 0.7rem; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.9rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat .lbl {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.section--ink .stat .lbl { color: #9fb3bb; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #e7eef0;
  padding-block: clamp(2.6rem, 6vw, 4.4rem) clamp(2.2rem, 5vw, 3.4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(232,112,26,0.14), transparent 50%),
              radial-gradient(circle at 10% 100%, rgba(10,85,98,0.30), transparent 45%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: #c8d6da; max-width: 56ch; margin-top: 1rem; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: #9fb3bb;
  margin-bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.breadcrumb a { color: #c8d6da; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: var(--amber); }

/* ---------- Service detail sections (services.html) ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-top: 1px solid var(--sand);
}
.svc-block:first-of-type { border-top: 0; }
.svc-block:nth-child(even) .svc-media { order: 2; }
@media (max-width: 820px) {
  .svc-block { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-media { order: 0; }
}
.svc-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  position: sticky;
  top: 90px;
}
.svc-body .svc-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--amber-2);
  font-weight: 700;
}
.svc-body h2 { margin: 0.5rem 0 0.8rem; }
.svc-body > p { color: var(--slate); margin-bottom: 1.3rem; }
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin-bottom: 1.4rem; }
@media (max-width: 560px) { .svc-cols { grid-template-columns: 1fr; } }
.svc-cols h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.svc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--sand);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channels { display: grid; gap: 0.9rem; }
.channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.channel:hover { border-color: var(--teal-tint); transform: translateY(-2px); }
.channel .c-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--teal-tint);
  color: var(--teal);
  border-radius: 11px;
}
.channel .c-ico svg { width: 24px; height: 24px; }
.channel .c-lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-2); }
.channel .c-val { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.form-row label .req { color: var(--amber-2); }
.form-control {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.form-control:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: var(--ring); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23516616b' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; padding-right: 2.4rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px) { .form-grid-2 { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: 0.85rem; color: var(--slate-2); margin-top: 0.8rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--sand); font-size: 0.96rem; }
.hours-table th { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; }
.hours-table td { color: var(--ink); font-weight: 500; }
.hours-table td.now { color: var(--whats-2); font-family: var(--font-mono); }

/* ---------- About ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.value-card { background: var(--white); border: 1px solid var(--sand); border-left: 4px solid var(--amber); border-radius: var(--radius-sm); padding: 1.4rem 1.5rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--slate); font-size: 0.96rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.team-card { text-align: left; }
.team-card .avatar {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--teal-tint);
  border: 1px solid var(--sand);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.team-card .avatar svg { width: 46%; height: 46%; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 0.1rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-2); }

/* ET affiliation card */
.affiliate {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--teal);
  color: #eaf3f4;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--teal-ink);
}
.affiliate .a-mark {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  flex: none;
}
.affiliate .a-mark svg { width: 38px; height: 38px; }
.affiliate h3 { color: #fff; }
.affiliate p { color: #d3e0e3; }
.affiliate a { color: #ffe9cf; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 620px) { .affiliate { grid-template-columns: 1fr; } .affiliate .a-mark { width: 56px; height: 56px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aab9bf;
  padding-block: clamp(2.6rem, 5vw, 4rem) 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark { background: var(--teal); color: var(--amber); }
.footer-brand p { color: #93a6ac; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4c98a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #c2d0d5; font-size: 0.95rem; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; align-items: start; color: #c2d0d5; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); margin-top: 0.15em; }
.footer-contact a { color: #c2d0d5; }
.footer-bottom {
  border-top: 1px solid var(--ink-3);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7e929a;
}
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.footer-bottom a { color: #93a6ac; }
.footer-bottom a:hover { color: var(--amber); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
.reveal[data-delay="5"] { transition-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 0.8rem; top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.8rem; color: #fff; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0; }
.hide-sm { }
@media (max-width: 600px) { .hide-sm { display: none !important; } }
.rounded { border-radius: var(--radius); }
.divider { height: 1px; background: var(--sand); border: 0; margin-block: clamp(2rem, 4vw, 3rem); }
.note { font-size: 0.88rem; color: var(--slate-2); }
