/* ==========================================================================
   Dubai Flat Services — styles.css
   A warm Gulf-technical design system.
   Palette: deep petrol-navy ink, light warm paper, sand, honey accent, petrol-teal.
   Type:    Bricolage Grotesque (display) · Hanken Grotesk (body) · IBM Plex Mono (labels)
   Signature: service-ticket / floor-plan line motif.
   ========================================================================== */

/* Fonts are loaded via <link> in each HTML <head> for performance. */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --ink:      #0E2A36;   /* deep petrol-navy — primary dark / brand */
  --ink-2:    #143646;   /* lifted ink for cards on dark */
  --paper:    #FAF8F3;   /* warm ivory — main background */
  --paper-2:  #F3EEE3;   /* slightly deeper warm panel */
  --sand:     #ECE3D2;   /* warm sand — secondary surface */
  --sand-2:   #E2D6BF;   /* sand border / hairline on light */
  --honey:    #DD9933;   /* warm amber — primary accent / CTA */
  --honey-d:  #C2811F;   /* honey pressed/hover */
  --honey-l:  #F0B768;   /* honey highlight */
  --teal:     #1E6B78;   /* petrol-teal — secondary accent / links */
  --teal-d:   #175660;
  --charcoal: #243138;   /* body text on light */
  --muted:    #67707A;   /* secondary text on light */
  --muted-d:  #9AA7AE;   /* secondary text on dark */
  --line:     rgba(14, 42, 54, 0.12);
  --line-d:   rgba(250, 248, 243, 0.16);
  --white:    #FFFFFF;

  /* Type families */
  --ff-display: "Bricolage Grotesque", "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-body:    "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Type scale (fluid, mobile-first) */
  --fs-300: clamp(0.78rem, 0.76rem + 0.1vw, 0.85rem);
  --fs-400: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  --fs-500: clamp(1.08rem, 1.02rem + 0.3vw, 1.25rem);
  --fs-600: clamp(1.3rem, 1.18rem + 0.6vw, 1.7rem);
  --fs-700: clamp(1.7rem, 1.45rem + 1.2vw, 2.6rem);
  --fs-800: clamp(2.2rem, 1.7rem + 2.4vw, 3.8rem);
  --fs-900: clamp(2.7rem, 1.9rem + 4vw, 5.4rem);

  /* Spacing */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.85rem;
  --space-sm:  1.15rem;
  --space-md:  1.8rem;
  --space-lg:  3rem;
  --space-xl:  4.75rem;
  --space-2xl: 7rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 54, 0.06), 0 2px 8px rgba(14, 42, 54, 0.05);
  --shadow:    0 6px 18px rgba(14, 42, 54, 0.08), 0 2px 6px rgba(14, 42, 54, 0.06);
  --shadow-lg: 0 24px 50px rgba(14, 42, 54, 0.14);

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

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html:focus-within { scroll-padding-top: calc(var(--header-h) + 1rem); }

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

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--teal-d); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

ul[class] { list-style: none; padding: 0; }

/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 200;
}
.skip-link:focus {
  position: fixed;
  top: 0.7rem; left: 0.7rem;
  width: auto; height: auto;
  padding: 0.7em 1.1em;
  background: var(--honey);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* Visible focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-900); font-weight: 800; }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-500); font-weight: 600; }
p { text-wrap: pretty; }
p + p { margin-top: var(--space-sm); }

.lead {
  font-size: var(--fs-500);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

/* Eyebrow / mono label — the "service ticket" voice */
.eyebrow,
.mono-label {
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-d);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}
.eyebrow.is-center::before { display: none; }

.text-honey { color: var(--honey-d); }
.text-teal { color: var(--teal-d); }
.text-ink { color: var(--ink); }
.text-paper { color: var(--paper); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.2rem, 7vw, var(--space-2xl)); position: relative; }
.section.sm { padding-block: clamp(2.4rem, 5vw, var(--space-xl)); }
.section.ink { background: var(--ink); color: var(--paper); }
.section.ink h1, .section.ink h2, .section.ink h3, .section.ink h4 { color: var(--paper); }
.section.ink .lead { color: var(--muted-d); }
.section.ink .eyebrow { color: var(--honey-l); }
.section.sand { background: var(--sand); }
.section.paper-2 { background: var(--paper-2); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-2xs); }
.section-head .lead { margin-top: var(--space-sm); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-400);
  line-height: 1;
  padding: 0.95em 1.5em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease), border-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 { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-honey   { --btn-bg: var(--honey); --btn-fg: var(--ink); box-shadow: 0 6px 18px rgba(221, 153, 51, 0.32); }
.btn-honey:hover { --btn-bg: var(--honey-d); }
.btn-call    { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn-call:hover { --btn-bg: #0b222c; }
.btn-wa      { --btn-bg: #25D366; --btn-fg: #04210f; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32); }
.btn-wa:hover { --btn-bg: #1fb858; }
.btn-ghost   { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--sand-2); box-shadow: none; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(14,42,54,0.04); }
.btn-ghost.on-dark { --btn-fg: var(--paper); border-color: var(--line-d); }
.btn-ghost.on-dark:hover { border-color: var(--honey); background: rgba(221,153,51,0.08); }
.btn-lg { font-size: var(--fs-500); padding: 1.1em 1.8em; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2xs) var(--space-sm); align-items: center; }
.btn-row .or { font-family: var(--ff-mono); font-size: var(--fs-300); color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px;
  flex: none;
  display: grid; place-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: var(--honey-l);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-text em { font-style: normal; color: var(--honey-d); }

.main-nav { display: flex; align-items: center; }
#nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.4vw, 1.5rem);
}
#nav-menu a {
  font-weight: 500;
  font-size: var(--fs-400);
  color: var(--charcoal);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease);
}
#nav-menu a::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.25rem;
  height: 2px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}
#nav-menu a:hover { color: var(--ink); }
#nav-menu a:hover::after,
#nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
#nav-menu a[aria-current="page"] { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: var(--space-2xs); }
.btn-call .num { font-family: var(--ff-mono); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--sand-2);
  background: var(--paper);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.hero::before {
  /* faint floor-plan grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,42,54,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,42,54,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 80% 10%, #000 10%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 80% 10%, #000 10%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 38rem; }
.hero h1 { margin-top: var(--space-sm); }
.hero h1 .accent { color: var(--honey-d); font-style: italic; font-weight: 700; }
.hero .lead { margin-top: var(--space-md); max-width: 34ch; }
.hero .btn-row { margin-top: var(--space-md); }
.hero-quick {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-quick b { display: flex; align-items: center; gap: 0.5em; color: var(--ink); font-weight: 600; }
.hero-quick b::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--honey); }

/* Hero ticket card with floor-plan */
.hero-visual { position: relative; }
.ticket {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.ticket::after {
  /* perforation strip */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 56px;
  height: 1px;
  background-image: linear-gradient(to right, var(--line-d) 50%, transparent 50%);
  background-size: 10px 1px;
}
.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.ticket-top .mono-label { color: var(--honey-l); }
.ticket-top .badge {
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--honey);
  padding: 0.35em 0.7em;
  border-radius: 999px;
  font-weight: 600;
}
.floorplan {
  width: 100%;
  height: auto;
  color: var(--paper);
  margin-block: 0.4rem 1.1rem;
}
.floorplan .room { fill: rgba(240,183,104,0.05); stroke: var(--muted-d); stroke-width: 1.4; }
.floorplan .wall { stroke: var(--paper); stroke-width: 2.2; stroke-linecap: round; }
.floorplan .door { fill: none; stroke: var(--honey-l); stroke-width: 1.3; }
.floorplan .label { font-family: var(--ff-mono); font-size: 9px; fill: var(--muted-d); letter-spacing: 0.08em; text-transform: uppercase; }
.floorplan .pin { fill: var(--honey); }
.floorplan .pin-txt { font-family: var(--ff-mono); font-size: 10px; font-weight: 600; fill: var(--ink); }

.ticket-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  border-top: 1px dashed var(--line-d);
  padding-top: 1rem;
}
.ticket-meta dt { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-d); }
.ticket-meta dd { font-weight: 600; font-size: var(--fs-400); margin-top: 0.2rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding-block: var(--space-md);
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; color: var(--charcoal); font-weight: 500; }
.trust-item svg { width: 26px; height: 26px; color: var(--teal); flex: none; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--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;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand-2); }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--sand);
  border-radius: 12px;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: var(--honey); color: var(--ink); }
.card h3 { margin-bottom: var(--space-3xs); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--honey-d); text-decoration: none; }
.card p { color: var(--muted); font-size: var(--fs-400); margin-top: var(--space-2xs); }
.card .card-foot {
  margin-top: var(--space-sm);
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.06em;
  color: var(--teal-d);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  text-transform: uppercase;
}
.card .card-foot::after { content: "→"; transition: transform 0.25s var(--ease); }
.card:hover .card-foot::after { transform: translateX(4px); }

.card .num-tag {
  position: absolute;
  top: 1.2rem; right: 1.3rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  color: var(--sand-2);
  letter-spacing: 0.08em;
}

/* ---------- Service detail blocks (services.html) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: none; }
.service-block:nth-child(even) .service-body { order: -1; }
.service-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.service-aside .svc-num {
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  color: var(--honey-d);
  letter-spacing: 0.16em;
}
.service-aside h2 { margin-top: var(--space-2xs); }
.service-aside .lead { margin-top: var(--space-2xs); }
.service-aside .btn-row { margin-top: var(--space-md); }

.service-body h3 { margin-top: var(--space-md); color: var(--ink); }
.service-body h3:first-child { margin-top: 0; }
.service-body ul.checks { display: grid; gap: 0.6rem; margin-top: var(--space-2xs); }
.service-body ul.checks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--charcoal);
}
.service-body ul.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 1.05rem; height: 1.05rem;
  border: 1.5px solid var(--honey);
  border-radius: 4px;
  background: radial-gradient(circle at center, var(--honey) 0 30%, transparent 32%);
}
.callout {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--sand);
  border-left: 4px solid var(--honey);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout .mono-label { color: var(--teal-d); }
.callout p { margin-top: var(--space-2xs); color: var(--charcoal); }

/* ---------- Why choose / feature rows ---------- */
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  height: 100%;
}
.feature .card-icon { background: var(--ink); color: var(--honey-l); }
.feature:hover .card-icon { background: var(--honey); color: var(--ink); }
.feature h3 { font-size: var(--fs-500); }
.feature p { color: var(--muted); margin-top: var(--space-2xs); }

/* ---------- Process steps (numbered — real sequence) ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.step {
  position: relative;
  background: rgba(250, 248, 243, 0.06);
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
}
.step .step-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--honey);
}
.step h3 { color: var(--paper); margin-top: var(--space-2xs); font-size: var(--fs-600); }
.step p { color: var(--muted-d); margin-top: var(--space-2xs); }

/* ---------- Service areas chips ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6em 1.1em;
  font-weight: 500;
  font-size: var(--fs-400);
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}
.area-chip::before { content: "✦"; color: var(--honey); font-size: 0.8em; }
.area-chip:hover { transform: translateY(-2px); border-color: var(--honey); color: var(--ink); text-decoration: none; }
.areas-ink .area-chip { background: rgba(250,248,243,0.05); border-color: var(--line-d); color: var(--paper); }
.areas-ink .area-chip:hover { color: var(--paper); border-color: var(--honey); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: var(--space-2xs); max-width: 60rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--sand-2); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  width: 100%;
}
.faq-q::-webkit-details-marker,
.faq-q::marker { display: none; }
.faq-q {
  gap: 1rem;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1.1rem, 2vw, 1.5rem);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-500);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--honey-d); }
.faq-q .faq-toggle {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--sand-2);
  display: grid; place-items: center;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.faq-q .faq-toggle::before,
.faq-q .faq-toggle::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.faq-q .faq-toggle::before { width: 12px; height: 2px; }
.faq-q .faq-toggle::after  { width: 2px; height: 12px; }
.faq-item[open] .faq-toggle { background: var(--honey); border-color: var(--honey); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: var(--ink); }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 clamp(1.1rem, 2vw, 1.5rem) clamp(1.1rem, 2vw, 1.5rem);
  color: var(--muted);
  max-width: 70ch;
}
.faq-a p + p { margin-top: var(--space-2xs); }

/* ---------- Split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-copy h2 { margin-top: var(--space-2xs); }
.split-copy .lead { margin-top: var(--space-sm); }
.split-copy .btn-row { margin-top: var(--space-md); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.stat .stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.5rem + 2vw, 3.2rem);
  line-height: 1;
  color: var(--honey);
  letter-spacing: -0.03em;
}
.stat .stat-label {
  margin-top: 0.5rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-d);
}

/* ---------- Values list ---------- */
.values { display: grid; gap: var(--space-2xs); }
.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--line);
}
.value-row:first-child { border-top: none; padding-top: 0; }
.value-row .v-num {
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  color: var(--honey-d);
  letter-spacing: 0.12em;
  padding-top: 0.3em;
}
.value-row h3 { font-size: var(--fs-500); }
.value-row p { color: var(--muted); margin-top: 0.3rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(221,153,51,0.10) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(221,153,51,0.10) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 90% 20%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 90% 20%, #000, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--paper); position: relative; }
.cta-band p { color: var(--muted-d); margin-top: var(--space-2xs); position: relative; max-width: 48ch; }
.cta-band .btn-row { position: relative; justify-content: flex-end; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.contact-list { display: grid; gap: var(--space-md); margin-top: var(--space-md); }
.contact-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact-row .ci { width: 44px; height: 44px; border-radius: 11px; background: var(--sand); display: grid; place-items: center; color: var(--ink); }
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row dt { font-family: var(--ff-mono); font-size: var(--fs-300); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact-row dd { font-weight: 600; font-size: var(--fs-500); margin-top: 0.15rem; color: var(--ink); }
.contact-row dd a { color: inherit; }

/* Form */
.form { display: grid; gap: var(--space-sm); }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--ff-mono); font-size: var(--fs-300); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--honey-d); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  font-size: var(--fs-400);
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(221,153,51,0.2);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-note { font-size: var(--fs-300); color: var(--muted); font-family: var(--ff-mono); }

/* Map / area block */
.map-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(30,107,120,0.10), transparent 45%),
    radial-gradient(circle at 75% 65%, rgba(221,153,51,0.10), transparent 45%),
    var(--sand);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-lg);
}
.map-block svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.map-block .map-copy { position: relative; }
.map-block .map-copy h3 { color: var(--ink); }
.map-block .map-copy p { color: var(--muted); margin-top: var(--space-2xs); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-block: var(--space-md) 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5em; font-family: var(--ff-mono); font-size: var(--fs-300); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li::after { content: "/"; margin-left: 0.5em; color: var(--sand-2); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--teal-d); }
.breadcrumbs li[aria-current="page"] { color: var(--charcoal); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-d);
  padding-top: clamp(3rem, 6vw, var(--space-2xl));
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--honey), var(--teal), var(--honey));
  background-size: 200% 100%;
  animation: slide 9s linear infinite;
}
@keyframes slide { to { background-position: 200% 0; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-brand .brand-text { color: var(--paper); }
.footer-brand p { margin-top: var(--space-sm); max-width: 34ch; }
.footer-affil {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 1px dashed var(--line-d);
  border-radius: var(--radius-sm);
  font-size: var(--fs-300);
}
.footer-affil .mono-label { color: var(--honey-l); display: block; margin-bottom: 0.3rem; }
.footer-affil a { color: var(--paper); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--honey); }
.footer-col h4 {
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: var(--fs-300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: var(--muted-d); text-decoration: none; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--honey-l); text-decoration: none; }
.footer-contact li { display: grid; gap: 0.2rem; }
.footer-contact li .lbl { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-d); }
.footer-contact li .val { color: var(--paper); font-weight: 600; }
.footer-contact li .val a { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid var(--line-d);
  padding-block: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-300);
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--muted-d); }
.footer-bottom a:hover { color: var(--honey-l); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .site-footer::before { animation: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(1.5rem, 4vw, 2.5rem); position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,42,54,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,42,54,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 0%, #000 5%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 70% at 70% 0%, #000 5%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .lead { margin-top: var(--space-sm); max-width: 56ch; }
.page-hero .btn-row { margin-top: var(--space-md); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 460px; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-body { order: 0; }
  .service-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav-toggle { display: block; }
  .main-nav { margin-right: 0; }
  #nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: var(--space-2xs) var(--space-md) var(--space-md);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  #nav-menu[data-open="true"] { transform: translateY(0); }
  #nav-menu a { padding: 0.9rem 0.5rem; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  #nav-menu a::after { display: none; }
  .header-cta .btn-call .lbl { display: none; }
  .header-cta .btn-call { padding-inline: 0.9em; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .ticket-meta { grid-template-columns: 1fr; gap: 0.8rem; }
  .ticket-meta > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .hero-quick { gap: 0.9rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer .footer-bottom, .nav-toggle, .cta-band .btn-row, .btn-wa { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
