/* ==========================================================================
   Dubai Care Crew — styles.css
   A cohesive, hand-written design system: teal + gold + cream.
   Mobile-first, responsive, with tasteful motion and accessible focus states.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --teal-900: #062926;
  --teal-800: #0a3b37;
  --teal-700: #0e504a;
  --teal-600: #11665e;
  --teal-500: #168378;
  --teal-400: #3aa399;
  --teal-200: #b9ded8;

  --gold-600: #bd8a36;
  --gold-500: #d4a24e;
  --gold-400: #e2b86a;
  --gold-300: #f0d39c;

  --cream: #f8f5ef;
  --cream-200: #f1ebe0;
  --cream-300: #e7ddcb;

  --ink: #122724;
  --ink-soft: #28403b;
  --muted: #5b6b67;
  --line: #e2d9ca;

  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Shape & depth */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10, 50, 46, 0.06), 0 2px 8px rgba(10, 50, 46, 0.05);
  --shadow: 0 6px 18px rgba(10, 50, 46, 0.08), 0 14px 40px rgba(10, 50, 46, 0.07);
  --shadow-lg: 0 18px 40px rgba(6, 41, 38, 0.14), 0 30px 80px rgba(6, 41, 38, 0.12);

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-800); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--teal-900);
  text-wrap: balance;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-teal { background: linear-gradient(160deg, var(--teal-800), var(--teal-900)); color: var(--cream); }
.bg-tint { background: linear-gradient(180deg, var(--cream-200), var(--cream)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.bg-teal .eyebrow { color: var(--gold-300); }
.bg-teal .eyebrow::before { background: var(--gold-400); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.85rem);
  margin-top: 0.6rem;
}
.section-head p { margin-top: 0.9rem; color: var(--muted); font-size: 1.05rem; }
.bg-teal .section-head h2 { color: var(--white); }
.bg-teal .section-head p { color: var(--teal-200); }

.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold-500); color: var(--teal-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-400); color: var(--teal-900); box-shadow: var(--shadow); }
.btn--solid { background: var(--teal-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--teal-700); color: var(--white); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn--outline { background: transparent; color: var(--teal-700); box-shadow: inset 0 0 0 1.5px var(--teal-500); }
.btn--outline:hover { background: var(--teal-700); color: var(--white); }
.btn--whatsapp { background: var(--whatsapp); color: #04210f; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: #04210f; box-shadow: var(--shadow); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  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.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--teal-900); }
.brand:hover { color: var(--teal-900); }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-text span { color: var(--gold-600); }
.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-list a:hover { background: var(--cream-200); color: var(--teal-800); }
.nav-list a[aria-current="page"] { color: var(--teal-700); background: var(--cream-200); }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  background: var(--teal-700);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-call:hover { background: var(--teal-800); transform: translateY(-1px); }
.nav-call small { font-weight: 600; opacity: 0.85; font-size: 0.78rem; }
.nav-call strong { font-size: 1rem; }
.nav-call svg { width: 1.1em; height: 1.1em; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle-bar::before { transform: translate(-50%, -7px); }
.nav-toggle-bar::after { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(212,162,78,0.18), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(22,131,120,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream-200), var(--cream));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--cream));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.1rem);
  line-height: 1.04;
  margin-top: 1rem;
  color: var(--teal-900);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-600);
}
.hero-sub {
  margin-top: 1.3rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38ch;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-trust {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 1.05em; height: 1.05em; color: var(--teal-500); }

/* Hero visual */
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(165deg, var(--teal-700), var(--teal-900));
  box-shadow: var(--shadow-lg);
  color: var(--cream);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(212,162,78,0.4), transparent 65%);
  border-radius: 50%;
}
.hero-card-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero-card-head h3 { color: var(--white); font-size: 1.15rem; }
.hero-card-head .pulse {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--teal-200);
}
.hero-card-head .pulse i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.hero-card ul { position: relative; margin-top: 1.1rem; display: grid; gap: 0.75rem; }
.hero-card li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.97rem;
  color: var(--teal-200);
}
.hero-card li svg { width: 1.15em; height: 1.15em; color: var(--gold-400); flex: none; margin-top: 3px; }
.hero-card li strong { color: var(--white); font-weight: 700; }
.hero-card-cta {
  position: relative;
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero-card-cta .btn { flex: 1 1 auto; }

/* floating badges on hero card */
.hero-badges {
  position: absolute;
  z-index: 2;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 0.6rem 0.85rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.hero-badges svg { width: 1.05em; height: 1.05em; color: var(--gold-500); }
.hero-badges--1 { top: 8px; left: -18px; }
.hero-badges--2 { bottom: 22px; right: -16px; }

/* ---------- Value strip ---------- */
.value-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: 0; }
.value-item .vic {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--cream-200);
  color: var(--teal-600);
}
.value-item .vic svg { width: 20px; height: 20px; }
.value-item h3 { font-family: var(--font-sans); font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.value-item p { font-size: 0.86rem; color: var(--muted); margin-top: 2px; line-height: 1.45; }

/* ---------- Service grid ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-300);
}
.card-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.card-ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-top: 1.1rem; }
.card p { color: var(--muted); margin-top: 0.6rem; font-size: 0.97rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem;
  font-weight: 700; font-size: 0.92rem;
  color: var(--teal-600);
}
.card .card-link svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
.card ul.tick {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}
.card ul.tick li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-soft);
}
.card ul.tick svg { width: 1.05em; height: 1.05em; color: var(--teal-500); flex: none; margin-top: 3px; }

/* ---------- Feature / why-choose rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--right .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
}
.split-media .panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  height: 100%;
  align-content: center;
}
.split-media .panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1rem;
}
.split-media .panel svg { width: 24px; height: 24px; color: var(--gold-400); }
.split-media .panel h4 { color: var(--white); font-size: 1rem; margin-top: 0.5rem; }
.split-media .panel p { color: var(--teal-200); font-size: 0.82rem; margin-top: 0.25rem; line-height: 1.4; }
.split-media .media-tag {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: var(--white); color: var(--ink);
  border-radius: 14px; padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 700;
  box-shadow: var(--shadow);
}
.split-media .media-tag svg { width: 1.1em; height: 1.1em; color: var(--teal-500); }

.feature-list { margin-top: 1.6rem; display: grid; gap: 1rem; }
.feature-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row .fic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream-200);
  color: var(--teal-600);
}
.feature-row .fic svg { width: 22px; height: 22px; }
.feature-row h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.feature-row p { color: var(--muted); font-size: 0.94rem; margin-top: 2px; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.5vw, 1.7rem);
  box-shadow: var(--shadow-sm);
}
.step .step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-600));
  color: var(--teal-900);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.12rem; margin-top: 1rem; }
.step p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px; right: -0.8rem;
  width: 1.2rem; height: 2px;
  background: var(--gold-300);
}

/* ---------- Areas (chips) ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600; font-size: 0.9rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--gold-400); color: var(--teal-700); }
.chip svg { width: 1em; height: 1em; color: var(--gold-500); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--gold-400); box-shadow: var(--shadow); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--teal-900);
  text-align: left;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-ic {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--cream-200);
  color: var(--teal-600);
  transition: transform 0.3s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-item[open] .faq-q .faq-ic { transform: rotate(45deg); background: var(--gold-500); color: var(--teal-900); }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }
.faq-a p + p { margin-top: 0.7rem; }

/* ---------- Service detail (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.2rem, 4.5vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block:nth-child(even) .service-art { order: 2; }
.service-art {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  background: linear-gradient(160deg, var(--teal-600), var(--teal-900));
  color: var(--cream);
  box-shadow: var(--shadow);
}
.service-art .sa-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  color: var(--gold-300);
}
.service-art .sa-ic svg { width: 28px; height: 28px; }
.service-art h3 { color: var(--white); font-size: 1.4rem; margin-top: 1rem; }
.service-art p { color: var(--teal-200); font-size: 0.95rem; margin-top: 0.5rem; }
.service-art .sa-cta { margin-top: 1.2rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }

.service-body h3 {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
}
.service-body .svc-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem;
}
.service-body .svc-meta span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  background: var(--cream-200); color: var(--teal-700);
}
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.5rem; }
.svc-cols h4 {
  font-family: var(--font-sans); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-600);
}
.svc-cols ul { margin-top: 0.7rem; display: grid; gap: 0.45rem; }
.svc-cols li { display: flex; gap: 0.5rem; font-size: 0.94rem; color: var(--ink-soft); align-items: flex-start; }
.svc-cols li svg { width: 1.05em; height: 1.05em; color: var(--teal-500); flex: none; margin-top: 4px; }
.svc-when {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream-200);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.svc-when strong { color: var(--teal-800); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, var(--teal-700), var(--teal-900));
  color: var(--cream);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(212,162,78,0.32), transparent 60%);
  border-radius: 50%;
}
.cta-band-inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
.cta-band p { color: var(--teal-200); margin-top: 0.8rem; max-width: 46ch; }
.cta-band-actions { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(120% 90% at 85% -20%, rgba(212,162,78,0.16), transparent 55%),
    linear-gradient(180deg, var(--teal-800), var(--teal-900));
  color: var(--cream);
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 60px;
  background: linear-gradient(180deg, transparent, var(--cream));
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.3rem);
  margin-top: 0.8rem;
  max-width: 16ch;
}
.page-hero p { margin-top: 1rem; color: var(--teal-200); font-size: 1.12rem; max-width: 56ch; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: 0.85rem; color: var(--teal-200); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--gold-300); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card .cic {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-500), var(--teal-700));
  color: var(--white);
}
.contact-card .cic.w { background: linear-gradient(150deg, var(--whatsapp), var(--whatsapp-dark)); }
.contact-card .cic svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; color: var(--ink); }
.contact-card a, .contact-card p { font-size: 0.97rem; color: var(--ink-soft); }
.contact-card a.tel { font-weight: 700; color: var(--teal-700); font-size: 1.1rem; }
.contact-card .small { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.6rem; }
.form-card p.help { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-top: 1.1rem; }
.field label {
  display: block;
  font-weight: 700; font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.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 4px rgba(22,131,120,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }

/* Hours table */
.hours-list { display: grid; gap: 0.5rem; margin-top: 0.6rem; }
.hours-list div { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px dashed var(--line); font-size: 0.93rem; }
.hours-list div:last-child { border-bottom: 0; }
.hours-list div strong { color: var(--ink); font-weight: 600; }
.hours-list div span { color: var(--muted); }
.hours-list div.now span { color: var(--teal-600); font-weight: 700; }

/* ---------- Map-style area block ---------- */
.area-block {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(14,80,74,0.04), rgba(212,162,78,0.06)),
    var(--cream-200);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}
.area-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,80,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,80,74,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.area-block > * { position: relative; }
.area-block .pin {
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-weight: 700; color: var(--teal-800);
}
.area-block .pin svg { width: 1.2em; height: 1.2em; color: var(--gold-500); }

/* ---------- Values / approach cards ---------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .vic {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-600));
  color: var(--teal-900);
}
.value-card .vic svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.2rem; margin-top: 1rem; }
.value-card p { color: var(--muted); margin-top: 0.5rem; font-size: 0.96rem; }

/* Crew avatars */
.crew-row { display: flex; gap: 0.6rem; }
.crew-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--white);
  border: 3px solid var(--cream);
  box-shadow: var(--shadow-sm);
}

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); color: var(--gold-300); line-height: 1; }
.stat .lbl { color: var(--teal-200); font-size: 0.85rem; margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--teal-900), #041d1b);
  color: var(--teal-200);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}
.footer-brand .brand-text { color: var(--white); }
.footer-brand p { margin-top: 1rem; color: var(--teal-200); font-size: 0.93rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: var(--teal-200); font-size: 0.93rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.93rem; color: var(--teal-200); margin-bottom: 0.55rem; }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer-affil {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem;
}
.footer-affil strong { color: var(--white); }
.footer-affil a { color: var(--gold-300); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--teal-200);
}
.footer-bottom a { color: var(--teal-200); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal-800); color: var(--white);
  padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
  z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(1), .value-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--right .split-media { order: 0; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-art { order: 0; }
  .service-art { position: static; }
  .stat-band { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav-toggle { display: block; order: 3; }
  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem var(--gutter) 1.6rem;
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .nav-list a { padding: 0.8rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-list li.nav-cta { margin-top: 0.6rem; }
  .nav-call { justify-content: center; padding: 0.9rem; }
  .header-inner .nav-call-desktop { display: none; }
}

@media (min-width: 761px) {
  .nav-call-mobile { display: none; }
}

@media (max-width: 560px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .svc-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { width: 100%; }
}
