/* ════════════════════════════════════════════════════════════════
   JAMIRAH DOMESTIC SERVICES — STYLESHEET
   Desert-editorial aesthetic · Warm, trustworthy, conversion-first
   ════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────
   CUSTOM PROPERTIES
──────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:            #F7F1E6;
  --ink:              #1F1B16;
  --ink-light:        #3A352C;
  --ink-muted:        #6B6055;
  --terracotta:       #B5472A;
  --terracotta-dark:  #8E3620;
  --terracotta-pale:  rgba(181, 71, 42, 0.08);
  --sage:             #5E6B4E;
  --sage-dark:        #3F4A32;
  --gold:             #C99A4C;
  --gold-dark:        #A07838;
  --gold-pale:        rgba(201, 154, 76, 0.14);
  --bone:             #FBF7EE;
  --border:           rgba(31, 27, 22, 0.11);
  --border-subtle:    rgba(31, 27, 22, 0.06);

  /* Typography */
  --font-display: 'Cairo', 'Arial', sans-serif;
  --font-body:    'Cairo', 'Arial', sans-serif;
  --font-accent:  'Cairo', 'Arial', sans-serif;

  /* Layout */
  --container:      1200px;
  --pad-section:    96px;
  --pad-section-sm: 64px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;

  /* Shadows */
  --shadow-sm:  0 2px 10px rgba(31,27,22,.06);
  --shadow:     0 8px 28px rgba(31,27,22,.10);
  --shadow-lg:  0 20px 64px rgba(31,27,22,.14);
  --shadow-xl:  0 32px 80px rgba(31,27,22,.18);

  /* Transitions */
  --ease: 0.24s ease;
  --ease-slow: 0.42s ease;
}

/* ────────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; }

/* ────────────────────────────────────────────────────
   CONTAINER
──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 56px; } }

/* ────────────────────────────────────────────────────
   SECTION UTILITIES
──────────────────────────────────────────────────── */
.section { padding: var(--pad-section) 0; }
.section--alt  { background-color: var(--bone); }
.section--dark { background-color: var(--ink); color: var(--bone); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  display: block;
  margin-bottom: 12px;
}
.section-label--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  color: var(--terracotta);
}
.section-title--light { color: var(--bone); }
.section-title--light em { color: var(--gold); font-weight: 800; }

.section-subtitle {
  font-size: 16.5px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 400;
}
.section-subtitle--light { color: rgba(251,247,238,.65); }

/* ────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  position: relative;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--large { padding: 14px 30px; font-size: 15px; }
.btn--xl    { padding: 18px 48px; font-size: 18px; border-radius: var(--radius); }
.btn--full  { width: 100%; justify-content: center; }

.btn--terracotta {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 18px rgba(181,71,42,.28);
}
.btn--terracotta:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 28px rgba(181,71,42,.38);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(201,154,76,.30);
}
.btn--gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(201,154,76,.42);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.30);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37,211,102,.44);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(31,27,22,.04);
  border-color: rgba(31,27,22,.22);
}

/* ────────────────────────────────────────────────────
   PULSE DOT
──────────────────────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,.3);
  animation: pulse 2.2s ease-in-out infinite;
}
.pulse-dot--light { background: #4ADE80; }
.pulse-dot--light::after { background: rgba(74,222,128,.35); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%       { transform: scale(2); opacity: 0; }
}

/* ────────────────────────────────────────────────────
   TOP BAR
──────────────────────────────────────────────────── */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: rgba(251,247,238,.72);
  font-size: 12.5px;
  padding: 9px 0;
  letter-spacing: 0.01em;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #86EFAC;
}
.top-bar__sep { opacity: 0.35; }
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bone);
  font-weight: 600;
  font-size: 13px;
  transition: color var(--ease);
}
.top-bar__phone:hover { color: var(--gold); }

@media (max-width: 600px) {
  .top-bar__location { display: none; }
  .top-bar__sep      { display: none; }
}

/* ────────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 37px; /* approx top-bar height; JS refines this */
  z-index: 190;
  background: rgba(247,241,230,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 13px 0;
  transition: box-shadow var(--ease), background var(--ease);
}
.nav.scrolled {
  background: rgba(247,241,230,.97);
  box-shadow: 0 4px 24px rgba(31,27,22,.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav__link {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover {
  color: var(--ink);
  background: rgba(31,27,22,.05);
}
.nav__cta { margin-left: auto; flex-shrink: 0; }

@media (max-width: 960px)  { .nav__links { display: none; } }
@media (max-width: 480px)  { .nav__cta { padding: 10px 16px; font-size: 13px; } }

/* ────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Radial gradient ornaments */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb--1 {
  width: 700px;
  height: 700px;
  top: -280px;
  right: -220px;
  background: radial-gradient(circle, rgba(201,154,76,.13) 0%, transparent 65%);
}
.hero-orb--2 {
  width: 440px;
  height: 440px;
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(181,71,42,.09) 0%, transparent 65%);
}
.hero-orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(94,107,78,.06) 0%, transparent 65%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.hero__label { margin-bottom: 14px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  color: var(--terracotta);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  flex: 1;
  min-width: 72px;
  padding: 0 12px;
}
.stat:first-child { padding-inline-start: 0; }
.stat:last-child  { padding-inline-end: 0; }
.stat__number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}
.stat__sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Contact Card */
.hero__card-inner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  color: var(--bone);
  box-shadow: var(--shadow-xl);
}
.hero__card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(251,247,238,.55);
  margin-bottom: 18px;
}
.hero__card-heading {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 12px;
  line-height: 1.3;
}
.hero__card-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 26px;
  transition: color var(--ease);
}
.hero__card-phone:hover { color: #D9B870; }
.hero__card-list {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero__card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(251,247,238,.78);
}
.hero__card-list svg { color: var(--gold); flex-shrink: 0; }

.hero__card-inner .btn + .btn {
  margin-top: 12px;
}

/* ────────────────────────────────────────────────────
   MARQUEE STRIP
──────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--terracotta);
  padding: 13px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: 100%;
}
.marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee__content span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 0 24px;
}
.marquee__gem {
  font-size: 7px !important;
  color: rgba(255,255,255,.40) !important;
  padding: 0 4px !important;
  letter-spacing: 0 !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__content { animation: none; }
}

/* ────────────────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(181,71,42,.18);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  background: var(--terracotta-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.01em;
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}
.service-card__link:hover {
  color: var(--terracotta-dark);
  gap: 9px;
}

/* CTA Card variant */
.service-card--cta {
  background: var(--ink);
  border-color: transparent;
  align-items: flex-start;
}
.service-card--cta .service-card__title { color: var(--bone); }
.service-card--cta .service-card__desc  { color: rgba(251,247,238,.65); }
.service-card__cta-q {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card__cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  transition: color var(--ease);
}
.service-card__cta-phone:hover { color: #D9B870; }

/* ────────────────────────────────────────────────────
   WHY JAMIRAH
──────────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.why-card {
  padding: 30px 22px;
  border: 1px solid rgba(251,247,238,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  transition: transform var(--ease), background var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}
.why-card__num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.75;
}
.why-card__icon {
  color: var(--gold);
  margin-bottom: 14px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 9px;
}
.why-card__desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(251,247,238,.6);
}

.why__cta { text-align: center; }

/* ────────────────────────────────────────────────────
   ORIGINS / NATIONALITIES
──────────────────────────────────────────────────── */
.origins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.origin-card {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.origin-card__flag {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
}
.origin-card__country {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.origin-card__desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.68;
  margin-bottom: 18px;
}
.origin-card__call {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  transition: color var(--ease);
}
.origin-card__call:hover { color: var(--terracotta-dark); }

/* Origins note bar */
.origins__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.origins__note p {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.origins__note strong { color: var(--ink); }

/* ────────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────────── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Connector line desktop */
@media (min-width: 901px) {
  .how__steps::before {
    content: '';
    position: absolute;
    top: 76px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background: linear-gradient(to right,
      transparent,
      var(--border) 8%,
      var(--border) 92%,
      transparent
    );
    pointer-events: none;
    z-index: 0;
  }
}

.how-step {
  text-align: center;
  padding: 0 16px 24px;
  position: relative;
}
.how-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.how-step__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--terracotta);
}
.how-step__icon {
  width: 72px;
  height: 72px;
  background: var(--terracotta-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--cream);
  transition: transform var(--ease), box-shadow var(--ease);
}
.how-step:hover .how-step__icon {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(181,71,42,.16);
}
.how-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.how-step__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.how-step__link {
  display: inline-block;
  margin-top: 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  transition: color var(--ease), letter-spacing var(--ease);
}
.how-step__link:hover {
  color: var(--terracotta-dark);
  letter-spacing: 0.02em;
}

/* ────────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card__stars {
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 14px;
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 22px;
  flex: 1;
  quotes: "\201C" "\201D";
}
.testimonial-card__quote::before { content: open-quote; }
.testimonial-card__quote::after  { content: close-quote; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-card__location {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.testimonials__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.testimonials__bottom p {
  font-size: 16px;
  color: var(--ink-muted);
}

/* ────────────────────────────────────────────────────
   FINAL CTA
──────────────────────────────────────────────────── */
.final-cta {
  background: var(--ink);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Rotating star ornament */
.final-cta__star-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.rotating-star {
  width: 460px;
  height: 460px;
  color: rgba(251,247,238,.035);
  animation: rotate 28s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) { .rotating-star { animation: none; } }

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.4;
  margin-bottom: 4px;
}
.final-cta__title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}
.final-cta__sub {
  font-size: 16.5px;
  color: rgba(251,247,238,.60);
  line-height: 1.7;
  max-width: 460px;
}
.final-cta__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(251,247,238,.45);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────── */
.footer {
  background: #161310;
  color: rgba(251,247,238,.65);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(251,247,238,.55);
  margin-bottom: 18px;
  max-width: 320px;
}
.footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer__phone:hover { color: #D9B870; }
.footer__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(251,247,238,.40);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--bone);
  margin-bottom: 18px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list a {
  font-size: 14px;
  color: rgba(251,247,238,.55);
  transition: color var(--ease);
}
.footer__list a:hover { color: var(--bone); }

.footer__contact p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(251,247,238,.55);
  margin-bottom: 18px;
}
.footer__cta-btn { width: 100%; justify-content: center; }

.footer__bottom {
  border-top: 1px solid rgba(251,247,238,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copy,
.footer__bottom-phone {
  font-size: 12.5px;
  color: rgba(251,247,238,.35);
}

/* ────────────────────────────────────────────────────
   MOBILE FAB
──────────────────────────────────────────────────── */
.fab {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 300;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(181,71,42,.44);
  letter-spacing: 0.01em;
  transition: transform var(--ease), box-shadow var(--ease);
}
.fab:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 14px 40px rgba(181,71,42,.54);
}
.fab:active { transform: scale(0.98); }

.fab.fab--whatsapp {
  display: flex;
  bottom: 84px;
  background: #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,.38);
}
.fab.fab--whatsapp:hover {
  box-shadow: 0 14px 40px rgba(37,211,102,.52);
}

/* ────────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────────── */

/* Hero fade-up entries */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.75s cubic-bezier(.22,.68,0,1.2) forwards;
}
.fade-up--d1 { animation-delay: 0.10s; }
.fade-up--d2 { animation-delay: 0.22s; }
.fade-up--d3 { animation-delay: 0.34s; }
.fade-up--d4 { animation-delay: 0.46s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────── */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__card { max-width: 480px; }
  .hero__subtitle { max-width: 100%; }

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

/* ── 960px ── */
@media (max-width: 960px) {
  :root {
    --pad-section: var(--pad-section-sm);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .how__steps::before { display: none; }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
  .fab { display: flex; }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 72px; }
  .hero__stats { padding: 14px 16px; gap: 0; }
  .stat { min-width: 60px; padding: 0 8px; }
  .stat:first-child { text-align: center; }
  .stat:last-child  { text-align: center; }
  .stat__number { font-size: 17px; }
  .stat__sep { height: 26px; }

  .services__grid  { grid-template-columns: 1fr; }
  .origins__grid   { grid-template-columns: repeat(2, 1fr); }
  .why__grid       { grid-template-columns: 1fr; }
  .how__steps      { grid-template-columns: 1fr; }

  .origins__note {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── 400px ── */
@media (max-width: 400px) {
  .origins__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
