/* =====================================================================
   Dubai Repair Guys — styles.css
   A single hand-written stylesheet shared by every page.
   Palette: midnight navy + signal amber + cool paper.
   Type:    Bricolage Grotesque (display) · Figtree (body) · Space Mono (labels).
   Signature: the "service request" job-ticket card.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* color */
  --ink:        #0B1A2B;   /* near-black, blue-tinted — primary text & dark sections */
  --navy:       #0F2540;   /* deep navy surface */
  --navy-2:     #16314F;   /* raised navy for dark cards */
  --navy-3:     #1E3D62;   /* hairline on dark */
  --paper:      #F6F8FB;   /* cool off-white background */
  --mist:       #E4E9F1;   /* light cool grey */
  --line:       #D7DEE8;   /* hairline border */
  --amber:      #E8820E;   /* signal amber — CTA accent */
  --amber-deep: #BE6A0C;   /* amber hover/active */
  --amber-soft: #FCEFD9;   /* amber tint */
  --steel:      #56657A;   /* muted blue-grey secondary text */
  --steel-2:    #8A97A8;   /* faint secondary */
  --white:      #FFFFFF;
  --whats:      #25D366;   /* WhatsApp green */
  --whats-deep: #1DA851;

  /* type */
  --f-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --f-body:    "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "Space Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* scale */
  --fs-300: clamp(0.8rem, 0.76rem + 0.2vw, 0.9rem);
  --fs-400: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-500: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  --fs-600: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
  --fs-700: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
  --fs-800: clamp(2.2rem, 1.7rem + 2.4vw, 3.6rem);
  --fs-900: clamp(2.7rem, 2rem + 3.6vw, 5rem);

  /* space */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 7rem;

  /* shape & motion */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,26,43,.06), 0 1px 3px rgba(11,26,43,.05);
  --shadow:    0 6px 18px -6px rgba(11,26,43,.18), 0 2px 6px rgba(11,26,43,.06);
  --shadow-lg: 0 24px 50px -18px rgba(11,26,43,.32), 0 6px 14px rgba(11,26,43,.08);
  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3.2rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: #EAF0F7; }
.section--navy { background: linear-gradient(180deg, var(--navy), var(--ink)); color: #EAF0F7; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.stack > * + * { margin-top: var(--s-5); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--fs-300);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px; background: var(--amber);
  display: inline-block;
}
.eyebrow--center::after {
  content: ""; width: 1.6rem; height: 2px; background: var(--amber); display: inline-block;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.05; font-weight: 800; letter-spacing: -.02em; color: inherit; }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
.lead { font-size: var(--fs-500); color: var(--steel); line-height: 1.6; max-width: 60ch; }
.section--dark .lead, .section--navy .lead { color: #AFC0D4; }
.section-head { max-width: 64ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.mono { font-family: var(--f-mono); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 700; font-size: var(--fs-400);
  padding: .85rem 1.5rem; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--amber { --bg: var(--amber); --bd: var(--amber); --fg: #2a1700; }
.btn--amber:hover { --bg: var(--amber-deep); --bd: var(--amber-deep); }
.btn--whats { --bg: var(--whats); --bd: var(--whats); --fg: #042713; }
.btn--whats:hover { --bg: var(--whats-deep); --bd: var(--whats-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); box-shadow: none; }
.btn--ghost:hover { --bd: var(--ink); --bg: var(--ink); --fg: #fff; }
.btn--light { --bg: #fff; --bd: #fff; --fg: var(--ink); }
.btn--light:hover { --bg: var(--mist); --bd: var(--mist); }
.btn--outline-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); box-shadow: none; }
.btn--outline-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: var(--fs-500); }
.btn--block { display: flex; width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,248,251,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand-mark {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  background: var(--ink); color: var(--amber);
  display: grid; place-items: center; position: relative;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 23px; height: 23px; }
.brand-text strong { color: var(--amber); font-weight: 800; }
.brand small { display: block; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .18em; color: var(--steel); font-weight: 400; margin-top: -2px; }

.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav a {
  position: relative; padding: .5rem .85rem; border-radius: 8px;
  font-weight: 600; font-size: .97rem; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--amber-deep); }
.nav a[aria-current="page"] { color: var(--amber-deep); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .15rem; height: 2px; background: var(--amber); border-radius: 2px;
}
.nav-phone {
  font-family: var(--f-mono) !important; font-weight: 700 !important;
  color: var(--ink) !important; border: 1px solid var(--line); margin-left: .4rem;
}
.nav-phone:hover { border-color: var(--amber) !important; color: var(--amber-deep) !important; }

.header-cta { display: flex; align-items: center; gap: .6rem; margin-left: .4rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px; margin-left: auto;
  border: 1px solid var(--line); background: #fff; 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; }
.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); }

/* ---------- Reusable page header (inner pages) ---------- */
.page-hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.4rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 18ch; }
.breadcrumbs { font-family: var(--f-mono); font-size: var(--fs-300); color: var(--steel); margin-bottom: 1.4rem; letter-spacing: .04em; }
.breadcrumbs a:hover { color: var(--amber-deep); }
.breadcrumbs span { color: var(--steel-2); margin: 0 .4rem; }

/* ---------- HERO (home) ---------- */
.hero { position: relative; padding-top: clamp(2.4rem, 5vw, 4rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(232,130,14,.10), transparent 60%),
    radial-gradient(45% 45% at 0% 30%, rgba(15,37,64,.06), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero h1 .ac { color: var(--amber); }
.hero-lead { margin-top: 1.4rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust .t-item { display: flex; flex-direction: column; }
.hero-trust .t-num { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.hero-trust .t-num .u { color: var(--amber); }
.hero-trust .t-lbl { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-top: .35rem; }

/* ---- Job ticket (signature) ---- */
.ticket {
  position: relative; background: var(--white); border: 1.5px dashed #C9A66B;
  border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-lg);
  font-family: var(--f-body);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background-image: radial-gradient(circle, var(--mist) 1.4px, transparent 1.6px);
  background-size: 14px 2px; background-repeat: repeat-x;
}
.ticket::before { top: -1px; }
.ticket::after { bottom: -1px; }
.ticket-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed #E2CFA8; }
.ticket-stamp {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep); border: 1.5px solid var(--amber); padding: .35rem .6rem; border-radius: 6px;
  transform: rotate(-3deg); line-height: 1;
}
.ticket-id { font-family: var(--f-mono); font-size: .72rem; color: var(--steel); text-align: right; line-height: 1.5; }
.ticket-id strong { color: var(--ink); display: block; font-size: .82rem; }
.ticket h2 { font-family: var(--f-display); font-size: var(--fs-600); margin: 1rem 0 .2rem; }
.ticket-sub { font-size: .95rem; color: var(--steel); margin-bottom: 1.1rem; }
.ticket-field { display: flex; align-items: center; gap: .6rem; padding: .55rem 0; border-bottom: 1px dashed var(--mist); font-size: .92rem; }
.ticket-field:last-of-type { border-bottom: 0; }
.ticket-field .ck {
  width: 20px; height: 20px; flex: none; border-radius: 5px; border: 1.5px solid var(--amber);
  display: grid; place-items: center; color: var(--amber);
}
.ticket-field .ck svg { width: 13px; height: 13px; opacity: 0; transform: scale(.5); transition: opacity .2s, transform .2s; }
.ticket-field.on .ck svg { opacity: 1; transform: scale(1); }
.ticket-field .lbl { font-weight: 600; color: var(--ink); }
.ticket-field .code { margin-left: auto; font-family: var(--f-mono); font-size: .72rem; color: var(--steel-2); }
.ticket-foot { margin-top: 1.2rem; display: grid; gap: .6rem; }
.ticket-note { font-family: var(--f-mono); font-size: .7rem; color: var(--steel); display: flex; align-items: center; gap: .5rem; }
.ticket-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--whats); flex: none; }

/* ---------- Marquee / trust strip ---------- */
.truststrip { background: var(--ink); color: #C9D6E4; }
.truststrip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 2.2rem; padding-block: .9rem; }
.truststrip span { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .5rem; }
.truststrip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---------- Service grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(1rem, 2.5vw, 1.5rem); }
.svc-card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--amber);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--amber-soft); color: var(--amber-deep);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.svc-ico svg { width: 27px; height: 27px; }
.svc-code { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-2); }
.svc-card h3 { font-size: 1.3rem; margin: .15rem 0 .5rem; }
.svc-card p { color: var(--steel); font-size: .96rem; }
.svc-card .svc-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 700; color: var(--amber-deep); font-size: .92rem; }
.svc-card .svc-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ---------- Why choose / feature rows ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.feature { padding: .2rem; }
.feature .f-ico { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: rgba(232,130,14,.14); color: var(--amber); margin-bottom: 1rem; }
.feature .f-ico svg { width: 24px; height: 24px; }
.section--dark .feature .f-ico, .section--navy .feature .f-ico { background: rgba(232,130,14,.18); color: var(--amber); }
.feature h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.feature p { color: var(--steel); font-size: .96rem; }
.section--dark .feature p, .section--navy .feature p { color: #AFC0D4; }

/* ---------- Service detail block (services page) ---------- */
.svc-block {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.section--paper .svc-block { background: var(--white); }
.section--navy .svc-block { background: rgba(255,255,255,.04); border-color: var(--navy-3); }
.svc-block__head .svc-ico { width: 58px; height: 58px; border-radius: 14px; }
.svc-block__head .svc-ico svg { width: 30px; height: 30px; }
.svc-block__head .svc-code { display: block; margin-top: 1rem; }
.svc-block__head h2 { font-size: var(--fs-700); margin-top: .4rem; }
.svc-block__body { display: grid; gap: 1.6rem; }
.svc-block__body h3 { font-size: 1.05rem; margin-bottom: .9rem; font-family: var(--f-mono); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--amber-deep); }
.section--navy .svc-block__body h3 { color: var(--amber); }

/* ---------- Process (numbered — a real sequence) ---------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1rem, 3vw, 1.6rem); counter-reset: step; }
.step {
  position: relative; background: rgba(255,255,255,.04); border: 1px solid var(--navy-3);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem;
}
.step .step-num {
  font-family: var(--f-mono); font-size: .8rem; letter-spacing: .12em; color: var(--amber);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .8rem;
}
.step .step-num b { font-family: var(--f-display); font-size: 2rem; color: #fff; line-height: 1; }
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: .4rem; }
.step p { color: #AFC0D4; font-size: .95rem; }
.process-line { position: relative; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  background: var(--navy); box-shadow: var(--shadow);
}
.split-media .ph-illustration { width: 100%; height: 100%; min-height: 320px; }
.media-tag {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(11,26,43,.82); color: #fff;
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem .7rem; border-radius: 7px; backdrop-filter: blur(4px);
}
.check-list { display: grid; gap: .7rem; margin-top: 1.4rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list .ck { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--amber); color: #2a1700; display: grid; place-items: center; margin-top: 2px; }
.check-list .ck svg { width: 13px; height: 13px; }

/* ---------- Service areas (Dubai) tag grid ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.areas a, .areas span {
  display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--ink);
  transition: border-color .2s, transform .2s, color .2s;
}
.areas a:hover { border-color: var(--amber); color: var(--amber-deep); transform: translateY(-2px); }
.areas .pin { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); flex: none; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; text-align: center; }
.stat .n { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--amber); line-height: 1; }
.stat .l { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #C9D6E4; margin-top: .6rem; }

/* ---------- FAQ accordion ---------- */
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.faq-list { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item:hover { border-color: var(--amber); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 1rem; text-align: left; padding: 1.15rem 1.3rem;
  font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-q .qnum { font-family: var(--f-mono); font-size: .75rem; color: var(--amber-deep); flex: none; }
.faq-q .qtext { flex: 1; line-height: 1.35; }
.faq-q .qico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .25s, border-color .25s, color .25s; color: var(--ink); }
.faq-q .qico svg { width: 15px; height: 15px; }
.faq-item[open] .qico { transform: rotate(45deg); background: var(--amber); border-color: var(--amber); color: #2a1700; }
.faq-a { padding: 0 1.3rem 1.3rem calc(1.3rem + 2.2rem); color: var(--steel); }
.faq-a p + p { margin-top: .7rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink), var(--navy)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.4rem); box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(232,130,14,.35), transparent 70%); }
.cta-band .inner { position: relative; display: grid; grid-template-columns: 1.4fr .9fr; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C9D6E4; margin-top: .6rem; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: .7rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.3rem; transition: border-color .25s, box-shadow .25s; }
.contact-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.contact-card .c-ico { width: 46px; height: 46px; flex: none; border-radius: 11px; background: var(--amber-soft); color: var(--amber-deep); display: grid; place-items: center; }
.contact-card .c-ico svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-card p, .contact-card a { color: var(--steel); font-size: .96rem; }
.contact-card a:hover { color: var(--amber-deep); }
.contact-card .big { font-family: var(--f-mono); font-weight: 700; color: var(--ink); font-size: 1.05rem; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form-card h2 { font-size: var(--fs-700); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-top: 1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; }
.field label .req { color: var(--amber-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color .2s, box-shadow .2s, background .2s; font-size: .97rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); background: #fff; box-shadow: 0 0 0 4px rgba(232,130,14,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-family: var(--f-mono); font-size: .74rem; color: var(--steel); margin-top: .9rem; display: flex; gap: .5rem; align-items: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #AFC0D4; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: clamp(2.4rem, 5vw, 3.5rem); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark { background: #fff; color: var(--ink); }
.footer-brand p { font-size: .94rem; max-width: 34ch; color: #9DB0C6; }
.footer h4 { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer ul { display: grid; gap: .6rem; }
.footer ul a, .footer ul li { color: #AFC0D4; font-size: .94rem; }
.footer ul a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: 3px; }
.affiliation {
  margin-top: 1.5rem; padding: 1rem 1.1rem; border: 1px dashed var(--navy-3); border-radius: var(--radius-sm);
  font-size: .9rem;
}
.affiliation strong { color: #fff; }
.affiliation a { color: var(--amber); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid var(--navy-3); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #8FA3BA; }
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- 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; }

/* ---------- Decorative grid bg ---------- */
.grid-bg { position: relative; }
.grid-bg::before {
  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: 46px 46px; mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 75%);
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: var(--s-2); } .mt-4 { margin-top: var(--s-4); } .mt-6 { margin-top: var(--s-6); }
.muted { color: var(--steel); }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .7rem; border-radius: 999px; background: var(--amber-soft); color: var(--amber-deep); font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.two-col { columns: 2; column-gap: 2.5rem; }
.two-col li { break-inside: avoid; margin-bottom: .6rem; padding-left: 1.5rem; position: relative; color: var(--steel); }
.two-col li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 2px; background: var(--amber); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav, .header-cta .btn-nav-text { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem clamp(1.1rem,4vw,2.2rem) 1.2rem;
    box-shadow: var(--shadow); margin-left: 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .25s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .9rem .4rem; border-bottom: 1px solid var(--mist); border-radius: 0; font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav-phone { margin-left: 0; margin-top: .6rem; text-align: center; padding: .9rem; }
  .header-cta { margin-left: auto; }
  .header-cta .btn { padding: .6rem 1rem; font-size: .85rem; }
}
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .two-col { columns: 1; }
  .hero-trust { gap: 1rem 1.4rem; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

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