/* ==========================================================================
   Dubai Repair Crew — styles.css
   A cohesive, hand-written design system. No frameworks.
   Palette: deep teal (trust) + warm amber (action) + warm sand (calm).
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --brand:        #0e4f5c;
  --brand-700:    #0b3d48;
  --brand-800:    #08313b;
  --brand-900:    #06262e;
  --brand-50:     #e8f1f3;

  /* Accent */
  --accent:       #e0772a;
  --accent-600:   #c9651a;
  --accent-700:   #a85313;
  --accent-50:    #fbeee0;

  /* Neutrals */
  --gold:         #d3a24a;
  --sand:         #f6f1e7;
  --sand-200:     #efe7d8;
  --sand-300:     #e6dcc8;
  --paper:        #ffffff;
  --ink:          #16242a;
  --ink-soft:     #4d5b61;
  --ink-faint:    #7c8a90;
  --line:         #e6ddcc;
  --line-soft:    #efe9dd;

  /* Status / functional */
  --wa:           #25d366;
  --wa-700:       #1da851;

  /* Type */
  --font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(22, 36, 42, 0.06), 0 2px 6px rgba(22, 36, 42, 0.05);
  --shadow:    0 8px 24px -8px rgba(22, 36, 42, 0.18), 0 2px 8px rgba(22, 36, 42, 0.06);
  --shadow-lg: 0 26px 60px -22px rgba(6, 38, 46, 0.38), 0 8px 22px -10px rgba(6, 38, 46, 0.18);
  --shadow-brand: 0 16px 36px -12px rgba(14, 79, 92, 0.55);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 5vw, 40px);

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.6rem + 0.9vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-600); }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: 0.4rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--brand-900);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 800;
}
h2 { font-size: clamp(1.8rem, 1rem + 2.4vw, 2.9rem); }
h3 { font-size: clamp(1.22rem, 0.8rem + 1.1vw, 1.55rem); }
h4 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

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

::selection { background: var(--accent); color: #fff; }

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

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section.tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section.sand { background: var(--sand); }
.section.brand { background: var(--brand-900); color: #eaf2f4; }
.section.brand h2, .section.brand h3 { color: #fff; }

.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }

/* ---------- 4. Buttons ---------- */
.btn {
  --bg: var(--brand);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(14, 79, 92, 0.5);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(14, 79, 92, 0.6); color: var(--fg); }
.btn:active { transform: translateY(0); }

.btn-accent { --bg: var(--accent); box-shadow: 0 8px 20px -8px rgba(224, 119, 42, 0.6); }
.btn-accent:hover { --bg: var(--accent-600); box-shadow: 0 14px 30px -10px rgba(224, 119, 42, 0.7); }
.btn-whatsapp { --bg: var(--wa); box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.6); }
.btn-whatsapp:hover { --bg: var(--wa-700); }
.btn-ghost {
  --bg: transparent;
  --fg: var(--brand-900);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover { --bg: var(--paper); --fg: var(--accent-600); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.btn-light { --bg: #fff; --fg: var(--brand-900); box-shadow: var(--shadow); }
.btn-light:hover { --fg: var(--brand-900); }
.btn-outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,0.4); box-shadow: none; }
.btn-outline-light:hover { --bg: rgba(255,255,255,0.1); --fg: #fff; }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 0.7rem 1.1rem; font-size: 0.88rem; }

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

/* ---------- 5. Top utility bar ---------- */
.topbar {
  background: var(--brand-900);
  color: #cfe0e4;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-info { display: flex; gap: 1.3rem; align-items: center; flex-wrap: wrap; }
.topbar .tb-info span { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar svg { width: 15px; height: 15px; opacity: 0.85; }
.topbar .tb-tag { color: var(--gold); font-weight: 600; }
.topbar .tb-tag a { color: var(--gold); }
@media (max-width: 760px) { .topbar .tb-tag { display: none; } }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,0.97); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--brand-900);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.brand-logo:hover { color: var(--brand-900); }
.brand-logo .mark { width: 42px; height: 42px; flex: none; }
.brand-logo .mark .m-bg { transition: fill .3s var(--ease); }
.brand-logo .lt { display: flex; flex-direction: column; }
.brand-logo .lt b { display: block; }
.brand-logo .lt small {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-600);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.nav-links a:hover { color: var(--brand); background: var(--brand-50); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.25rem;
  height: 2px; border-radius: 2px;
  background: var(--accent);
}

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--brand-900);
  padding: 0.5rem 0.8rem; border-radius: var(--r-pill);
}
.nav-call small { display: block; font-size: 0.66rem; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em; }
.nav-call:hover { color: var(--accent-600); }
.nav-call svg { width: 18px; height: 18px; color: var(--accent); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block;
  width: 22px; height: 2.5px; border-radius: 3px;
  background: var(--brand-900);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after  { transform: translate(-50%, 8px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-call { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    background: var(--paper);
    padding: 6rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: var(--r); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--brand-50); }
  .nav-links .mobile-only { display: flex !important; margin-top: 0.8rem; }
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(6, 38, 46, 0.45);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}
.nav-links .mobile-only { display: none; }

@media (max-width: 460px) {
  .brand-logo .lt small { display: none; }
  .brand-logo { font-size: 1rem; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 580px at 88% -8%, rgba(224, 119, 42, 0.22), transparent 60%),
    radial-gradient(900px 620px at 8% 6%, rgba(14, 79, 92, 0.16), transparent 58%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ecdc 100%);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(2.4rem, 1rem + 5.4vw, 4.3rem);
  margin-bottom: 0.5em;
}
.hero h1 .hl { color: var(--accent); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.32em;
  background: rgba(224, 119, 42, 0.22); border-radius: 6px; z-index: -1;
}
.hero-lead {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.hero .btn-row { margin-bottom: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.hero-trust .t-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 600; color: var(--brand-800); }
.hero-trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-800) 60%, var(--brand-900) 100%);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: #eaf2f4;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(420px 280px at 100% 0%, rgba(224,119,42,0.35), transparent 60%),
    radial-gradient(300px 240px at 0% 100%, rgba(211,162,74,0.25), transparent 60%);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.3rem; }
.hero-card p { color: #bcd6db; font-size: 0.96rem; margin-bottom: 1.3rem; }
.hero-features { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.7rem; }
.hero-features li {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 0.9rem; border-radius: var(--r);
  font-size: 0.92rem; font-weight: 600;
}
.hero-features svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.hero-card .btn { width: 100%; }

.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--brand-900);
}
.hero-chip .ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-50); color: var(--accent-600);
  flex: none;
}
.hero-chip .ico svg { width: 19px; height: 19px; }
.hero-chip small { display: block; font-weight: 600; color: var(--ink-faint); font-size: 0.72rem; }
.hero-chip.c1 { top: -18px; right: 8%; }
.hero-chip.c2 { bottom: -16px; left: -2%; }
@media (max-width: 540px) { .hero-chip.c1 { right: 0; } .hero-chip.c2 { left: 0; } }

/* ---------- 8. Credibility strip ---------- */
.cred {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.cred .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1.3rem;
}
.cred .c-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.94rem; color: var(--brand-800);
}
.cred .c-item svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.cred .c-item small { display: block; font-weight: 500; color: var(--ink-faint); font-size: 0.74rem; letter-spacing: 0.02em; }

/* ---------- 9. Cards / Services ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand-300);
}
.card .ic {
  width: 56px; height: 56px;
  border-radius: var(--r);
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand-50), #fff);
  color: var(--brand);
  border: 1px solid var(--line-soft);
  margin-bottom: 1.1rem;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.card .ic svg { width: 28px; height: 28px; }
.card:hover .ic { transform: rotate(-6deg) scale(1.05); background: var(--accent); color: #fff; }
.card h3 { margin-bottom: 0.4rem; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--accent-600); }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--accent-600);
}
.card .card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
.card .card-link:hover { color: var(--accent-700); }

/* Tinted variant */
.card.tinted { background: linear-gradient(180deg, #fff, var(--sand)); }

/* ---------- 10. Feature list (why choose us) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.feature-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature-list .fic {
  width: 48px; height: 48px; border-radius: var(--r);
  display: grid; place-items: center; flex: none;
  background: var(--brand-50); color: var(--brand);
}
.feature-list .fic svg { width: 24px; height: 24px; }
.feature-list h4 { margin: 0.1rem 0 0.25rem; color: var(--brand-900); }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Visual panel */
.panel {
  background:
    radial-gradient(420px 300px at 100% 0%, rgba(211,162,74,0.18), transparent 60%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-900) 100%);
  color: #eaf2f4;
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.panel h3 { color: #fff; }
.panel p { color: #c5dbe0; }
.panel .panel-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  margin-top: 1.6rem;
}
.panel .stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 1.1rem 1.2rem;
}
.panel .stat b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.7rem; color: var(--gold); line-height: 1;
}
.panel .stat span { font-size: 0.85rem; color: #bcd6db; }

/* ---------- 11. Process ---------- */
.steps {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.95rem; color: #fff;
  background: var(--accent);
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 16px -6px rgba(224,119,42,0.6);
}
.step h4 { margin-bottom: 0.35rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ---------- 12. Areas (pills + map-style) ---------- */
.areas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
@media (max-width: 880px) { .areas-grid { grid-template-columns: 1fr; } }
.pill-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.55rem 1rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: var(--brand-800);
  transition: all .2s var(--ease);
}
.pill:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.pill svg { width: 15px; height: 15px; opacity: 0.7; }

.map-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(160deg, var(--brand-50), #fff);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  padding: 2rem;
}
.map-card .map-pin {
  text-align: center;
  position: relative; z-index: 2;
}
.map-card .map-pin .ring {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center; margin: 0 auto 1rem;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(224,119,42,0.15), 0 0 0 26px rgba(224,119,42,0.07);
  animation: pulse 2.6s var(--ease) infinite;
}
.map-card .map-pin .ring svg { width: 38px; height: 38px; }
.map-card .map-pin b { font-family: var(--font-head); font-size: 1.3rem; color: var(--brand-900); display: block; }
.map-card .map-pin span { color: var(--ink-soft); font-size: 0.95rem; }
.map-card .grid-deco {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 45%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 30%, transparent 75%);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(224,119,42,0.15), 0 0 0 26px rgba(224,119,42,0.07); }
  50% { box-shadow: 0 0 0 18px rgba(224,119,42,0.1), 0 0 0 38px rgba(224,119,42,0.03); }
}

/* ---------- 13. FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.open { border-color: var(--sand-300); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--brand-900);
}
.faq-q:hover { color: var(--accent-600); }
.faq-q .pm {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: var(--brand-50); color: var(--brand);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item.open .faq-q .pm { transform: rotate(135deg); background: var(--accent); color: #fff; }
.faq-q .pm svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a .inner { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); }
.faq-a .inner p { margin-bottom: 0.6rem; }

/* ---------- 14. CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 360px at 85% 120%, rgba(224,119,42,0.35), transparent 60%),
    radial-gradient(600px 360px at 0% -40%, rgba(211,162,74,0.22), transparent 60%),
    linear-gradient(160deg, var(--brand-800), var(--brand-900));
  color: #eaf2f4;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem; align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: #c5dbe0; margin-bottom: 0; max-width: 56ch; }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 760px) { .cta-band .btn-row { justify-content: flex-start; } }

/* ---------- 15. Page header (inner pages) ---------- */
.page-header {
  background:
    radial-gradient(800px 360px at 90% -20%, rgba(224,119,42,0.18), transparent 60%),
    linear-gradient(180deg, #fbf7ef, #f4ecdc);
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.page-header h1 { font-size: clamp(2.1rem, 1rem + 4vw, 3.4rem); margin-bottom: 0.4em; }
.page-header p { color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 1rem; color: var(--ink-faint); display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.breadcrumbs a { color: var(--brand); }
.breadcrumbs span { color: var(--ink-faint); }
.breadcrumbs svg { width: 13px; height: 13px; opacity: 0.6; }

/* ---------- 16. Service detail blocks ---------- */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
}
.service-block:first-of-type { border-top: 0; }
@media (max-width: 820px) { .service-block { grid-template-columns: 1fr; } }
.service-block:nth-child(even) .sb-media { order: 2; }
@media (max-width: 820px) { .service-block:nth-child(even) .sb-media { order: 0; } }
.sb-media {
  background: linear-gradient(160deg, var(--brand), var(--brand-900));
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: #eaf2f4;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.sb-media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(280px 200px at 100% 0%, rgba(224,119,42,0.3), transparent 60%);
}
.sb-media .big-ic {
  width: 64px; height: 64px; border-radius: var(--r);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center; color: var(--gold);
  margin-bottom: 1.1rem; position: relative;
}
.sb-media .big-ic svg { width: 34px; height: 34px; }
.sb-media h3 { color: #fff; margin-bottom: 0.4rem; position: relative; }
.sb-media p { color: #bcd6db; position: relative; margin-bottom: 1.2rem; font-size: 0.95rem; }
.sb-media .quick { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; position: relative; }
.sb-media .quick li { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.sb-media .quick svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.sb-body h3 { margin-bottom: 0.6rem; }
.sb-body .lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.sb-body h4 { color: var(--brand); margin: 1.4rem 0 0.6rem; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.sb-body ul.checks { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.5rem; }
.sb-body ul.checks li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink); font-size: 0.96rem; }
.sb-body ul.checks svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 0.15rem; }
.sb-body .when {
  background: var(--accent-50);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem; color: var(--ink);
  margin-bottom: 1.3rem;
}
.sb-body .when b { color: var(--accent-700); }

/* ---------- 17. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 0.9rem; margin-bottom: 1.6rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 1.2rem 1.3rem; background: var(--paper);
  box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover { border-color: var(--sand-300); transform: translateY(-2px); }
.contact-card .cic {
  width: 48px; height: 48px; border-radius: var(--r); flex: none;
  display: grid; place-items: center; background: var(--brand-50); color: var(--brand);
}
.contact-card .cic.wa { background: rgba(37,211,102,0.14); color: var(--wa-700); }
.contact-card .cic.accent { background: var(--accent-50); color: var(--accent-600); }
.contact-card .cic svg { width: 24px; height: 24px; }
.contact-card h4 { margin: 0 0 0.15rem; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.contact-card a:hover { color: var(--accent-600); }
.contact-card .big { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--brand-900); display: block; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form .lead { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 0.97rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--brand-900); margin-bottom: 0.4rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.97rem;
  padding: 0.8rem 0.95rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14,79,92,0.12);
}
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.8rem; }
.form-note a { color: var(--brand); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--brand-800); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .today { color: var(--accent-600); font-weight: 700; }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--brand-900);
  color: #b9cdd2;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-logo { color: #fff; }
.footer-brand .brand-logo:hover { color: #fff; }
.footer-brand p { color: #9eb8be; font-size: 0.93rem; margin: 1rem 0 1.2rem; max-width: 34ch; }
.footer-brand .brand-logo .lt small { color: var(--gold); }
.footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: #b9cdd2; font-size: 0.94rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.93rem; color: #b9cdd2; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 0.15rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.footer-affil {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 0.9rem 1.05rem;
  margin-top: 1.2rem;
  font-size: 0.86rem; color: #bcd6db;
}
.footer-affil b { color: #fff; }
.footer-affil a { color: var(--gold); font-weight: 600; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-block: 1.5rem;
  font-size: 0.84rem; color: #8ba3a9;
}
.footer-bottom a { color: #b9cdd2; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .fb-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- 19. Utilities & reveal ---------- */
.lead-text { font-size: 1.1rem; color: var(--ink-soft); max-width: 70ch; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.between { justify-content: space-between; }
.middle { align-items: center; }
.wrap { flex-wrap: wrap; }
.gap { gap: 1rem; }
.hide-mobile { }
@media (max-width: 620px) { .hide-mobile { display: none !important; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

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

/* Print */
@media print {
  .site-header, .topbar, .nav-toggle, .cta-band .btn-row, .floating-wa { display: none !important; }
  body { color: #000; }
}
