/* ============================================================
   Dubai Apartment Fix — design system
   Urban workshop / blueprint aesthetic
   Type: Bricolage Grotesque (display) · Manrope (body) · Space Mono (technical)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0F1C1E;
  --ink-soft: #243538;
  --teal: #0C5C66;
  --teal-600: #0A4B53;
  --teal-700: #073940;
  --teal-800: #052b31;
  --amber: #E9A23B;
  --amber-600: #CF8A2A;
  --amber-700: #a96c1d;
  --paper: #F5F8F7;
  --paper-2: #EAF0EF;
  --mist: #E4EBEA;
  --card: #FFFFFF;
  --slate: #526566;
  --slate-2: #6f8182;
  --line: rgba(15, 28, 30, 0.10);
  --line-strong: rgba(15, 28, 30, 0.18);
  --wa: #25D366;
  --wa-600: #1eb858;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --shadow-sm: 0 1px 2px rgba(15, 28, 30, .05), 0 2px 6px rgba(15, 28, 30, .04);
  --shadow: 0 14px 34px -16px rgba(15, 28, 30, .22);
  --shadow-lg: 0 40px 80px -28px rgba(15, 28, 30, .30);

  --maxw-prose: 68ch;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::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; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw + .6rem, 18px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.1rem; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 200; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 10px; font-weight: 600; box-shadow: var(--shadow); }
.skip-link:focus { left: 12px; color: #fff; }
.card, .card:hover { text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.7rem); line-height: 1.02; letter-spacing: -0.035em; }
h1, .h1 { font-size: clamp(2.2rem, 1.2rem + 3.4vw, 3.6rem); }
h2, .h2 { font-size: clamp(1.7rem, 1rem + 2vw, 2.6rem); letter-spacing: -0.025em; }
h3, .h3 { font-size: clamp(1.25rem, 1rem + .8vw, 1.6rem); letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; }
p { max-width: var(--maxw-prose); }
p + p { margin-top: 1rem; }
strong { font-weight: 700; color: var(--ink); }

/* Mono eyebrow / technical label */
.eyebrow, .mono {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.eyebrow--amber { color: var(--amber-700); }
.eyebrow--ink { color: var(--ink); opacity: .65; }
.eyebrow::before { content: "// "; color: var(--amber); }

.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--slate); line-height: 1.6; max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--tight { padding-block: clamp(44px, 6vw, 76px); }
.section--ink { background: var(--ink); color: #cfe0e1; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: #9fb6b8; }
.section--ink .eyebrow { color: var(--amber); }
.section--teal { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-700) 100%); color: #e7f3f4; }
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: #fff; }
.section--teal .lead { color: #cfe7e9; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--card { background: var(--card); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lead { margin-inline: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 248, 247, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-700) 100%);
  display: grid; place-items: center; position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 6px 16px -8px rgba(12,92,102,.6);
}
.brand-mark::after { /* amber tick corner */
  content: ""; position: absolute; top: 4px; right: 4px; width: 7px; height: 7px;
  background: var(--amber); border-radius: 2px;
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.brand-name b { color: var(--teal); }
.brand-tag { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); display: block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a {
  color: var(--ink-soft); font-weight: 600; font-size: .95rem;
  padding: 9px 14px; border-radius: var(--radius-pill); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover { background: var(--mist); color: var(--teal); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--teal); background: var(--paper-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 6px; }
.nav-phone { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: right; text-decoration: none; padding: 4px 12px 4px 8px; }
.nav-phone .lbl { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.nav-phone .num { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.01em; }
.nav-phone:hover { text-decoration: none; }
.nav-phone:hover .num { color: var(--teal); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: var(--card); border-radius: 11px; padding: 0; margin-left: auto;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .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); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { padding: 16px 28px; font-size: 1.06rem; }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(233,162,59,.8); }
.btn--primary:hover { background: var(--amber-600); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -12px rgba(12,92,102,.7); }
.btn--teal:hover { background: var(--teal-600); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); }
.btn--wa { background: var(--wa); color: #04210f; }
.btn--wa:hover { background: var(--wa-600); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--card); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px) clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::before { /* faint blueprint grid */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.2); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.2); } 50% { box-shadow: 0 0 0 7px rgba(37,211,102,.05); } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--teal); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .22em; background: rgba(233,162,59,.42); z-index: -1; border-radius: 2px; }
.hero-sub { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--slate); margin-bottom: 30px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--slate); font-weight: 600; }
.hero-trust .item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ---------- Dispatch panel (signature) ---------- */
.panel {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 2.5vw, 30px);
  box-shadow: var(--shadow-lg);
}
/* dimension ticks at corners */
.panel::before, .panel::after,
.panel .tick-bl, .panel .tick-br {
  content: ""; position: absolute; width: 14px; height: 14px; border: 2px solid var(--amber); pointer-events: none;
}
.panel::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.panel::after { top: 10px; right: 10px; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.panel .tick-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.panel .tick-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }

.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px dashed var(--line-strong); margin-bottom: 8px; }
.panel-head .ttl { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-weight: 700; }
.panel-head .badge { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wa-600); background: rgba(37,211,102,.14); padding: 4px 9px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 6px; }
.panel-head .badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--wa); }

.panel-row { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 14px; padding: 13px 4px; border-bottom: 1px solid var(--line); }
.panel-row:last-of-type { border-bottom: 0; }
.panel-row .idx { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; color: var(--amber-700); font-weight: 700; }
.panel-row .name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.panel-row .name small { display: block; font-weight: 500; color: var(--slate); font-size: .8rem; }
.panel-row .stat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); white-space: nowrap; }
.panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-strong); }
.panel-foot .meta { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.panel-foot .big { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--teal); letter-spacing: -0.02em; }

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

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; gap: 4px; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .ico {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(12,92,102,.12), rgba(12,92,102,.04));
  color: var(--teal); margin-bottom: 16px;
}
.card .ico svg { width: 26px; height: 26px; }
.card .num { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; color: var(--amber-700); position: absolute; top: 24px; right: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .96rem; }
.card .more { margin-top: 16px; font-weight: 700; font-size: .9rem; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .more svg { transform: translateX(3px); }
.card--feature { border-top: 3px solid var(--amber); }

/* ---------- Why / features ---------- */
.feature { display: flex; flex-direction: column; gap: 10px; }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(233,162,59,.14); color: var(--amber-700); margin-bottom: 6px; }
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; }
.feature p { color: var(--slate); font-size: .96rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.checklist { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 8px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate); }
.checklist li svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.checklist li strong { color: var(--ink); }
.checklist--light li { color: #cfe0e1; }
.checklist--light li strong { color: #fff; }
.checklist--light li svg { color: var(--amber); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 28px 22px 8px; position: relative; }
.step + .step { border-left: 1px dashed var(--line-strong); }
.step .step-num { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; color: var(--amber-700); font-weight: 700; margin-bottom: 14px; display: block; }
.step .step-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--teal); color: #fff; margin-bottom: 16px; }
.step .step-ico svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .94rem; }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: all .2s var(--ease);
}
.area:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); text-decoration: none; }
.area .pin { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.areas-grid .cell { background: var(--card); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.areas-grid .cell h3 { font-size: 1.05rem; }
.areas-grid .cell p { font-size: .9rem; color: var(--slate); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-block { padding: 22px; border-left: 3px solid var(--amber); }
.stat-block .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 1.2rem + 1.6vw, 2.8rem); line-height: 1; color: #fff; letter-spacing: -0.03em; }
.stat-block .l { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #b9d3d5; margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: ""; width: 14px; height: 14px; flex-shrink: 0; background: linear-gradient(var(--teal), var(--teal)), linear-gradient(var(--teal), var(--teal)); background-size: 14px 2px, 2px 14px; background-repeat: no-repeat; background-position: center; transition: transform .3s var(--ease); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); background: linear-gradient(var(--amber), var(--amber)), linear-gradient(var(--amber), var(--amber)); background-size: 14px 2px, 2px 14px; background-repeat: no-repeat; background-position: center; }
.faq-a { padding: 0 22px 22px; color: var(--slate); }
.faq-a p + p { margin-top: .8rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 60%, var(--teal-800) 100%); color: #eaf6f7; box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 36px 36px; -webkit-mask-image: radial-gradient(circle at 85% 20%, #000, transparent 70%); mask-image: radial-gradient(circle at 85% 20%, #000, transparent 70%); }
.cta-band-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #cfe7e9; margin-top: 8px; max-width: 50ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-tile { display: flex; gap: 16px; padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s var(--ease); }
.contact-tile:hover { border-color: var(--line-strong); }
.contact-tile .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(12,92,102,.1); color: var(--teal); flex-shrink: 0; }
.contact-tile .ico svg { width: 22px; height: 22px; }
.contact-tile .lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.contact-tile .val { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact-tile .sub { font-size: .88rem; color: var(--slate); }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 4px; }
.form-card .lead { font-size: .98rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); padding: 13px 15px;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.form-note { font-size: .82rem; color: var(--slate); margin-top: 14px; text-align: center; }
.map-band { margin-top: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); }
.map-band .map-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.map-band .map-head h3 { font-size: 1.15rem; }
.map-band .map-art { height: 320px; position: relative; background:
  radial-gradient(circle at 30% 40%, rgba(12,92,102,.10), transparent 50%),
  linear-gradient(var(--paper-2), var(--paper-2));
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(12,92,102,.10), transparent 50%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}
.map-band .map-pin { position: absolute; top: 44%; left: 38%; transform: translate(-50%,-100%); }
.map-band .map-pin .pin-dot { width: 22px; height: 22px; background: var(--amber); border: 3px solid var(--ink); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow); position: relative; }
.map-band .map-pin .pin-pulse { position: absolute; inset: -10px; border-radius: 50%; background: rgba(233,162,59,.25); animation: pulse 2.4s var(--ease) infinite; transform: rotate(-45deg); }
.map-band .map-pin .pin-label { position: absolute; left: 30px; top: -6px; white-space: nowrap; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 6px 10px; border-radius: 6px; }

/* ---------- About ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-img { border-radius: var(--radius-lg); border: 1px solid var(--line); background:
  linear-gradient(150deg, var(--teal) 0%, var(--teal-700) 100%);
  position: relative; overflow: hidden; min-height: 340px; box-shadow: var(--shadow); }
.story-img::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 30px 30px; opacity: .5; }
.story-img .badge-card { position: absolute; left: 22px; bottom: 22px; right: 22px; background: rgba(15,28,30,.78); backdrop-filter: blur(8px); border-radius: var(--radius); padding: 18px 20px; color: #fff; z-index: 1; }
.story-img .badge-card .mono { color: var(--amber); margin-bottom: 6px; display: block; }

.team-note { display: flex; gap: 18px; align-items: center; padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); border-left: 3px solid var(--teal); }
.team-note .ico { width: 50px; height: 50px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; color: var(--teal); flex-shrink: 0; }
.team-note .ico svg { width: 26px; height: 26px; }

/* ---------- Page header (inner pages) ---------- */
.page-header { padding-block: clamp(48px, 6vw, 84px) clamp(36px, 4vw, 56px); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-header::before { content: ""; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 40px 40px; -webkit-mask-image: radial-gradient(ellipse 70% 90% at 20% 0%, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse 70% 90% at 20% 0%, #000 30%, transparent 75%); }
.page-header .container { position: relative; }
.breadcrumb { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--line-strong); }
.page-header h1 { max-width: 18ch; }
.page-header .lead { margin-top: 16px; }

/* ---------- Service detail (services page) ---------- */
.svc { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: clamp(28px, 3vw, 40px) 0; border-top: 1px solid var(--line); }
.svc:first-of-type { border-top: 0; }
.svc .svc-idx { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; color: var(--amber-700); font-weight: 700; }
.svc .svc-ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal) 0%, var(--teal-700) 100%); color: #fff; margin-bottom: 12px; }
.svc .svc-ico svg { width: 28px; height: 28px; }
.svc-body h2 { margin-bottom: 8px; }
.svc-body .svc-lead { color: var(--slate); margin-bottom: 20px; }
.svc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.svc-cols h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.svc-cols ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.svc-cols li { display: flex; gap: 9px; font-size: .94rem; color: var(--slate); }
.svc-cols li::before { content: "—"; color: var(--amber); flex-shrink: 0; font-weight: 700; }
.svc-cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9fb6b8; padding-top: clamp(48px, 6vw, 76px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 48px); padding-bottom: clamp(36px, 4vw, 52px); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: #6f8788; }
.site-footer h4 { color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer p { color: #9fb6b8; font-size: .94rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: #b9ccd0; font-size: .94rem; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact .row { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: #b9ccd0; }
.footer-contact .row svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-contact .row strong { color: #fff; }
.affiliation { margin-top: 16px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.affiliation .mono { color: var(--amber); display: block; margin-bottom: 6px; font-size: .66rem; }
.affiliation a { color: #fff; font-weight: 600; }
.affiliation a:hover { color: var(--amber); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 24px; font-size: .84rem; color: #6f8788; }
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: #6f8788; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.divider-tick { display: flex; align-items: center; gap: 12px; }
.divider-tick::before, .divider-tick::after { content: ""; height: 1px; background: var(--line-strong); flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .step + .step { border-left: 0; }
  .step:nth-child(odd) { border-right: 1px dashed var(--line-strong); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 22px;
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow);
    margin-left: 0; max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; border-radius: var(--radius-sm); font-size: 1.02rem; }
  .nav-actions .btn--primary span, .nav-actions .btn--ghost span { display: none; }
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .svc-cols { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .grid--4, .stats, .process { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: 0; }
  .step + .step { border-top: 1px dashed var(--line-strong); }
  .footer-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .nav-actions { gap: 8px; }
}
