/* ==========================================================================
   Dubai Handyman Pro — styles.css
   A licensed-style Dubai home & property maintenance / handyman company.
   Design system: deep teal + brass + warm linen. Engineered-grotesque type.
   Signature: work-order / service-docket language (mono codes, spec strips).
   ========================================================================== */

/* -----------------------------------------------
   1. Design tokens
   ----------------------------------------------- */
:root {
  /* Brand colour */
  --ink:        #0B1F24;
  --teal-900:   #082026;
  --teal-800:   #0A2B33;
  --teal-700:   #0E4250;
  --teal-600:   #115769;
  --teal-500:   #1A6B7E;
  --teal-300:   #6FA3AF;
  --brass:      #E0A12E;
  --brass-700:  #B9801A;
  --brass-300:  #ECC57A;

  /* Neutrals */
  --paper:      #F5F3EC;
  --paper-2:    #FBFAF4;
  --paper-card: #FFFFFF;
  --line:       #E0DCCF;
  --line-soft:  #ECE8DD;
  --muted:      #57676C;
  --muted-2:    #7C8A8E;

  /* Functional */
  --whats:      #25D366;
  --whats-dark: #1DA851;
  --white:      #FFFFFF;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(11, 31, 36, .05);
  --shadow-md:  0 6px 18px -10px rgba(10, 43, 51, .25);
  --shadow-lg:  0 22px 48px -22px rgba(8, 32, 38, .32);
  --ring:       0 0 0 3px rgba(224, 161, 46, .45);

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

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.1rem, 4vw, 2.25rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --radius:    14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-700); }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 4px;
}

::selection { background: var(--brass); color: var(--teal-900); }

/* -----------------------------------------------
   3. Layout helpers
   ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark {
  background: var(--teal-900);
  color: var(--paper-2);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(245, 243, 236, .82); }

.section--paper-2 { background: var(--paper-2); }
.section--teal-700 { background: var(--teal-700); color: var(--paper-2); }
.section--teal-700 h1, .section--teal-700 h2, .section--teal-700 h3 { color: var(--white); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-700);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section--dark .eyebrow,
.section--teal-700 .eyebrow { color: var(--brass-300); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--noline::before { display: none; }

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  margin-bottom: .85rem;
}
.section-intro {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
}
.section--dark .section-intro { color: rgba(245, 243, 236, .8); }
.section-head--center .section-intro { margin-inline: auto; }

/* -----------------------------------------------
   4. Docket / work-order language (signature)
   ----------------------------------------------- */
.code {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.section--dark .code,
.section--teal-700 .code { color: rgba(245, 243, 236, .6); }

.spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec__item {
  flex: 1 1 160px;
  padding: 1.05rem 1.25rem;
  border-right: 1px solid var(--line);
}
.spec__item:last-child { border-right: 0; }
.spec__k {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
  margin-bottom: .3rem;
}
.spec__v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.2;
}
.section--dark .spec,
.section--teal-700 .spec { border-color: var(--line-soft); }
.section--dark .spec__k,
.section--teal-700 .spec__k { color: rgba(245, 243, 236, .58); }
.section--dark .spec__v,
.section--teal-700 .spec__v { color: var(--white); }

.dotted {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.dotted__leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-.25em);
}

/* -----------------------------------------------
   5. Buttons
   ----------------------------------------------- */
.btn {
  --btn-bg: var(--teal-700);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .005em;
  line-height: 1;
  padding: .95rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--brass { --btn-bg: var(--brass); --btn-fg: var(--teal-900); }
.btn--brass:hover { --btn-bg: var(--brass-300); }
.btn--whats { --btn-bg: var(--whats); --btn-fg: #06210F; }
.btn--whats:hover { --btn-bg: var(--whats-dark); --btn-fg: #fff; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--teal-700);
  border-color: var(--teal-500);
}
.btn--ghost:hover { --btn-bg: var(--teal-700); --btn-fg: var(--white); border-color: var(--teal-700); }
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, .1); --btn-fg: var(--white); }
.btn--lg { padding: 1.1rem 1.85rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

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

/* -----------------------------------------------
   6. Header / nav
   ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 236, .9);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--teal-900);
  color: rgba(245, 243, 236, .85);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
  flex-wrap: wrap;
}
.topbar__msg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.topbar__msg .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 0 rgba(224, 161, 46, .6);
  animation: pulse 2.4s infinite;
}
.topbar a { color: var(--brass-300); }
.topbar a:hover { color: var(--white); }
.topbar__links { display: flex; gap: 1.1rem; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 161, 46, .55); }
  70% { box-shadow: 0 0 0 7px rgba(224, 161, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 161, 46, 0); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--teal-800);
  border-radius: 10px;
  color: var(--brass);
  box-shadow: inset 0 0 0 1.5px var(--teal-500);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name b { color: var(--teal-700); }
.brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
}
.nav__links a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__links a:hover { color: var(--teal-700); background: rgba(14, 66, 80, .06); }
.nav__links a[aria-current="page"] { color: var(--teal-700); }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0;
  background: var(--brass);
}

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-700);
  font-size: 1.02rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav__phone small {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
}
.nav__phone:hover { color: var(--teal-800); }

.nav__cta { padding: .7rem 1.1rem; font-size: .9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* -----------------------------------------------
   7. Hero
   ----------------------------------------------- */
.hero {
  position: relative;
  background: var(--teal-900);
  color: var(--paper-2);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: -2;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 80% 10%, #000 35%, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 620px; height: 620px;
  right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(224, 161, 46, .22), transparent 62%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-300);
  margin-bottom: 1.3rem;
}
.hero__eyebrow .pill {
  background: rgba(224, 161, 46, .15);
  border: 1px solid rgba(224, 161, 46, .35);
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
}
.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4.3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: normal;
  color: var(--brass-300);
  position: relative;
}
.hero__lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(245, 243, 236, .82);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero__cta { margin-bottom: 2rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(245, 243, 236, .7);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta svg { width: 15px; height: 15px; color: var(--brass-300); }

/* Hero docket card */
.docket-card {
  background: var(--paper-2);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: rotate(.6deg);
}
.docket-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem;
  background: var(--teal-800);
  color: var(--white);
}
.docket-card__head .code { color: var(--brass-300); }
.docket-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
}
.docket-card__body { padding: 1.35rem; }
.docket-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px dashed var(--line);
}
.docket-card__row:last-of-type { border-bottom: 0; }
.docket-card__row .k {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.docket-card__row .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  text-align: right;
}
.docket-card__row .v .check { color: var(--teal-600); }
.docket-card__foot {
  padding: 1rem 1.35rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.docket-card__foot svg { width: 16px; height: 16px; color: var(--brass-700); flex: none; }

/* -----------------------------------------------
   8. Trust strip
   ----------------------------------------------- */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
}
.trust__item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.trust__item svg { width: 26px; height: 26px; color: var(--teal-600); flex: none; margin-top: 2px; }
.trust__item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 .15rem;
}
.trust__item p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.45; }

/* -----------------------------------------------
   9. Services grid
   ----------------------------------------------- */
.services-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;
}
.service-card {
  background: var(--paper-card);
  padding: 1.85rem 1.6rem 1.6rem;
  position: relative;
  transition: background-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--paper-2); }
.service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-800);
  color: var(--brass-300);
  display: grid;
  place-items: center;
  flex: none;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--brass); color: var(--teal-900); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__code {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--muted-2);
}
.service-card__title {
  font-size: 1.22rem;
  margin-bottom: .55rem;
}
.service-card__desc { font-size: .96rem; color: var(--muted); margin-bottom: 1.1rem; }
.service-card__list {
  list-style: none;
  margin: 0 0 1.2rem;
  display: grid;
  gap: .42rem;
}
.service-card__list li {
  font-size: .88rem;
  color: var(--ink);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border: 1.5px solid var(--brass);
  border-right: 0; border-top: 0;
  transform: rotate(-45deg) translateY(-2px);
}
.service-card__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
}
.service-card__link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service-card__link:hover { color: var(--brass-700); }
.service-card__link:hover svg { transform: translateX(4px); }

/* Services detailed (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail__intro { position: sticky; top: calc(var(--header-h) + 16px); }
.service-detail__code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-700);
  background: rgba(224, 161, 46, .12);
  padding: .35rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.service-detail__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .9rem; }
.service-detail__lede { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.2rem; }
.service-detail__quick {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.service-detail__quick strong { color: var(--teal-700); font-family: var(--font-display); }
.service-detail__body h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .6rem;
  color: var(--teal-800);
}
.service-detail__body h3:first-child { margin-top: 0; }
.service-detail__body ul { list-style: none; display: grid; gap: .5rem; margin-bottom: 1rem; }
.service-detail__body ul li {
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.55;
}
.service-detail__body ul li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.service-detail__callout {
  background: var(--teal-800);
  color: var(--paper-2);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-detail__callout p { margin: 0; font-size: .95rem; color: rgba(245, 243, 236, .88); }
.service-detail__callout strong { color: var(--brass-300); font-family: var(--font-display); }

/* -----------------------------------------------
   10. Why choose us / features
   ----------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brass-300); }
.feature__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(14, 66, 80, .08);
  color: var(--teal-700);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.feature p { font-size: .96rem; color: var(--muted); margin: 0; }

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__list { list-style: none; display: grid; gap: 1rem; }
.split__list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  transition: border-color .25s var(--ease);
}
.split__list li:hover { border-color: var(--brass-300); }
.split__list svg { width: 22px; height: 22px; color: var(--brass-700); flex: none; margin-top: 2px; }
.split__list b { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: .15rem; }
.split__list span { font-size: .9rem; color: var(--muted); }

.split__visual {
  background: var(--teal-800);
  border-radius: var(--radius);
  padding: 2.25rem;
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.split__visual::after {
  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: 32px 32px;
  pointer-events: none;
}
.split__visual > * { position: relative; }
.split__visual .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--brass-300);
  line-height: 1;
  letter-spacing: -.03em;
}
.split__visual .num-label {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 243, 236, .7);
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

/* -----------------------------------------------
   11. Process steps
   ----------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.85rem 1.5rem 1.6rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step__num {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--brass-700);
  font-weight: 700;
  margin-bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.step__num::before {
  content: "0" counter(step);
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--teal-700);
  letter-spacing: -.02em;
}
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }
.step__arrow {
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--line);
  z-index: 1;
}
.step:last-child .step__arrow { display: none; }

/* -----------------------------------------------
   12. Areas
   ----------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem 1.5rem;
  list-style: none;
}
.areas-grid li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  padding: .55rem 0 .55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.areas-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border: 2px solid var(--brass);
  border-radius: 50%;
}
.section--dark .areas-grid li { color: var(--paper-2); border-color: rgba(255, 255, 255, .1); }

.area-map {
  background: var(--teal-800);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.area-map h3 { color: var(--white); }
.area-map p { color: rgba(245, 243, 236, .8); }

/* -----------------------------------------------
   13. FAQ accordion
   ----------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-card);
  margin-bottom: .85rem;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq__item:hover { border-color: var(--brass-300); }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { box-shadow: var(--ring); }
.faq__icon {
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq__icon svg { width: 14px; height: 14px; color: var(--teal-700); }
.faq__item[open] .faq__icon { background: var(--brass); border-color: var(--brass); transform: rotate(45deg); }
.faq__item[open] .faq__icon svg { color: var(--teal-900); }
.faq__a {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.faq__a a { font-weight: 600; }

/* -----------------------------------------------
   14. CTA band
   ----------------------------------------------- */
.cta-band {
  background: var(--teal-900);
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: .6rem;
}
.cta-band p { color: rgba(245, 243, 236, .82); font-size: 1.08rem; margin: 0; }
.cta-band__actions { display: flex; flex-direction: column; gap: .75rem; min-width: 240px; }

/* -----------------------------------------------
   15. Breadcrumb + page hero
   ----------------------------------------------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumb li { display: inline-flex; align-items: center; gap: .5rem; }
.breadcrumb li::after { content: "/"; color: var(--line); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb [aria-current="page"] { color: var(--teal-700); }

.page-hero {
  background: var(--teal-900);
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(110% 80% at 85% 20%, #000 30%, transparent 75%);
          mask-image: radial-gradient(110% 80% at 85% 20%, #000 30%, transparent 75%);
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
}
.page-hero .breadcrumb { color: rgba(245, 243, 236, .65); margin-bottom: 1.3rem; }
.page-hero .breadcrumb a { color: var(--brass-300); }
.page-hero .breadcrumb [aria-current="page"] { color: var(--paper-2); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(245, 243, 236, .82); font-size: 1.12rem; max-width: 56ch; }
.page-hero__side {
  text-align: right;
  font-family: var(--font-mono);
}
.page-hero__side .code { color: var(--brass-300); display: block; margin-bottom: .4rem; }
.page-hero__side strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
}

/* -----------------------------------------------
   16. Forms (contact)
   ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.form {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
  font-weight: 700;
}
.field label .req { color: var(--brass-700); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 107, 126, .14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--muted);
}
.field--check input { width: auto; margin-top: .25rem; }
.field--check label { text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 400; color: var(--muted); }

.contact-aside { display: grid; gap: 1rem; }
.contact-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card__icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--teal-800);
  color: var(--brass-300);
  display: grid; place-items: center;
  flex: none;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.contact-card p { font-size: .92rem; color: var(--muted); margin: 0; }
.contact-card a { font-family: var(--font-display); font-weight: 700; color: var(--teal-700); }
.contact-card--dark { background: var(--teal-800); color: var(--paper-2); border-color: transparent; }
.contact-card--dark h3 { color: var(--white); }
.contact-card--dark p { color: rgba(245, 243, 236, .8); }
.contact-card--dark a { color: var(--brass-300); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.hours-table th, .hours-table td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-table th { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.hours-table td { color: var(--muted); text-align: right; font-family: var(--font-mono); font-size: .85rem; }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: 0; }
.hours-table .today { color: var(--brass-700); font-weight: 700; }

/* -----------------------------------------------
   17. About specifics
   ----------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value {
  padding: 1.75rem;
  border-top: 3px solid var(--brass);
  background: var(--paper-card);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
}
.value h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.value p { font-size: .94rem; color: var(--muted); margin: 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat {
  padding: 1.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-card);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal-700);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat__num span { color: var(--brass); }
.stat__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: .65rem;
}

/* Crew section */
.crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.crew__role {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.crew__role .code { display: block; margin-bottom: .7rem; }
.crew__role h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.crew__role p { font-size: .94rem; color: var(--muted); margin: 0; }

/* -----------------------------------------------
   18. Footer
   ----------------------------------------------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(245, 243, 236, .8);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-300);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { color: rgba(245, 243, 236, .78); font-size: .95rem; }
.footer-col a:hover { color: var(--brass-300); }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand__name b { color: var(--brass-300); }
.footer-brand .brand__sub { color: rgba(245, 243, 236, .5); }
.footer-brand p { font-size: .94rem; color: rgba(245, 243, 236, .7); margin-top: 1rem; max-width: 36ch; }

.footer-contact { display: grid; gap: .8rem; }
.footer-contact a, .footer-contact span {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: rgba(245, 243, 236, .85);
  font-size: .95rem;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--brass-300); flex: none; }
.footer-contact .phone { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white); }

.footer-affil {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-top: 1.25rem;
  font-size: .86rem;
  color: rgba(245, 243, 236, .75);
}
.footer-affil strong { color: var(--brass-300); font-family: var(--font-display); }
.footer-affil a { color: var(--white); border-bottom: 1px dotted rgba(255, 255, 255, .4); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  font-size: .85rem;
  color: rgba(245, 243, 236, .55);
}
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(245, 243, 236, .6); }
.footer-bottom a:hover { color: var(--brass-300); }

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

/* -----------------------------------------------
   20. Utilities
   ----------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.lead strong { color: var(--ink); }
.section--dark .lead strong, .section--teal-700 .lead strong { color: var(--white); }
.divider-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 1.5rem 0;
}
.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.note-card {
  background: rgba(224, 161, 46, .1);
  border: 1px solid rgba(224, 161, 46, .3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: .92rem;
  color: var(--ink);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.note-card svg { width: 20px; height: 20px; color: var(--brass-700); flex: none; margin-top: 1px; }

/* -----------------------------------------------
   21. Responsive
   ----------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .docket-card { max-width: 460px; }
  .why-grid,
  .services-grid,
  .values-grid,
  .crew,
  .contact-grid,
  .split,
  .service-detail { grid-template-columns: 1fr; }
  .services-grid { gap: 1px; }
  .service-detail__intro { position: static; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__side { text-align: left; }
}

@media (max-width: 760px) {
  .nav__links,
  .nav__phone,
  .nav__cta { display: none; }
  .nav-toggle { display: block; }

  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: .5rem var(--gutter) 1.25rem;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  body.nav-open .nav__links { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line-soft); }
  .nav__links a { padding: .95rem .25rem; font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { display: none; }

  .trust__inner { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__links { display: none; }
}

@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero__cta, .cta-band__actions { width: 100%; }
}

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

/* Print */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .topbar { display: none; }
  body { background: #fff; color: #000; }
}
