/* ==========================================================================
   Fix It 305 — single shared stylesheet (mobile-first)
   Palette pulled from the logo: navy + orange.
   ========================================================================== */

/* ---- Fonts ------------------------------------------------------------- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/barlow-condensed-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/barlow-condensed-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/barlow-condensed-700.woff2') format('woff2'); }

/* ---- Design tokens ----------------------------------------------------- */
:root {
  --navy:        #16273f;
  --navy-700:    #1d3251;
  --navy-600:    #294568;
  --orange:      #f07820;
  --orange-600:  #d8661a;
  --orange-100:  #fde9d6;
  --ink:         #1b2330;
  --body:        #3c4655;
  --muted:       #6b7686;
  --line:        #e3e7ee;
  --bg:          #ffffff;
  --bg-alt:      #f5f7fb;
  --bg-navy:     #16273f;
  --white:       #ffffff;
  --green:       #25a35a;
  --whatsapp:    #25d366;

  --radius:      14px;
  --radius-sm:   9px;
  --shadow:      0 1px 2px rgba(16,30,54,.06), 0 8px 24px rgba(16,30,54,.08);
  --shadow-lg:   0 12px 40px rgba(16,30,54,.16);
  --container:   1140px;
  --gap:         clamp(1rem, 3vw, 2rem);

  --font-body:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head:   'Barlow Condensed', 'Inter', system-ui, sans-serif;
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
p { margin: 0 0 1rem; }

/* ---- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
section { padding-block: clamp(2.75rem, 7vw, 5rem); }
.section-alt { background: var(--bg-alt); }
.lead { font-size: 1.15rem; color: var(--body); max-width: 60ch; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange-600); font-size: .95rem; margin: 0 0 .4rem;
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em;
  padding: .72rem 1.25rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(240,120,32,.28); }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #06351a; }
.btn-whatsapp:hover { background: #1fbe5b; }
.btn-lg { font-size: 1.15rem; padding: .92rem 1.6rem; }
.btn-block { width: 100%; }

/* on dark backgrounds */
.on-navy .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.on-navy .btn-ghost:hover { background: #fff; color: var(--navy); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(6px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); text-decoration: none; }
.brand-logo { width: 44px; height: 44px; border-radius: 8px; }
.brand-name { font-weight: 700; font-size: 1.35rem; color: var(--navy); letter-spacing: .02em; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--navy); cursor: pointer;
}
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline; }

.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  color: var(--navy); padding: .7rem 0; letter-spacing: .02em;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--orange-600); text-decoration: none; }
.nav-cta { display: flex; gap: .6rem; margin-top: .75rem; }
.nav-cta .btn { flex: 1; }

/* mobile dropdown */
.primary-nav.open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  padding: .5rem clamp(1rem,4vw,2rem) 1.25rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    linear-gradient(180deg, rgba(22,39,63,.92), rgba(22,39,63,.92)),
    radial-gradient(1200px 500px at 80% -10%, #28456b 0, transparent 60%), var(--bg-navy);
  color: #eef2f8;
}
.hero .container { display: grid; gap: 1.5rem; }
.hero h1 { color: #fff; }
.hero p { color: #d7deeb; font-size: 1.2rem; max-width: 54ch; }
.hero .eyebrow { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: .5rem; color: #cdd7e6; font-weight: 500; }
.hero-points svg { color: var(--orange); }
.hero-card-wrap { display: none; justify-self: center; }
.hero-logo { width: min(320px, 70%); filter: drop-shadow(0 18px 40px rgba(0,0,0,.4)); background: #fff; border-radius: 24px; padding: 1.25rem; }
@media (min-width: 880px) { .hero-card-wrap { display: block; } }

a.svc-overview-card { color: inherit; text-decoration: none; display: block; transition: transform .1s ease, box-shadow .15s ease, border-color .15s ease; }
a.svc-overview-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
a.svc-overview-card h3 { color: var(--navy); }
.svc-overview-card .more { color: var(--orange-600); font-weight: 600; list-style: none; margin-left: -1.1rem; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow); height: 100%;
}
.card h3 { margin-bottom: .35rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: .85rem;
  background: var(--orange-100); color: var(--orange-600);
}
.card ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--body); }
.card ul li { margin-bottom: .3rem; }

/* feature row (why us) */
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature .card-icon { margin-bottom: 0; flex: none; }
.feature h3 { font-size: 1.25rem; }
.feature p { margin: .2rem 0 0; color: var(--body); }

/* ==========================================================================
   Services page
   ========================================================================== */
.svc-cat { scroll-margin-top: 90px; }
.svc-cat-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .4rem; }
.svc-cat-head .card-icon { margin-bottom: 0; }
.svc-note {
  display: inline-block; font-size: .9rem; color: var(--orange-600);
  background: var(--orange-100); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .6rem;
}
.svc-items { columns: 2; column-gap: 2rem; padding-left: 1.1rem; margin: 0; }
.svc-items li { margin-bottom: .35rem; break-inside: avoid; }
@media (max-width: 640px) { .svc-items { columns: 1; } }

.svc-toc { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; margin: 1.5rem 0 0; }
.svc-toc a {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--navy);
  border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; background: #fff;
}
.svc-toc a:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* ==========================================================================
   "What we don't do" exclusions
   ========================================================================== */
.exclusions { background: var(--bg-alt); }
.exclusions-intro { max-width: 60ch; }
.exclusions-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .6rem; }
@media (min-width: 700px) { .exclusions-list { grid-template-columns: repeat(2,1fr); } }
.exclusions-list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--ink); }
.exclusions-list svg.x { color: var(--orange-600); flex: none; }
.exclusions-referral {
  background: #fff; border-left: 4px solid var(--orange); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin: 0; color: var(--ink); box-shadow: var(--shadow); max-width: 70ch;
}

/* ==========================================================================
   Service area
   ========================================================================== */
.area-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(2,1fr); } }
.area-col h3 { font-size: 1.15rem; color: var(--orange-600); border-bottom: 2px solid var(--line); padding-bottom: .4rem; }
.area-col ul { list-style: none; padding: 0; margin: .6rem 0 0; columns: 2; column-gap: 1rem; }
.area-col li { margin-bottom: .3rem; }
.area-col a { color: var(--navy); font-weight: 500; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--bg-navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd7e6; max-width: 60ch; margin-inline: auto; font-size: 1.12rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.4rem; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem,3vw,2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .85rem; font: inherit; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-100);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; padding: .8rem 1rem; border-radius: var(--radius-sm); display: none; }
.form-status.error { display: block; background: #fdecec; color: #97211f; }
.form-status.sending { display: block; background: var(--bg-alt); color: var(--body); }

.contact-aside .info-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-aside .info-row svg { color: var(--orange-600); flex: none; margin-top: .2rem; }
.contact-aside .info-row a { color: var(--navy); font-weight: 600; }
.contact-aside h3 { margin-top: 0; }

/* ==========================================================================
   City pages
   ========================================================================== */
.city-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: .6rem; }
.breadcrumb a { color: var(--muted); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; margin: .5rem 0 0; }
.chip-row li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; font-size: .92rem; font-weight: 500; color: var(--ink); }
.nearby-row { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; margin: 0; }
.nearby-row a { background: var(--orange-100); color: var(--orange-600); border-radius: 999px; padding: .35rem .85rem; font-weight: 600; font-family: var(--font-head); }
.nearby-row a:hover { background: var(--orange); color: #fff; text-decoration: none; }
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2rem; }

/* ==========================================================================
   Thank-you / simple pages
   ========================================================================== */
.simple-hero { text-align: center; padding-block: clamp(3rem,9vw,6rem); }
.simple-hero .card-icon { width: 72px; height: 72px; margin-inline: auto; background: #e6f6ed; color: var(--green); }
.simple-hero .card-icon svg { width: 38px; height: 38px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #c7d1e0; margin-top: 0; }
.footer-grid { display: grid; gap: 2rem; padding-block: clamp(2.5rem,6vw,3.5rem); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer h3 { color: #fff; font-size: 1.15rem; margin-bottom: .8rem; }
.site-footer a { color: #c7d1e0; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-logo { background: #fff; padding: 3px; }
.footer-tag { font-family: var(--font-head); font-size: 1.1rem; color: #e3e9f2; margin-top: .8rem; }
.footer-legal-note { font-size: .85rem; color: #93a1b8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .45rem; }
.footer-contact a, .footer-cities a { display: inline-flex; align-items: center; gap: .45rem; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bar-inner { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center; padding-block: 1.1rem; }
.footer-bar p { margin: 0; font-size: .9rem; color: #93a1b8; }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links li { margin: 0; }

/* ==========================================================================
   Sticky mobile call/text bar
   ========================================================================== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(16,30,54,.1);
}
.mobile-cta .btn { flex: 1; }
body { padding-bottom: 70px; }

/* ==========================================================================
   Desktop overrides
   ========================================================================== */
@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; position: static; box-shadow: none; padding: 0; background: none; }
  .primary-nav ul { display: flex; gap: 1.5rem; }
  .primary-nav a { padding: .25rem 0; }
  .nav-cta { margin-top: 0; }
  .nav-cta .btn { flex: none; }
  .hero .container { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
