/* ==========================================================================
   Dubai Apartment Care — styles.css
   A hand-written design system. No framework.
   Palette: emerald (cool apartment comfort) + brass (Dubai premium)
   on warm porcelain. Type: Fraunces (display) + Plus Jakarta Sans (UI).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --ink: #14201e;
  --ink-soft: #41544f;
  --ink-faint: #6b7c77;
  --emerald: #0e5a4f;
  --emerald-deep: #0a3f38;
  --emerald-darker: #072b26;
  --brass: #c79a4b;
  --brass-deep: #a87f33;
  --brass-soft: #e7d29a;
  --sand: #f4f0e7;
  --sand-2: #ece5d6;
  --porcelain: #fbfaf6;
  --mint: #e6efea;
  --mint-deep: #cfe3da;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-deep: #1aa852;
  --line: rgba(20, 32, 30, 0.10);
  --line-strong: rgba(20, 32, 30, 0.16);
  --emerald-line: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --container-narrow: 920px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius-s: 9px;
  --radius-m: 15px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(20, 32, 30, 0.06), 0 2px 8px rgba(20, 32, 30, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 32, 30, 0.08), 0 2px 6px rgba(20, 32, 30, 0.05);
  --shadow-lg: 0 28px 60px -24px rgba(10, 63, 56, 0.32), 0 8px 22px -12px rgba(20, 32, 30, 0.12);
  --shadow-brass: 0 14px 30px -12px rgba(199, 154, 75, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img { height: auto; }

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

ul,
ol { padding-left: 1.1rem; }

li + li { margin-top: 0.4rem; }

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

::selection {
  background: var(--brass);
  color: var(--emerald-darker);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4.1rem);
  font-weight: 600;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.85rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.35;
}

p { max-width: 68ch; }

p + p { margin-top: 1rem; }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--brass);
  display: inline-block;
}

.eyebrow--center::before { display: none; }

.eyebrow--light { color: var(--brass-soft); }

/* ---------- Layout primitives ---------- */
.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--sand { background: var(--sand); }

.section--mint { background: var(--mint); }

.section--emerald {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(199, 154, 75, 0.16), transparent 55%),
    linear-gradient(160deg, var(--emerald) 0%, var(--emerald-deep) 60%, var(--emerald-darker) 100%);
  color: #e9f1ee;
}

.section--emerald h2,
.section--emerald h3 { color: var(--white); }

.section--emerald p { color: #c7d8d2; }

.section--emerald .lead { color: #dbe8e3; }

.section-head {
  max-width: 64ch;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p { margin-top: 1rem; }

.stack > * + * { margin-top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.topbar {
  background: var(--emerald-darker);
  color: #cfe0da;
  font-size: 0.82rem;
}

.topbar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.45rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a { color: #e6efeb; text-decoration: none; }
.topbar a:hover { color: var(--brass-soft); }

.topbar .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  margin-right: 0.5rem;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 0.85rem;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover { text-decoration: none; }

.brand-mark {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, var(--emerald), var(--emerald-darker));
  color: var(--brass-soft);
  box-shadow: var(--shadow-sm);
}

.brand-mark svg { width: 26px; height: 26px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-s);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover { color: var(--emerald); text-decoration: none; }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--emerald); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-s);
  transition: background 0.2s var(--ease);
}

.header-phone:hover { background: var(--mint); text-decoration: none; }
.header-phone svg { color: var(--emerald); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--emerald);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--emerald); --btn-fg: var(--white); }
.btn-primary:hover { --btn-bg: var(--emerald-deep); }

.btn-brass {
  --btn-bg: var(--brass);
  --btn-fg: var(--emerald-darker);
  box-shadow: var(--shadow-brass);
}
.btn-brass:hover { --btn-bg: var(--brass-deep); --btn-fg: var(--white); }

.btn-whatsapp { --btn-bg: var(--whatsapp); --btn-fg: var(--white); }
.btn-whatsapp:hover { --btn-bg: var(--whatsapp-deep); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--emerald);
  border-color: var(--emerald);
}
.btn-ghost:hover { --btn-bg: var(--emerald); --btn-fg: var(--white); }

.btn-ghost-light {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover { --btn-bg: var(--white); --btn-fg: var(--emerald-deep); border-color: var(--white); }

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

.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }

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

/* ---------- Nav toggle (mobile) ---------- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.nav-toggle svg { width: 22px; height: 22px; }

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--porcelain);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 88% 0%, rgba(199, 154, 75, 0.14), transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(14, 90, 79, 0.08), transparent 60%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.8rem, 7vw, 5.5rem);
}

.hero-copy .eyebrow { margin-bottom: 1.3rem; }

.hero h1 { margin-bottom: 1.3rem; }

.hero h1 em {
  font-style: italic;
  color: var(--emerald);
  font-weight: 600;
}

.hero-sub { margin-bottom: 1.9rem; }

.hero-ctas { margin-bottom: 1.8rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-trust svg { color: var(--emerald); width: 19px; height: 19px; flex: none; }

/* Signature: request card */
.request-card {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.request-card-head {
  background: linear-gradient(150deg, var(--emerald), var(--emerald-darker));
  color: var(--white);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.request-card-head .rc-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.request-card-head .rc-sub {
  font-size: 0.78rem;
  color: #c7d8d2;
  letter-spacing: 0.04em;
}

.rc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 211, 102, 0.16);
  color: #b7efca;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
}

.rc-status .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2.2s infinite;
}

.request-card-body { padding: 1.4rem 1.5rem 1.6rem; }

.rc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}

.rc-row:last-of-type { border-bottom: 0; }

.rc-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.rc-value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rc-value svg { color: var(--emerald); width: 18px; height: 18px; }

.rc-ticks {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  margin: 1.1rem 0 1.4rem;
}

.rc-ticks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.rc-ticks svg { color: var(--emerald); flex: none; margin-top: 0.15rem; }

.rc-actions { display: grid; gap: 0.7rem; }

/* ---------- Logos / trust strip ---------- */
.truststrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
}

.truststrip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding-block: 1.3rem;
}

.truststrip p {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}

.truststrip ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  align-items: center;
}

.truststrip li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.truststrip li svg { color: var(--brass-deep); width: 18px; height: 18px; }

/* ---------- Stat band ---------- */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.stat { text-align: left; }

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3.1rem);
  font-weight: 600;
  color: var(--brass-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat .label {
  margin-top: 0.5rem;
  color: #cfe0da;
  font-size: 0.92rem;
  font-weight: 500;
  max-width: 22ch;
}

/* ---------- Service grid ---------- */
.grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-deep);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--emerald);
  margin-bottom: 1.1rem;
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
}

.card:hover .card-icon {
  background: var(--emerald);
  color: var(--brass-soft);
}

.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 0.55rem; }

.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--emerald);
}

.card-link svg {
  width: 15px; height: 15px;
  transition: transform 0.25s var(--ease);
}

.card:hover .card-link svg { transform: translateX(4px); }

/* feature card with brass accent ribbon */
.card--feature {
  background: linear-gradient(180deg, var(--white), var(--porcelain));
  border-color: var(--brass-soft);
}

.card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
  background: rgba(199, 154, 75, 0.14);
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
}

/* ---------- Why choose / feature columns ---------- */
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--emerald);
}

.section--emerald .feature-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brass-soft);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature h4 { margin-bottom: 0.3rem; color: var(--ink); }
.section--emerald .feature h4 { color: var(--white); }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }
.section--emerald .feature p { color: #c7d8d2; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--mint-deep);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Areas / community chips ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
  background: var(--mint);
  text-decoration: none;
}

.chip svg { color: var(--brass-deep); width: 15px; height: 15px; }

/* ---------- Split feature row (about / services rich) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(150deg, var(--emerald), var(--emerald-darker));
  display: grid;
  place-items: center;
  color: #dbe8e3;
  box-shadow: var(--shadow-lg);
}

.split-media svg.hero-art { width: 78%; height: auto; opacity: 0.96; }

/* ---------- Rich service block (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-sm);
}

.service-block + .service-block { margin-top: 1.6rem; }

.service-block--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.service-block--reverse .service-block-aside { order: 2; }

.service-block-aside .sb-icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, var(--emerald), var(--emerald-darker));
  color: var(--brass-soft);
  margin-bottom: 1.2rem;
}

.service-block-aside .sb-icon svg { width: 40px; height: 40px; }

.service-block-aside .sb-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brass-deep);
  text-transform: uppercase;
}

.service-block h2 { margin-bottom: 0.7rem; }

.service-block .sb-intro { margin-bottom: 1.3rem; }

.sb-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.2rem 0 1.5rem;
}

.sb-list h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.sb-list h4 svg { color: var(--brass-deep); width: 18px; height: 18px; }

.sb-list ul { list-style: none; padding: 0; }

.sb-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.sb-list li + li { margin-top: 0.45rem; }

.sb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--brass);
}

.sb-callout {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--mint);
  border-radius: var(--radius-m);
  padding: 1rem 1.2rem;
  font-size: 0.94rem;
  color: var(--emerald-deep);
}

.sb-callout svg { color: var(--emerald); flex: none; width: 20px; height: 20px; margin-top: 0.1rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 60rem; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-item + .faq-item { margin-top: 0.8rem; }

.faq-item.is-open {
  border-color: var(--mint-deep);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.faq-q:hover { color: var(--emerald); }

.faq-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--emerald);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-icon svg { width: 16px; height: 16px; }

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--brass);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.faq-a-inner p + p { margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(199, 154, 75, 0.28), transparent 55%),
    linear-gradient(150deg, var(--emerald), var(--emerald-darker));
  box-shadow: var(--shadow-lg);
}

.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { color: #cfe0da; margin-top: 1rem; max-width: 50ch; }
.cta-band .btn-row { margin-top: 1.8rem; }

.cta-band-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.cta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--emerald-line);
  border-radius: var(--radius-l);
  padding: 1.6rem;
  backdrop-filter: blur(4px);
}

.cta-card .phone-big {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.3rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: block;
}

.cta-card .phone-big:hover { color: var(--brass-soft); }

.cta-card .ctc-sub { color: #b9cec7; font-size: 0.9rem; margin-top: 0.3rem; }

/* ---------- Values / about ---------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}

.value-card .vc-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--brass-deep);
  font-weight: 600;
}

.value-card h3 { margin: 0.6rem 0 0.5rem; }
.value-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* team / crew cards */
.crew {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.6rem;
  text-align: center;
}

.crew .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--mint), var(--mint-deep));
  color: var(--emerald);
}

.crew .avatar svg { width: 32px; height: 32px; }

.crew h4 { margin-bottom: 0.25rem; }
.crew p { color: var(--ink-faint); font-size: 0.9rem; }

/* affiliation block */
.affiliation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

.affil-mark {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--emerald), var(--emerald-darker));
  display: grid;
  place-items: center;
  color: var(--brass-soft);
  flex: none;
}

.affil-mark svg { width: 38px; height: 38px; }

.affiliation h3 { margin-bottom: 0.4rem; }
.affiliation p { color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  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-m);
  padding: 1.2rem 1.3rem;
}

.contact-card .cc-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--emerald);
  display: grid;
  place-items: center;
}

.contact-card .cc-icon svg { width: 22px; height: 22px; }

.contact-card h4 { margin-bottom: 0.2rem; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 0.97rem; }
.contact-card a:hover { color: var(--emerald); }

.contact-card .cc-big {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

/* form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.form-card h3 { margin-bottom: 0.4rem; }
.form-card .form-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field label .req { color: var(--brass-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--porcelain);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 90, 79, 0.12);
}

.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.8rem; }

/* hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-table th { font-weight: 600; color: var(--ink); }
.hours-table td { color: var(--ink-soft); text-align: right; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(70% 80% at 85% -10%, rgba(199, 154, 75, 0.16), transparent 55%),
    linear-gradient(160deg, var(--emerald) 0%, var(--emerald-deep) 70%, var(--emerald-darker) 100%);
  color: #e9f1ee;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 80%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.8rem, 7vw, 5rem);
}

.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: #cfe0da; margin-top: 1rem; max-width: 56ch; }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #e3efea;
  margin-bottom: 1.4rem;
}

.breadcrumb a { color: var(--brass-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-current] { color: var(--white); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--emerald-darker);
  color: #b9cec7;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--emerald-line);
}

.footer-brand .brand { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: #9fb3ac; font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col li + li { margin-top: 0.6rem; }

.footer-col a {
  color: #b9cec7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--brass-soft); }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #b9cec7;
}

.footer-contact svg { color: var(--brass-soft); flex: none; margin-top: 0.2rem; width: 18px; height: 18px; }

.footer-affil {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--emerald-line);
  border-radius: var(--radius-m);
  font-size: 0.88rem;
  color: #9fb3ac;
}

.footer-affil a { color: var(--brass-soft); font-weight: 600; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: #8fa39c;
}

.footer-bottom a { color: #8fa39c; }
.footer-bottom a:hover { color: var(--brass-soft); }

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

/* Only hide pre-animation when JS is active (a script in <head> sets .js on <html>).
   Without JS, content stays fully visible so the page is usable without scripting. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.6rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hide { display: none !important; }
.bg-emerald-text { color: var(--emerald); }

.divider-rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin-block: clamp(2rem, 5vw, 3.5rem);
}

/* mobile-only CTA inside drawer (hidden on desktop) */
.nav-mobile-cta { display: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120%;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-s);
  z-index: 200;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 1rem; color: var(--white); text-decoration: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .statband { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.5rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-grid { grid-template-columns: 1fr; }
  .service-block,
  .service-block--reverse { grid-template-columns: 1fr; }
  .service-block--reverse .service-block-aside { order: 0; }
}

@media (max-width: 820px) {
  .nav,
  .header-phone { display: none; }

  .nav-toggle { display: inline-flex; }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--porcelain);
    padding: 1.4rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 130;
    overflow-y: auto;
    margin-top: 0;
  }

  .nav.is-open { transform: translateX(0); display: flex; }

  .nav a {
    padding: 0.9rem 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav a::after { display: none; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 43, 38, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 120;
  }

  .nav-overlay.is-open { opacity: 1; visibility: visible; }

  .nav.nav--mobile-extra {
    padding-bottom: 1.4rem;
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
  }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .sb-lists { grid-template-columns: 1fr; }
  .affiliation { grid-template-columns: 1fr; text-align: left; }
  .page-hero-inner { text-align: left; }
}

@media (max-width: 560px) {
  :root { --section-y: clamp(3rem, 14vw, 4.5rem); }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 0.9rem 1.4rem; }
  .request-card-body { padding: 1.2rem 1.2rem 1.4rem; }
  .brand-sub { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar .topbar-secondary { display: none; }
  .cta-band { padding: 1.8rem; }
}

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

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