/* ==========================================================================
   Dubai Property Fix — styles.css
   One cohesive, hand-written stylesheet shared by every page.
   Palette: deep petrol-teal (Gulf + technical calm) + brass (trade metal
   + Dubai gold) on a cool off-white. Signature: work-order vernacular.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Ink & paper */
  --ink:        #102624;   /* deep teal-black, primary text          */
  --paper:      #F3F6F5;   /* cool off-white, page background        */
  --paper-2:    #FFFFFF;   /* cards                                  */
  --muted:      #54655F;   /* secondary text                         */
  --mist:       #D8E3E0;   /* hairline borders on light              */

  /* Brand surfaces */
  --deep:       #0B3B3A;   /* deep petrol — hero / dark sections     */
  --deep-2:     #0E4948;   /* layered teal                           */
  --deep-3:     #115553;   /* hover teal                             */
  --teal:       #1E7A73;   /* mid teal — links / accents on light    */
  --teal-soft:  #E4EEEC;   /* tinted teal panel                      */

  /* Accent */
  --brass:      #C8893A;   /* brass / Dubai gold — primary highlight */
  --brass-2:    #E2A94E;   /* lighter brass for hover / glow         */
  --brass-deep: #9E6A26;   /* brass on light for contrast            */
  --sand:       #EFE3CD;   /* warm sand panel                        */

  /* Functional */
  --wa:         #25D366;   /* WhatsApp brand green                   */
  --wa-deep:    #1FB855;

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

  /* Shape & motion */
  --radius:     14px;
  --radius-sm:  9px;
  --radius-lg:  22px;
  --shadow-1:   0 1px 2px rgba(16,38,36,.06), 0 6px 18px rgba(16,38,36,.06);
  --shadow-2:   0 10px 30px rgba(16,38,36,.12);
  --ring:       0 0 0 3px rgba(30,122,115,.30);
  --ease:       cubic-bezier(.2,.7,.2,1);
  --container:  1200px;
}

/* ---------- 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(1rem, .96rem + .2vw, 1.0625rem);
  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 { padding-left: 1.15rem; }
li { margin: .25rem 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
::selection { background: var(--brass); color: var(--deep); }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.display { font-size: clamp(2.5rem, 1.6rem + 4vw, 4.3rem); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; }
.h-section { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.7rem); }
.h-card { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
p { color: var(--muted); }
p.lead { font-size: 1.15rem; color: var(--ink); }

/* Eyebrow / mono label — work-order vernacular */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--center::before { display: none; }
.on-dark .eyebrow, .on-dark { }
.on-dark .eyebrow { color: var(--brass-2); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,.78); }
.on-dark a { color: var(--brass-2); }

/* ---------- Layout primitives ------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0; }
.section--dark { background: var(--deep); color: rgba(255,255,255,.8); }
.section--teal { background: var(--teal-soft); }
.section--sand { background: var(--sand); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: .9rem; font-size: 1.08rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--mist); border: 0; }
.section--dark .divider { background: rgba(255,255,255,.12); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --bg: var(--deep);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 18px rgba(11,59,58,.18);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,59,58,.26); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; flex: none; }

.btn--brass   { --bg: var(--brass); --fg: #1a1206; box-shadow: 0 6px 18px rgba(200,137,58,.35); }
.btn--brass:hover { --bg: var(--brass-2); }
.btn--ghost   { --bg: transparent; --fg: var(--ink); border-color: var(--mist); box-shadow: none; }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); box-shadow: none; }
.btn--ghost.on-dark { --fg: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost.on-dark:hover { border-color: var(--brass-2); color: var(--brass-2); }
.btn--light   { --bg: #fff; --fg: var(--deep); box-shadow: var(--shadow-1); }

.btn--wa { --bg: var(--wa); --fg: #06210f; box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.btn--wa:hover { --bg: var(--wa-deep); }

.btn--lg { padding: 1.02rem 1.7rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Header & nav ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(243,246,245,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(16,38,36,.10); background: rgba(255,255,255,.94); }
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 70px;
  padding-block: .55rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--deep); display: inline-flex; }
.brand-mark svg { width: 38px; height: 38px; }
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  letter-spacing: -.01em; line-height: 1; color: var(--ink);
}
.brand-text strong { color: var(--brass-deep); font-weight: 700; }
.brand-sub {
  display: block; font-family: var(--font-mono); font-weight: 400;
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}

.primary-nav { display: none; gap: .35rem; margin-left: auto; }
.primary-nav a {
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  font-size: .98rem; padding: .55rem .8rem; border-radius: 999px;
  text-decoration: none; transition: color .2s var(--ease), background .2s var(--ease);
}
.primary-nav a:hover { color: var(--teal); background: var(--teal-soft); }
.primary-nav a[aria-current="page"] { color: var(--deep); background: var(--teal-soft); }

.header-cta { display: none; align-items: center; gap: .6rem; margin-left: .5rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--ink); font-family: var(--font-display); font-weight: 600;
  font-size: .95rem; text-decoration: none;
}
.header-phone .ico { width: 16px; height: 16px; color: var(--teal); }
.header-phone:hover { color: var(--teal); text-decoration: none; }

.nav-toggle {
  margin-left: auto; display: inline-flex; flex-direction: column;
  justify-content: center; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--mist); border-radius: 10px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin-inline: auto; 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); }

/* Mobile dropdown panel */
.mobile-panel {
  display: none; padding: .5rem .75rem 1.25rem;
  border-top: 1px solid var(--mist);
}
.mobile-panel.open { display: block; }
.mobile-panel nav { display: flex; flex-direction: column; }
.mobile-panel nav a {
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  padding: .8rem .5rem; border-bottom: 1px solid var(--mist); text-decoration: none;
}
.mobile-panel nav a:last-child { border-bottom: 0; }
.mobile-panel nav a[aria-current="page"] { color: var(--teal); }
.mobile-cta-row { display: flex; gap: .6rem; margin-top: 1rem; }
.mobile-cta-row .btn { flex: 1; }

@media (min-width: 940px) {
  .primary-nav { display: flex; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Breadcrumbs -------------------------------------------------- */
.crumbs { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.crumbs li { display: inline-flex; align-items: center; gap: .35rem; }
.crumbs li:not(:last-child)::after { content: "›"; opacity: .5; }
.crumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.crumbs a:hover { color: var(--brass-2); }
.crumbs [aria-current="page"] { color: #fff; }

/* ---------- Page hero (inner pages) ------------------------------------- */
.page-hero { background: var(--deep); color: rgba(255,255,255,.82); padding: clamp(2.4rem, 1.4rem + 3vw, 3.6rem) 0 clamp(2.8rem, 1.6rem + 4vw, 4.4rem); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: auto -10% -70% auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 70% 30%, rgba(200,137,58,.16), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { margin: .85rem 0 .6rem; }
.page-hero p { max-width: 60ch; font-size: 1.1rem; }

/* ---------- Home hero ---------------------------------------------------- */
.hero { background: var(--deep); color: rgba(255,255,255,.82); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -20% auto auto; width: 65%; aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, rgba(30,122,115,.55), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,137,58,.5), transparent);
}
.hero-grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  padding: clamp(2.8rem, 2rem + 4vw, 5.5rem) 0 clamp(3rem, 2rem + 4vw, 5rem);
  position: relative;
}
.hero-copy .eyebrow { color: var(--brass-2); }
.hero h1 { color: #fff; margin: 1rem 0 1.1rem; }
.hero h1 .accent { color: var(--brass-2); }
.hero .lead { color: rgba(255,255,255,.82); font-size: 1.18rem; max-width: 46ch; }
.hero-cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-meta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.66); }
.hero-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass-2); }

/* ---------- Work-order ticket (signature) ------------------------------- */
.ticket {
  background: var(--paper-2); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 1.5rem 1.5rem 1.6rem; position: relative;
  border: 1px solid var(--mist);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 5.2rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--deep); border: 4px solid var(--paper-2);
}
.ticket::before { left: -12px; }
.ticket::after  { right: -12px; }
.ticket-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--mist); padding-bottom: 1rem; }
.ticket-top .t-label { font-family: var(--font-mono); font-weight: 700; font-size: .8rem; letter-spacing: .14em; color: var(--deep); }
.ticket-top .t-num { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.status { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; padding: .35rem .6rem; border-radius: 999px; background: rgba(37,211,102,.14); color: #138a3d; text-transform: uppercase; }
.status .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.ticket-body { padding-top: 1.1rem; display: grid; gap: .85rem; }
.ticket-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--mist); padding-bottom: .7rem; }
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row .k { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ticket-row .v { font-family: var(--font-display); font-weight: 600; color: var(--ink); text-align: right; }
.ticket-row .v small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .8rem; }
.ticket-foot {
  margin-top: 1rem; background: var(--teal-soft); border-radius: var(--radius-sm);
  padding: .9rem 1rem; display: flex; align-items: center; gap: .7rem;
}
.ticket-foot .check {
  width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--teal);
  display: grid; place-items: center; color: #fff;
}
.ticket-foot .check svg { width: 17px; height: 17px; }
.ticket-foot strong { color: var(--deep); font-family: var(--font-display); font-size: .95rem; }
.ticket-foot small { color: var(--muted); display: block; font-size: .78rem; }

/* ---------- Trust strip -------------------------------------------------- */
.trust { border-bottom: 1px solid var(--mist); background: var(--paper-2); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: .65rem; padding: 1.05rem .5rem; font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--ink); }
.trust-item svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } .trust-item { justify-content: center; } }

/* ---------- Card grid (services overview) -------------------------------- */
.grid { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3,1fr); } .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1120px) { .grid--4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--teal); text-decoration: none; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.card-code { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; color: var(--brass-deep); background: var(--sand); padding: .28rem .5rem; border-radius: 6px; }
.card-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--teal-soft); color: var(--deep); display: grid; place-items: center; }
.card-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; }
.card p { font-size: .96rem; }
.card a { color: var(--teal); font-family: var(--font-display); font-weight: 600; font-size: .92rem; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; }
.card a:hover { color: var(--brass-deep); }
.card a .arr { transition: transform .25s var(--ease); }
.card:hover a .arr { transform: translateX(4px); }

/* ---------- Feature / why-choose blocks --------------------------------- */
.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }

.feature-list { display: grid; gap: 1.1rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .f-ico { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--teal-soft); color: var(--deep); display: grid; place-items: center; }
.feature .f-ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.feature p { font-size: .96rem; }
.on-dark .feature .f-ico { background: rgba(255,255,255,.08); color: var(--brass-2); }
.on-dark .feature h3 { color: #fff; }

/* ---------- Process steps (numbered — real sequence) -------------------- */
.steps { display: grid; gap: 1.15rem; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step {
  position: relative; background: var(--paper-2); border: 1px solid var(--mist);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem;
}
.step .num { font-family: var(--font-mono); font-weight: 700; font-size: .8rem; color: var(--brass-deep); letter-spacing: .1em; }
.step h3 { font-size: 1.12rem; margin: .5rem 0 .4rem; }
.step p { font-size: .94rem; }
.step::before {
  content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.4rem; width: 3px;
  background: linear-gradient(var(--brass), var(--teal)); border-radius: 0 3px 3px 0;
}

/* ---------- Areas grid --------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: .55rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper-2); border: 1px solid var(--mist); border-radius: 999px;
  padding: .55rem 1rem; font-family: var(--font-display); font-weight: 500;
  font-size: .9rem; color: var(--ink); transition: all .25s var(--ease);
}
.area-chip:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; transform: translateY(-2px); }
.area-chip .pin { width: 14px; height: 14px; color: var(--brass-deep); }

/* ---------- Mini FAQ (home) --------------------------------------------- */
.mini-faq { display: grid; gap: .75rem; max-width: 820px; }

/* ---------- FAQ accordion ------------------------------------------------ */
.faq-list { display: grid; gap: .8rem; max-width: 860px; }
.faq-item { background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-item.is-open { border-color: var(--teal); box-shadow: var(--shadow-1); }
.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.25rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq-q .ico { width: 22px; height: 22px; flex: none; color: var(--brass-deep); transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a .inner { padding: 0 1.25rem 1.2rem; color: var(--muted); }
.faq-a .inner p + p { margin-top: .7rem; }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band { background: var(--deep); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(200,137,58,.18), transparent 55%);
}
.cta-band .container { position: relative; }
.cta-inner { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1.4fr .9fr; } .cta-inner .cta-actions { justify-content: flex-end; } }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.78); margin-top: .7rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cta-band .eyebrow { color: var(--brass-2); }

/* ---------- Contact ------------------------------------------------------ */
.contact-grid { display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-cards { display: grid; gap: .9rem; }
.contact-card { display: flex; gap: .9rem; align-items: flex-start; background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius); padding: 1.15rem 1.25rem; }
.contact-card .ico { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--teal-soft); color: var(--deep); display: grid; place-items: center; }
.contact-card .ico svg { width: 20px; height: 20px; }
.contact-card .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-card .v { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.contact-card a.v { text-decoration: none; }
.contact-card a.v:hover { color: var(--teal); }

.form { background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-1); }
.form h2 { font-size: 1.4rem; }
.field { margin-top: 1.05rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }
.field label .req { color: var(--brass-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--mist); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 0; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.form .note { font-size: .82rem; color: var(--muted); margin-top: .8rem; }
.form-note-mono { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); letter-spacing: .04em; margin-top: 1rem; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: #082726; color: rgba(255,255,255,.72); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.62); margin-top: .9rem; max-width: 34ch; font-size: .94rem; }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: var(--brass-2); }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; font-size: .94rem; color: rgba(255,255,255,.72); }
.footer-contact a { color: rgba(255,255,255,.82); }
.footer-contact svg { width: 16px; height: 16px; color: var(--brass-2); flex: none; margin-top: 3px; }
.affiliation {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1.2rem;
  font-size: .9rem; color: rgba(255,255,255,.7);
}
.affiliation .label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-2); display: block; margin-bottom: .35rem; }
.affiliation a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(226,169,78,.5); text-underline-offset: 3px; }
.affiliation a:hover { text-decoration-color: var(--brass-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--brass-2); }

/* ---------- Reveal animation -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Skip link ---------------------------------------------------- */
.skip-link { position: absolute; left: 1rem; top: -60px; background: #fff; color: var(--deep); padding: .6rem 1rem; border-radius: 8px; z-index: 100; font-family: var(--font-display); font-weight: 600; box-shadow: var(--shadow-2); transition: top .2s var(--ease); }
.skip-link:focus { top: .8rem; }

/* ---------- Helpers ------------------------------------------------------ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hide-on-mobile { display: none; }
@media (min-width: 760px) { .hide-on-mobile { display: initial; } .hide-on-desktop { display: none; } }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--deep); background: var(--teal-soft); border-radius: 6px; padding: .3rem .55rem; }

/* ---------- Service blocks (services page) ------------------------------ */
.svc { background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius-lg); overflow: hidden; scroll-margin-top: 90px; }
.svc-head { display: flex; align-items: center; gap: 1rem; padding: 1.4rem clamp(1.2rem, 3vw, 1.8rem); border-bottom: 1px solid var(--mist); background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.svc-head .card-ico { width: 54px; height: 54px; border-radius: 13px; }
.svc-head .card-ico svg { width: 27px; height: 27px; }
.svc-head .svc-title { flex: 1; min-width: 0; }
.svc-head h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); }
.svc-head .svc-sub { color: var(--muted); font-size: .95rem; margin-top: .15rem; }
.svc-head .card-code { white-space: nowrap; }
.svc-body { padding: 1.5rem clamp(1.2rem, 3vw, 1.8rem); display: grid; gap: 1.4rem; }
@media (min-width: 820px) { .svc-body { grid-template-columns: repeat(3, 1fr); } }
.svc-col h3 { font-family: var(--font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem; }
.svc-col h3::before { content: ""; width: 14px; height: 1px; background: currentColor; }
.svc-col ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.svc-col li { display: flex; gap: .55rem; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.svc-col li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-top: .55rem; flex: none; }
.svc-foot { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; padding: 1.1rem clamp(1.2rem, 3vw, 1.8rem); border-top: 1px solid var(--mist); background: var(--paper); }
.svc-foot .when { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); letter-spacing: .03em; }
.svc-foot .when strong { color: var(--deep); }

/* In-page nav chips for services */
.svc-nav { display: flex; flex-wrap: wrap; gap: .5rem; }
.svc-nav a { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: var(--deep); background: var(--paper-2); border: 1px solid var(--mist); border-radius: 999px; padding: .45rem .8rem; text-decoration: none; transition: all .2s var(--ease); }
.svc-nav a:hover { border-color: var(--brass); color: var(--brass-deep); }

/* Values grid (about) */
.values { display: grid; gap: 1.15rem; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { background: var(--paper-2); border: 1px solid var(--mist); border-radius: var(--radius); padding: 1.5rem; }
.value .num { font-family: var(--font-mono); font-size: .76rem; color: var(--brass-deep); letter-spacing: .1em; }
.value h3 { margin: .5rem 0 .4rem; font-size: 1.15rem; }
.value p { font-size: .95rem; }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--mist); border: 1px solid var(--mist); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { background: var(--paper-2); padding: 1.6rem 1.3rem; text-align: center; }
.stat .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); color: var(--deep); line-height: 1; }
.stat .lbl { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* Map-style area block */
.area-map { background: var(--deep); border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; }
.area-map::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(200,137,58,.18), transparent 55%); }
.area-map h3 { color: #fff; position: relative; }
.area-map p { position: relative; }
