/* =========================================================================
   Dubai Fix Team — styles.css
   Palette: deep navy ink + signal amber + cool paper.
   Type:    Space Grotesk (display) · Hanken Grotesk (body).
   Signature: rotating dispatch-seal badge, blueprint-grid texture.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --ink:        #0B2545;   /* deep navy — primary brand */
  --ink-2:      #13315C;   /* lifted navy */
  --ink-3:      #1B3A6B;
  --ink-deep:   #071A36;   /* hero gradient base */
  --amber:      #FF7A1A;   /* signal orange — the "fix" */
  --amber-2:    #E85D04;   /* hover */
  --amber-soft: #FFE9D6;
  --paper:      #F5F8FB;   /* cool off-white canvas */
  --paper-2:    #EDF2F7;
  --white:      #FFFFFF;
  --slate:      #475569;   /* secondary text */
  --slate-2:    #64748B;
  --slate-3:    #94A3B8;
  --line:       #E3E9F0;
  --line-2:     #D6DEE8;
  --green:      #25D366;   /* WhatsApp */
  --green-2:    #1FB855;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .06), 0 1px 3px rgba(11, 37, 69, .08);
  --shadow:    0 4px 14px rgba(11, 37, 69, .08), 0 2px 6px rgba(11, 37, 69, .06);
  --shadow-lg: 0 24px 50px -18px rgba(11, 37, 69, .28), 0 8px 20px -12px rgba(11, 37, 69, .18);

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

  /* Measure + rhythm */
  --container: 1180px;
  --container-narrow: 760px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --section-y: clamp(3.75rem, 7vw, 6.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--amber-2); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; }
li { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink); }

::selection { background: var(--amber); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.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: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--ink {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #DCE6F2;
}
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--paper-2 { background: var(--paper-2); }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--amber-2);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
.section-head.center .eyebrow::before { display: none; }
.section--ink .eyebrow { color: var(--amber); }

.lead { font-size: 1.18rem; color: var(--slate); line-height: 1.6; }
.section--ink .lead { color: #B9C9DE; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  padding: .92rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s 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: 1.15em; height: 1.15em; }

.btn-primary { --bg: var(--amber); --fg: var(--ink-deep); }
.btn-primary:hover { --bg: var(--amber-2); --fg: var(--white); box-shadow: 0 12px 26px -10px rgba(232, 93, 4, .6); }

.btn-ghost { --bg: transparent; --fg: var(--white); border-color: rgba(255,255,255,.32); }
.btn-ghost:hover { --bg: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn-outline { --bg: transparent; --fg: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { --bg: var(--ink); --fg: var(--white); border-color: var(--ink); }

.btn-whatsapp { --bg: var(--green); --fg: #06270F; }
.btn-whatsapp:hover { --bg: var(--green-2); --fg: var(--white); box-shadow: 0 12px 26px -10px rgba(37, 211, 102, .55); }

.btn-sm { padding: .65rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: 1.08rem 1.9rem; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---------- Icons (inline svg, stroke = currentColor) ---------- */
.icon { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 251, .86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 72px;
  padding-block: .55rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-fix { color: var(--amber); }

.primary-nav { display: flex; align-items: center; gap: .35rem; }
.primary-nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .96rem;
  padding: .5rem .8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.primary-nav a:hover { color: var(--amber-2); background: rgba(255, 122, 26, .08); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--amber-2); }
.primary-nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--amber); border-radius: 2px; margin-top: .15rem;
}

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
}
.header-phone:hover { color: var(--amber-2); text-decoration: none; }
.header-phone .icon { color: var(--amber); width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s 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) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #E7EEF7;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -16vw; top: -18vw;
  background: radial-gradient(circle, rgba(255,122,26,.22) 0%, transparent 62%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.04;
  margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--amber); }
.hero .lead { color: #C4D2E4; max-width: 34ch; margin-bottom: 1.8rem; }
.hero .eyebrow { color: var(--amber); }
.hero .eyebrow::before { background: var(--amber); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .92rem; color: #C4D2E4;
}
.hero-trust .icon { width: 18px; height: 18px; color: var(--amber); }

/* Dispatch seal — signature element */
.hero-aside { display: grid; place-items: center; position: relative; }
.seal {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.seal-ring {
  position: absolute; inset: 0;
  animation: spin 26s linear infinite;
}
.seal-ring text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  fill: #C4D2E4;
  text-transform: uppercase;
}
.seal-core {
  width: 64%; height: 64%;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--amber) 0%, var(--amber-2) 100%);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(255,122,26,.5), inset 0 0 0 6px rgba(255,255,255,.08);
}
.seal-core .seal-top {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(7,26,54,.7);
}
.seal-core .seal-big {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  line-height: 1; color: var(--ink-deep); margin: .15rem 0;
}
.seal-core .seal-sub { font-size: .8rem; font-weight: 600; color: rgba(7,26,54,.72); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Cards / grids ---------- */
.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.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }

/* Service card */
.service-card { display: flex; flex-direction: column; gap: .8rem; }
.service-card a.learn { margin-top: auto; }
.service-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,122,26,.12), rgba(255,122,26,.04));
  color: var(--amber-2);
  margin-bottom: .3rem;
}
.service-ico .icon { width: 26px; height: 26px; stroke-width: 1.5; }
.service-card h3 { margin-bottom: .25rem; }
.service-card p { color: var(--slate); font-size: .98rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--amber-2);
}
.link-arrow .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { text-decoration: none; color: var(--amber-2); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* Feature card (why choose) */
.feature .service-ico { background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--amber); }
.feature h3 { margin-top: .2rem; }
.feature p { color: var(--slate); }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.7rem);
  padding-top: 2.7rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1rem; left: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  color: var(--amber-2);
  letter-spacing: .05em;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- Service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem 1.5rem;
}
.areas-grid li {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 500;
  color: var(--ink); font-size: .98rem;
}
.areas-grid .icon { width: 18px; height: 18px; color: var(--amber); }

/* ---------- Mini FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--ink);
  padding: 1.1rem 1.3rem;
}
.faq-q:hover { color: var(--amber-2); }
.faq-q .toggle {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2);
  color: var(--amber-2);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.faq-q .toggle .icon { width: 16px; height: 16px; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--amber); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink-deep) 70%);
  color: #E7EEF7;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute; right: -10%; top: -60%;
  width: 50%; height: 220%;
  background: radial-gradient(circle, rgba(255,122,26,.2), transparent 60%);
}
.cta-band .container, .cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #C4D2E4; max-width: 52ch; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Split / feature blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.checklist li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .35rem 0;
  color: var(--ink);
}
.checklist .icon { width: 22px; height: 22px; color: var(--green-2); margin-top: .15rem; flex: none; }
.section--ink .checklist li { color: #E7EEF7; }
.section--ink .checklist .icon { color: var(--amber); }

.media-card {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: #E7EEF7;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.media-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .7;
}
.media-card > * { position: relative; }
.media-card .stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.4rem; }
.media-card .stat .n { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--amber); line-height: 1; }
.media-card .stat .l { font-size: .85rem; color: #B9C9DE; margin-top: .25rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-cell .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--amber); line-height: 1;
}
.stat-cell .l { color: var(--slate); font-size: .92rem; margin-top: .4rem; }
.section--ink .stat-cell .l { color: #B9C9DE; }

/* ---------- Values list ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.value h3 { display: flex; align-items: center; gap: .6rem; }
.value h3 .service-ico { width: 40px; height: 40px; margin: 0; }
.value p { color: var(--slate); }

/* ---------- Service detail sections ---------- */
.svc {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
  border-top: 1px solid var(--line);
}
.svc:first-of-type { border-top: 0; padding-top: 0; }
.svc-head { position: sticky; top: 96px; }
.svc-num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--amber); font-size: .85rem; letter-spacing: .12em;
}
.svc-head h2 { margin-bottom: .8rem; }
.svc-head p { color: var(--slate); }
.svc-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.svc-ico .icon { width: 32px; height: 32px; }
.svc-body h3 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--amber-2); margin-bottom: .7rem; font-weight: 600;
}
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.svc-body ul.tick li {
  display: flex; gap: .55rem; align-items: flex-start;
  padding: .28rem 0; color: var(--ink); font-size: .98rem;
}
.svc-body ul.tick .icon { width: 19px; height: 19px; color: var(--green-2); margin-top: .2rem; flex: none; }
.svc-when {
  margin-top: 1.5rem;
  background: var(--paper-2);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  color: var(--slate);
}
.svc-when strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.contact-method {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-method .service-ico { margin: 0; flex: none; width: 46px; height: 46px; }
.contact-method .label { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-2); font-family: var(--font-display); font-weight: 600; }
.contact-method .val { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.contact-method a.val:hover { color: var(--amber-2); text-decoration: none; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .85rem; color: var(--ink); margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,122,26,.16);
}
.form-note { font-size: .85rem; color: var(--slate-2); margin-top: .6rem; }

.area-map {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: #E7EEF7;
  position: relative;
  overflow: hidden;
}
.area-map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .8;
}
.area-map > * { position: relative; }
.area-map h3 { color: var(--white); }
.area-map .pin {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .85rem; color: #DCE6F2;
  margin: .25rem .25rem 0 0;
}
.area-map .pin .icon { width: 14px; height: 14px; color: var(--amber); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-block: 1.1rem; font-size: .88rem; color: var(--slate-2); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--amber-2); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 500; }
.breadcrumbs .sep { color: var(--slate-3); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #E7EEF7;
  padding-block: clamp(2.6rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 90% at 80% 10%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 80% 10%, #000 20%, transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.3rem); max-width: 18ch; }
.page-hero p { color: #C4D2E4; max-width: 56ch; font-size: 1.12rem; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero .eyebrow::before { background: var(--amber); }
.page-hero .btn-row { margin-top: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: #AEBED2;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  padding-bottom: 2.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1rem;
}
.footer-col p { font-size: .95rem; color: #AEBED2; }
.footer-col a { color: #C4D2E4; font-size: .95rem; display: inline-block; padding: .22rem 0; }
.footer-col a:hover { color: var(--amber); text-decoration: none; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-brand .brand-mark svg { width: 20px; height: 20px; }
.footer-brand span { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.footer-brand .brand-fix { color: var(--amber); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; padding: .25rem 0; font-size: .95rem; color: #C4D2E4; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--amber); margin-top: .2rem; flex: none; }
.footer-affil {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.footer-affil a { color: var(--amber); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: .85rem; color: #8A9BB2;
}
.footer-bottom a { color: #8A9BB2; }
.footer-bottom a:hover { color: var(--amber); text-decoration: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { 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; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { order: -1; margin-bottom: .5rem; }
  .seal { width: min(240px, 60vw); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .svc { grid-template-columns: 1fr; }
  .svc-head { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .primary-nav a[aria-current="page"]::after { display: none; }
  .header-phone { display: none; }
}

@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-card .stat-row { gap: 1.4rem; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
  .hero .btn-row, .cta-band .btn-row, .page-hero .btn-row { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

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